Project eric7

Sun, 13 Apr 2025 14:46:18 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 13 Apr 2025 14:46:18 +0200
branch
eric7
changeset 11216
a1471981ef18
parent 11215
d07c71a34adf
child 11217
856628e8a303

Project
- Removed support for `pyside2` project type.

docs/changelog.md file | annotate | diff | comparison | revisions
src/eric7/APIs/Python3/eric7.api file | annotate | diff | comparison | revisions
src/eric7/CodeTemplates/impl_pyside2.py.tmpl file | annotate | diff | comparison | revisions
src/eric7/DebugClients/Python/DebugConfig.py file | annotate | diff | comparison | revisions
src/eric7/DebugClients/Python/ModuleLoader.py file | annotate | diff | comparison | revisions
src/eric7/Documentation/Help/source.qch file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/eric7.Project.ProjectFormsBrowser.html file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/eric7.Project.ProjectResourcesBrowser.html file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/eric7.Project.ProjectTranslationsBrowser.html file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/eric7.SystemUtilities.PySideImporter.html file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/eric7.SystemUtilities.QtUtilities.html file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/eric7.UI.UserInterface.html file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/index-eric7.SystemUtilities.html file | annotate | diff | comparison | revisions
src/eric7/HelpViewer/HelpViewerWidget.py file | annotate | diff | comparison | revisions
src/eric7/Preferences/ConfigurationPages/HelpDocumentationPage.py file | annotate | diff | comparison | revisions
src/eric7/Preferences/ConfigurationPages/HelpDocumentationPage.ui file | annotate | diff | comparison | revisions
src/eric7/Preferences/ConfigurationPages/QtPage.py file | annotate | diff | comparison | revisions
src/eric7/Preferences/ConfigurationPages/QtPage.ui file | annotate | diff | comparison | revisions
src/eric7/Preferences/ConfigurationPages/Ui_HelpDocumentationPage.py file | annotate | diff | comparison | revisions
src/eric7/Preferences/ConfigurationPages/Ui_QtPage.py file | annotate | diff | comparison | revisions
src/eric7/Preferences/ProgramsDialog.py file | annotate | diff | comparison | revisions
src/eric7/Preferences/__init__.py file | annotate | diff | comparison | revisions
src/eric7/Project/CreateDialogCodeDialog.py file | annotate | diff | comparison | revisions
src/eric7/Project/Project.py file | annotate | diff | comparison | revisions
src/eric7/Project/ProjectFormsBrowser.py file | annotate | diff | comparison | revisions
src/eric7/Project/ProjectResourcesBrowser.py file | annotate | diff | comparison | revisions
src/eric7/Project/ProjectTranslationsBrowser.py file | annotate | diff | comparison | revisions
src/eric7/SystemUtilities/PySideImporter.py file | annotate | diff | comparison | revisions
src/eric7/SystemUtilities/QtUtilities.py file | annotate | diff | comparison | revisions
src/eric7/UI/UserInterface.py file | annotate | diff | comparison | revisions
src/eric7/Utilities/ModuleParser.py file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_cs.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_de.qm file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_de.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_empty.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_en.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_es.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_fr.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_it.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_pt.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_ru.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_tr.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_zh_CN.ts file | annotate | diff | comparison | revisions
--- a/docs/changelog.md	Thu Apr 10 18:39:29 2025 +0200
+++ b/docs/changelog.md	Sun Apr 13 14:46:18 2025 +0200
@@ -8,6 +8,8 @@
       project file (if a project was open) (see issue584).
     - Modified the display of the crash session dialog to allow the removal
       of crash session files.
+- Project
+    - Removed support for `pyside2` project type.
 
 ### Version 25.4
 - bug fixes
--- a/src/eric7/APIs/Python3/eric7.api	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/APIs/Python3/eric7.api	Sun Apr 13 14:46:18 2025 +0200
@@ -10348,9 +10348,9 @@
 eric7.SystemUtilities.PythonUtilities.getPythonVersion?4()
 eric7.SystemUtilities.PythonUtilities.isPythonSource?4(filename, source, editor=None)
 eric7.SystemUtilities.PythonUtilities.searchInterpreters?4(environments=None)
-eric7.SystemUtilities.QtUtilities.checkPyside?4(variant=2)
+eric7.SystemUtilities.QtUtilities.checkPyside?4(variant=6)
 eric7.SystemUtilities.QtUtilities.generatePyQtToolPath?4(toolname, alternatives=None)
-eric7.SystemUtilities.QtUtilities.generatePySideToolPath?4(toolname, variant=2)
+eric7.SystemUtilities.QtUtilities.generatePySideToolPath?4(toolname, variant=6)
 eric7.SystemUtilities.QtUtilities.generateQtToolName?4(toolname)
 eric7.SystemUtilities.QtUtilities.getPyQt6ModulesDirectory?4()
 eric7.SystemUtilities.QtUtilities.getPyQtToolsPath?4(version=5)
--- a/src/eric7/CodeTemplates/impl_pyside2.py.tmpl	Thu Apr 10 18:39:29 2025 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-# -*- coding: utf-8 -*-
-
-"""
-Module implementing $CLASSNAME$.
-"""
-
-from PySide2.QtCore import Slot
-from PySide2.QtWidgets import $SUPERCLASS$
-
-from .Ui_$FORMFILE$ import Ui_$FORMCLASS$
-
-
-class $CLASSNAME$($SUPERCLASS$, Ui_$FORMCLASS$):
-    """
-    Class documentation goes here.
-    """
-
-    def __init__(self, parent=None):
-        """
-        Constructor
-
-        @param parent reference to the parent widget (defaults to None)
-        @type QWidget (optional)
-        """
-        super().__init__(parent)
-        self.setupUi(self)
--- a/src/eric7/DebugClients/Python/DebugConfig.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/DebugClients/Python/DebugConfig.py	Sun Apr 13 14:46:18 2025 +0200
@@ -20,7 +20,7 @@
 )
 
 BatchSize = 200
-ConfigQtNames = ("PyQt5.", "PyQt6.", "PySide2.", "PySide6.", "Shiboken.EnumType")
+ConfigQtNames = ("PyQt6.", "PySide6.", "Shiboken.EnumType")
 
 ConfigKnownQtTypes = (
     ".QByteArray",
--- a/src/eric7/DebugClients/Python/ModuleLoader.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/DebugClients/Python/ModuleLoader.py	Sun Apr 13 14:46:18 2025 +0200
@@ -42,9 +42,7 @@
             "greenlet",
             "subprocess",
             "multiprocessing",
-            "PyQt5.QtCore",
             "PyQt6.QtCore",
-            "PySide2.QtCore",
             "PySide6.QtCore",
         )
 
@@ -89,9 +87,7 @@
 
         ## Add hook for *.QThread and *.QProcess
         elif fullname in (
-            "PyQt5.QtCore",
             "PyQt6.QtCore",
-            "PySide2.QtCore",
             "PySide6.QtCore",
         ) and not hasattr(module, "eric7_patched"):
             module.eric7_patched = True
Binary file src/eric7/Documentation/Help/source.qch has changed
--- a/src/eric7/Documentation/Source/eric7.Project.ProjectFormsBrowser.html	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Documentation/Source/eric7.Project.ProjectFormsBrowser.html	Sun Apr 13 14:46:18 2025 +0200
@@ -153,11 +153,11 @@
 </tr>
 <tr>
 <td><a href="#ProjectFormsBrowser.__readStderr">__readStderr</a></td>
-<td>Private slot to handle the readyReadStandardError signal of the pyuic5/pyuic6/pyside2-uic/pyside6-uic process.</td>
+<td>Private slot to handle the readyReadStandardError signal of the pyuic5/pyuic6/pyside6-uic process.</td>
 </tr>
 <tr>
 <td><a href="#ProjectFormsBrowser.__readStdout">__readStdout</a></td>
-<td>Private slot to handle the readyReadStandardOutput signal of the pyuic5/pyuic6/pyside2-uic/pyside6-uic process.</td>
+<td>Private slot to handle the readyReadStandardOutput signal of the pyuic5/pyuic6/pyside6-uic process.</td>
 </tr>
 <tr>
 <td><a href="#ProjectFormsBrowser.__resetUiCompiler">__resetUiCompiler</a></td>
@@ -418,7 +418,7 @@
 <b>__readStderr</b>(<i></i>)
 <p>
         Private slot to handle the readyReadStandardError signal of the
-        pyuic5/pyuic6/pyside2-uic/pyside6-uic process.
+        pyuic5/pyuic6/pyside6-uic process.
 </p>
 
 <a NAME="ProjectFormsBrowser.__readStdout" ID="ProjectFormsBrowser.__readStdout"></a>
@@ -426,7 +426,7 @@
 <b>__readStdout</b>(<i></i>)
 <p>
         Private slot to handle the readyReadStandardOutput signal of the
-        pyuic5/pyuic6/pyside2-uic/pyside6-uic process.
+        pyuic5/pyuic6/pyside6-uic process.
 </p>
 
 <a NAME="ProjectFormsBrowser.__resetUiCompiler" ID="ProjectFormsBrowser.__resetUiCompiler"></a>
--- a/src/eric7/Documentation/Source/eric7.Project.ProjectResourcesBrowser.html	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Documentation/Source/eric7.Project.ProjectResourcesBrowser.html	Sun Apr 13 14:46:18 2025 +0200
@@ -123,11 +123,11 @@
 </tr>
 <tr>
 <td><a href="#ProjectResourcesBrowser.__readStderr">__readStderr</a></td>
-<td>Private slot to handle the readyReadStandardError signal of the pyrcc5/pyside2-rcc/pyside6-rcc process.</td>
+<td>Private slot to handle the readyReadStandardError signal of the pyrcc5/pyside6-rcc process.</td>
 </tr>
 <tr>
 <td><a href="#ProjectResourcesBrowser.__readStdout">__readStdout</a></td>
-<td>Private slot to handle the readyReadStandardOutput signal of the pyrcc5/pyside2-rcc/pyside6-rcc process.</td>
+<td>Private slot to handle the readyReadStandardOutput signal of the pyrcc5/pyside6-rcc process.</td>
 </tr>
 <tr>
 <td><a href="#ProjectResourcesBrowser.__showContextMenu">__showContextMenu</a></td>
@@ -361,7 +361,7 @@
 <b>__readStderr</b>(<i></i>)
 <p>
         Private slot to handle the readyReadStandardError signal of the
-        pyrcc5/pyside2-rcc/pyside6-rcc process.
+        pyrcc5/pyside6-rcc process.
 </p>
 
 <a NAME="ProjectResourcesBrowser.__readStdout" ID="ProjectResourcesBrowser.__readStdout"></a>
@@ -369,7 +369,7 @@
 <b>__readStdout</b>(<i></i>)
 <p>
         Private slot to handle the readyReadStandardOutput signal of the
-        pyrcc5/pyside2-rcc/pyside6-rcc process.
+        pyrcc5/pyside6-rcc process.
 </p>
 
 <a NAME="ProjectResourcesBrowser.__showContextMenu" ID="ProjectResourcesBrowser.__showContextMenu"></a>
--- a/src/eric7/Documentation/Source/eric7.Project.ProjectTranslationsBrowser.html	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Documentation/Source/eric7.Project.ProjectTranslationsBrowser.html	Sun Apr 13 14:46:18 2025 +0200
@@ -113,7 +113,7 @@
 </tr>
 <tr>
 <td><a href="#ProjectTranslationsBrowser.__generateTSFile">__generateTSFile</a></td>
-<td>Private method used to run pylupdate5 / pylupdate6 / pyside2-lupdate / pyside6-lupdate to generate the .ts files.</td>
+<td>Private method used to run pylupdate5 / pylupdate6 / pyside6-lupdate to generate the .ts files.</td>
 </tr>
 <tr>
 <td><a href="#ProjectTranslationsBrowser.__generateTSFileDone">__generateTSFileDone</a></td>
@@ -133,7 +133,7 @@
 </tr>
 <tr>
 <td><a href="#ProjectTranslationsBrowser.__readStderrLupdate">__readStderrLupdate</a></td>
-<td>Private slot to handle the readyReadStandardError signal of the pylupdate5 / pylupdate6 / pyside2-lupdate / pyside6-lupdate process.</td>
+<td>Private slot to handle the readyReadStandardError signal of the pylupdate5 / pylupdate6 / pyside6-lupdate process.</td>
 </tr>
 <tr>
 <td><a href="#ProjectTranslationsBrowser.__readStdout">__readStdout</a></td>
@@ -326,8 +326,8 @@
 <h4>ProjectTranslationsBrowser.__generateTSFile</h4>
 <b>__generateTSFile</b>(<i>noobsolete=False, generateAll=True</i>)
 <p>
-        Private method used to run pylupdate5 / pylupdate6 / pyside2-lupdate /
-        pyside6-lupdate to generate the .ts files.
+        Private method used to run pylupdate5 / pylupdate6 / pyside6-lupdate to generate
+        the .ts files.
 </p>
 
 <dl>
@@ -410,7 +410,7 @@
 <b>__readStderrLupdate</b>(<i>proc</i>)
 <p>
         Private slot to handle the readyReadStandardError signal of the
-        pylupdate5 / pylupdate6 / pyside2-lupdate / pyside6-lupdate process.
+        pylupdate5 / pylupdate6 / pyside6-lupdate process.
 </p>
 
 <dl>
--- a/src/eric7/Documentation/Source/eric7.SystemUtilities.PySideImporter.html	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Documentation/Source/eric7.SystemUtilities.PySideImporter.html	Sun Apr 13 14:46:18 2025 +0200
@@ -8,7 +8,7 @@
 <a NAME="top" ID="top"></a>
 <h1>eric7.SystemUtilities.PySideImporter</h1>
 <p>
-Module to check for the presence of PySide2/PySide6 by importing it.
+Module to check for the presence of PySide by importing it.
 </p>
 
 <h3>Global Attributes</h3>
--- a/src/eric7/Documentation/Source/eric7.SystemUtilities.QtUtilities.html	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Documentation/Source/eric7.SystemUtilities.QtUtilities.html	Sun Apr 13 14:46:18 2025 +0200
@@ -25,7 +25,7 @@
 <table>
 <tr>
 <td><a href="#checkPyside">checkPyside</a></td>
-<td>Module function to check the presence of PySide2/PySide6.</td>
+<td>Module function to check the presence of PySide.</td>
 </tr>
 <tr>
 <td><a href="#generatePyQtToolPath">generatePyQtToolPath</a></td>
@@ -33,7 +33,7 @@
 </tr>
 <tr>
 <td><a href="#generatePySideToolPath">generatePySideToolPath</a></td>
-<td>Module function to generate the executable path for a PySide2/PySide6 tool.</td>
+<td>Module function to generate the executable path for a PySide tool.</td>
 </tr>
 <tr>
 <td><a href="#generateQtToolName">generateQtToolName</a></td>
@@ -77,9 +77,9 @@
 <hr />
 <a NAME="checkPyside" ID="checkPyside"></a>
 <h2>checkPyside</h2>
-<b>checkPyside</b>(<i>variant=2</i>)
+<b>checkPyside</b>(<i>variant=6</i>)
 <p>
-    Module function to check the presence of PySide2/PySide6.
+    Module function to check the presence of PySide.
 </p>
 
 <dl>
@@ -92,7 +92,7 @@
 <dl>
 <dt>Return:</dt>
 <dd>
-flags indicating the presence of PySide2/PySide6
+flags indicating the presence of PySide
 </dd>
 </dl>
 <dl>
@@ -139,9 +139,9 @@
 <hr />
 <a NAME="generatePySideToolPath" ID="generatePySideToolPath"></a>
 <h2>generatePySideToolPath</h2>
-<b>generatePySideToolPath</b>(<i>toolname, variant=2</i>)
+<b>generatePySideToolPath</b>(<i>toolname, variant=6</i>)
 <p>
-    Module function to generate the executable path for a PySide2/PySide6 tool.
+    Module function to generate the executable path for a PySide tool.
 </p>
 
 <dl>
@@ -158,7 +158,7 @@
 <dl>
 <dt>Return:</dt>
 <dd>
-the PySide2/PySide6 tool path with extension
+the PySide tool path with extension
 </dd>
 </dl>
 <dl>
--- a/src/eric7/Documentation/Source/eric7.UI.UserInterface.html	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Documentation/Source/eric7.UI.UserInterface.html	Sun Apr 13 14:46:18 2025 +0200
@@ -627,7 +627,7 @@
 </tr>
 <tr>
 <td><a href="#UserInterface.__showPySideDoc">__showPySideDoc</a></td>
-<td>Private slot to show the PySide2/PySide6 documentation.</td>
+<td>Private slot to show the PySide documentation.</td>
 </tr>
 <tr>
 <td><a href="#UserInterface.__showPythonDoc">__showPythonDoc</a></td>
@@ -2520,16 +2520,16 @@
 </dl>
 <a NAME="UserInterface.__showPySideDoc" ID="UserInterface.__showPySideDoc"></a>
 <h4>UserInterface.__showPySideDoc</h4>
-<b>__showPySideDoc</b>(<i>variant=2</i>)
-<p>
-        Private slot to show the PySide2/PySide6 documentation.
+<b>__showPySideDoc</b>(<i>variant=6</i>)
+<p>
+        Private slot to show the PySide documentation.
 </p>
 
 <dl>
 
 <dt><i>variant</i> (int or str)</dt>
 <dd>
-PySide variant (2 or 6)
+PySide variant
 </dd>
 </dl>
 <a NAME="UserInterface.__showPythonDoc" ID="UserInterface.__showPythonDoc"></a>
--- a/src/eric7/Documentation/Source/index-eric7.SystemUtilities.html	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Documentation/Source/index-eric7.SystemUtilities.html	Sun Apr 13 14:46:18 2025 +0200
@@ -29,7 +29,7 @@
 </tr>
 <tr>
 <td><a href="eric7.SystemUtilities.PySideImporter.html">PySideImporter</a></td>
-<td>Module to check for the presence of PySide2/PySide6 by importing it.</td>
+<td>Module to check for the presence of PySide by importing it.</td>
 </tr>
 <tr>
 <td><a href="eric7.SystemUtilities.PythonUtilities.html">PythonUtilities</a></td>
--- a/src/eric7/HelpViewer/HelpViewerWidget.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/HelpViewer/HelpViewerWidget.py	Sun Apr 13 14:46:18 2025 +0200
@@ -449,11 +449,8 @@
         for key, topic in [
             ("EricDocDir", self.tr("eric API Documentation")),
             ("PythonDocDir", self.tr("Python 3 Documentation")),
-            ("Qt5DocDir", self.tr("Qt5 Documentation")),
             ("Qt6DocDir", self.tr("Qt6 Documentation")),
-            ("PyQt5DocDir", self.tr("PyQt5 Documentation")),
             ("PyQt6DocDir", self.tr("PyQt6 Documentation")),
-            ("PySide2DocDir", self.tr("PySide2 Documentation")),
             ("PySide6DocDir", self.tr("PySide6 Documentation")),
         ]:
             urlStr = Preferences.getHelp(key)
--- a/src/eric7/Preferences/ConfigurationPages/HelpDocumentationPage.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Preferences/ConfigurationPages/HelpDocumentationPage.py	Sun Apr 13 14:46:18 2025 +0200
@@ -55,10 +55,6 @@
         self.pyqt6DocDirPicker.setFilters(
             self.tr("HTML Files (*.html *.htm);;All Files (*)")
         )
-        self.pyside2DocDirPicker.setMode(EricPathPickerModes.OPEN_FILE_MODE)
-        self.pyside2DocDirPicker.setFilters(
-            self.tr("HTML Files (*.html *.htm);;All Files (*)")
-        )
         self.pyside6DocDirPicker.setMode(EricPathPickerModes.OPEN_FILE_MODE)
         self.pyside6DocDirPicker.setFilters(
             self.tr("HTML Files (*.html *.htm);;All Files (*)")
@@ -80,9 +76,6 @@
         self.pyqt6DocDirPicker.setText(
             Preferences.getHelp("PyQt6DocDir"), toNative=False
         )
-        self.pyside2DocDirPicker.setText(
-            Preferences.getHelp("PySide2DocDir"), toNative=False
-        )
         self.pyside6DocDirPicker.setText(
             Preferences.getHelp("PySide6DocDir"), toNative=False
         )
@@ -103,9 +96,6 @@
         Preferences.setHelp("PyQt5DocDir", self.pyqt5DocDirPicker.text(toNative=False))
         Preferences.setHelp("PyQt6DocDir", self.pyqt6DocDirPicker.text(toNative=False))
         Preferences.setHelp(
-            "PySide2DocDir", self.pyside2DocDirPicker.text(toNative=False)
-        )
-        Preferences.setHelp(
             "PySide6DocDir", self.pyside6DocDirPicker.text(toNative=False)
         )
 
--- a/src/eric7/Preferences/ConfigurationPages/HelpDocumentationPage.ui	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Preferences/ConfigurationPages/HelpDocumentationPage.ui	Sun Apr 13 14:46:18 2025 +0200
@@ -21,13 +21,13 @@
    <item>
     <widget class="Line" name="line17">
      <property name="frameShape">
-      <enum>QFrame::HLine</enum>
+      <enum>QFrame::Shape::HLine</enum>
      </property>
      <property name="frameShadow">
-      <enum>QFrame::Sunken</enum>
+      <enum>QFrame::Shadow::Sunken</enum>
      </property>
      <property name="orientation">
-      <enum>Qt::Horizontal</enum>
+      <enum>Qt::Orientation::Horizontal</enum>
      </property>
     </widget>
    </item>
@@ -65,7 +65,7 @@
          </sizepolicy>
         </property>
         <property name="focusPolicy">
-         <enum>Qt::StrongFocus</enum>
+         <enum>Qt::FocusPolicy::StrongFocus</enum>
         </property>
         <property name="toolTip">
          <string>Enter the eric documentation directory</string>
@@ -100,7 +100,7 @@
          </sizepolicy>
         </property>
         <property name="focusPolicy">
-         <enum>Qt::StrongFocus</enum>
+         <enum>Qt::FocusPolicy::StrongFocus</enum>
         </property>
         <property name="toolTip">
          <string>Enter the Python 3 documentation directory</string>
@@ -135,7 +135,7 @@
          </sizepolicy>
         </property>
         <property name="focusPolicy">
-         <enum>Qt::StrongFocus</enum>
+         <enum>Qt::FocusPolicy::StrongFocus</enum>
         </property>
         <property name="toolTip">
          <string>Enter the Qt5 documentation directory</string>
@@ -170,7 +170,7 @@
          </sizepolicy>
         </property>
         <property name="focusPolicy">
-         <enum>Qt::StrongFocus</enum>
+         <enum>Qt::FocusPolicy::StrongFocus</enum>
         </property>
         <property name="toolTip">
          <string>Enter the Qt6 documentation directory</string>
@@ -205,7 +205,7 @@
          </sizepolicy>
         </property>
         <property name="focusPolicy">
-         <enum>Qt::StrongFocus</enum>
+         <enum>Qt::FocusPolicy::StrongFocus</enum>
         </property>
         <property name="toolTip">
          <string>Enter the PyQt5 documentation directory</string>
@@ -240,7 +240,7 @@
          </sizepolicy>
         </property>
         <property name="focusPolicy">
-         <enum>Qt::StrongFocus</enum>
+         <enum>Qt::FocusPolicy::StrongFocus</enum>
         </property>
         <property name="toolTip">
          <string>Enter the PyQt6 documentation directory</string>
@@ -261,41 +261,6 @@
     </widget>
    </item>
    <item>
-    <widget class="QGroupBox" name="pyside2Group">
-     <property name="title">
-      <string>PySide2 Documentation</string>
-     </property>
-     <layout class="QVBoxLayout" name="verticalLayout_10">
-      <item>
-       <widget class="EricPathPicker" name="pyside2DocDirPicker" native="true">
-        <property name="sizePolicy">
-         <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
-          <horstretch>0</horstretch>
-          <verstretch>0</verstretch>
-         </sizepolicy>
-        </property>
-        <property name="focusPolicy">
-         <enum>Qt::StrongFocus</enum>
-        </property>
-        <property name="toolTip">
-         <string>Enter the PySide2 documentation directory</string>
-        </property>
-       </widget>
-      </item>
-      <item>
-       <widget class="QLabel" name="textLabel1_8_2_3">
-        <property name="text">
-         <string>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</string>
-        </property>
-        <property name="wordWrap">
-         <bool>true</bool>
-        </property>
-       </widget>
-      </item>
-     </layout>
-    </widget>
-   </item>
-   <item>
     <widget class="QGroupBox" name="pyside6Group">
      <property name="title">
       <string>PySide6 Documentation</string>
@@ -310,7 +275,7 @@
          </sizepolicy>
         </property>
         <property name="focusPolicy">
-         <enum>Qt::StrongFocus</enum>
+         <enum>Qt::FocusPolicy::StrongFocus</enum>
         </property>
         <property name="toolTip">
          <string>Enter the PySide6 documentation directory</string>
@@ -333,7 +298,7 @@
    <item>
     <spacer>
      <property name="orientation">
-      <enum>Qt::Vertical</enum>
+      <enum>Qt::Orientation::Vertical</enum>
      </property>
      <property name="sizeHint" stdset="0">
       <size>
@@ -361,7 +326,6 @@
   <tabstop>qt6DocDirPicker</tabstop>
   <tabstop>pyqt5DocDirPicker</tabstop>
   <tabstop>pyqt6DocDirPicker</tabstop>
-  <tabstop>pyside2DocDirPicker</tabstop>
   <tabstop>pyside6DocDirPicker</tabstop>
  </tabstops>
  <resources/>
--- a/src/eric7/Preferences/ConfigurationPages/QtPage.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Preferences/ConfigurationPages/QtPage.py	Sun Apr 13 14:46:18 2025 +0200
@@ -45,7 +45,6 @@
         for button in (
             self.pyqt5VenvDlgButton,
             self.pyqt6VenvDlgButton,
-            self.pyside2VenvDlgButton,
             self.pyside6VenvDlgButton,
         ):
             button.setIcon(EricPixmapCache.getIcon("virtualenv"))
@@ -55,7 +54,6 @@
         for button in (
             self.pyqt5VenvRefreshButton,
             self.pyqt6VenvRefreshButton,
-            self.pyside2VenvRefreshButton,
             self.pyside6VenvRefreshButton,
         ):
             button.setIcon(EricPixmapCache.getIcon("reload"))
@@ -69,7 +67,6 @@
             self.qtToolsDirPicker,
             self.pyqtToolsDirPicker,
             self.pyqt6ToolsDirPicker,
-            self.pyside2ToolsDirPicker,
             self.pyside6ToolsDirPicker,
         ):
             picker.setMode(EricPathPickerModes.DIRECTORY_SHOW_FILES_MODE)
@@ -100,12 +97,6 @@
         self.pyuic6IndentSpinBox.setValue(Preferences.getQt("Pyuic6Indent"))
         self.pyuic6ExecuteCheckBox.setChecked(Preferences.getQt("Pyuic6Execute"))
 
-        # PySide 2
-        self.pyside2ToolsDirPicker.setText(Preferences.getQt("PySide2ToolsDir"))
-        self.pyside2uicImportsCheckBox.setChecked(
-            Preferences.getQt("PySide2FromImports")
-        )
-
         # PySide 6
         self.pyside6ToolsDirPicker.setText(Preferences.getQt("PySide6ToolsDir"))
         self.pyside6uicImportsCheckBox.setChecked(
@@ -134,12 +125,6 @@
         Preferences.setQt("Pyuic6Indent", self.pyuic6IndentSpinBox.value())
         Preferences.setQt("Pyuic6Execute", self.pyuic6ExecuteCheckBox.isChecked())
 
-        Preferences.setQt("PySide2VenvName", self.pyside2VenvComboBox.currentText())
-        Preferences.setQt("PySide2ToolsDir", self.pyside2ToolsDirPicker.text())
-        Preferences.setQt(
-            "PySide2FromImports", self.pyside2uicImportsCheckBox.isChecked()
-        )
-
         Preferences.setQt("PySide6VenvName", self.pyside6VenvComboBox.currentText())
         Preferences.setQt("PySide6ToolsDir", self.pyside6ToolsDirPicker.text())
         Preferences.setQt(
@@ -226,9 +211,6 @@
             self.pyqt6VenvComboBox, "PyQt6VenvName", initial
         )
         self.__populateAndSetVenvComboBox(
-            self.pyside2VenvComboBox, "PySide2VenvName", initial
-        )
-        self.__populateAndSetVenvComboBox(
             self.pyside6VenvComboBox, "PySide6VenvName", initial
         )
 
--- a/src/eric7/Preferences/ConfigurationPages/QtPage.ui	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Preferences/ConfigurationPages/QtPage.ui	Sun Apr 13 14:46:18 2025 +0200
@@ -10,7 +10,7 @@
     <height>1316</height>
    </rect>
   </property>
-  <layout class="QVBoxLayout" name="verticalLayout_10">
+  <layout class="QVBoxLayout" name="verticalLayout_4">
    <item>
     <widget class="QLabel" name="headerLabel">
      <property name="text">
@@ -517,198 +517,93 @@
     </widget>
    </item>
    <item>
-    <widget class="QGroupBox" name="groupBox_10">
+    <widget class="QGroupBox" name="pyside2Group_2">
      <property name="title">
-      <string>PySide</string>
+      <string>PySide6</string>
      </property>
-     <layout class="QVBoxLayout" name="verticalLayout_9">
+     <layout class="QVBoxLayout" name="verticalLayout_3">
       <item>
-       <widget class="QGroupBox" name="pyside2Group">
-        <property name="title">
-         <string>PySide2</string>
-        </property>
-        <layout class="QVBoxLayout" name="verticalLayout_4">
-         <item>
-          <layout class="QHBoxLayout" name="horizontalLayout_7">
-           <item>
-            <widget class="QLabel" name="label_11">
-             <property name="text">
-              <string>Virtual Environment:</string>
-             </property>
-            </widget>
-           </item>
-           <item>
-            <widget class="QComboBox" name="pyside2VenvComboBox">
-             <property name="sizePolicy">
-              <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
-               <horstretch>0</horstretch>
-               <verstretch>0</verstretch>
-              </sizepolicy>
-             </property>
-             <property name="toolTip">
-              <string>Select the virtual environment to be used</string>
-             </property>
-            </widget>
-           </item>
-           <item>
-            <widget class="QToolButton" name="pyside2VenvDlgButton">
-             <property name="toolTip">
-              <string>Press to open the virtual environment manager dialog</string>
-             </property>
-             <property name="text">
-              <string notr="true"/>
-             </property>
-            </widget>
-           </item>
-           <item>
-            <widget class="QToolButton" name="pyside2VenvRefreshButton">
-             <property name="toolTip">
-              <string>Press to refresh the list of vitual environments</string>
-             </property>
-             <property name="text">
-              <string notr="true"/>
-             </property>
-            </widget>
-           </item>
-          </layout>
-         </item>
-         <item>
-          <layout class="QHBoxLayout" name="horizontalLayout_5">
-           <item>
-            <widget class="QLabel" name="label_7">
-             <property name="text">
-              <string>Tools Directory:</string>
-             </property>
-            </widget>
-           </item>
-           <item>
-            <widget class="EricPathPicker" name="pyside2ToolsDirPicker" native="true">
-             <property name="sizePolicy">
-              <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
-               <horstretch>0</horstretch>
-               <verstretch>0</verstretch>
-              </sizepolicy>
-             </property>
-             <property name="focusPolicy">
-              <enum>Qt::FocusPolicy::StrongFocus</enum>
-             </property>
-             <property name="toolTip">
-              <string>Enter the path of the PySide2 tools directory, if they are not found.</string>
-             </property>
-            </widget>
-           </item>
-          </layout>
-         </item>
-         <item>
-          <widget class="QGroupBox" name="groupBox_2">
-           <property name="title">
-            <string>pyside2-uic Options</string>
-           </property>
-           <layout class="QGridLayout" name="gridLayout_2">
-            <item row="0" column="0" colspan="2">
-             <widget class="QCheckBox" name="pyside2uicImportsCheckBox">
-              <property name="text">
-               <string>Generate imports relative to '.'</string>
-              </property>
-             </widget>
-            </item>
-           </layout>
-          </widget>
-         </item>
-        </layout>
-       </widget>
+       <layout class="QHBoxLayout" name="horizontalLayout_6">
+        <item>
+         <widget class="QLabel" name="label_12">
+          <property name="text">
+           <string>Virtual Environment:</string>
+          </property>
+         </widget>
+        </item>
+        <item>
+         <widget class="QComboBox" name="pyside6VenvComboBox">
+          <property name="sizePolicy">
+           <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
+            <horstretch>0</horstretch>
+            <verstretch>0</verstretch>
+           </sizepolicy>
+          </property>
+          <property name="toolTip">
+           <string>Select the virtual environment to be used</string>
+          </property>
+         </widget>
+        </item>
+        <item>
+         <widget class="QToolButton" name="pyside6VenvDlgButton">
+          <property name="toolTip">
+           <string>Press to open the virtual environment manager dialog</string>
+          </property>
+          <property name="text">
+           <string notr="true"/>
+          </property>
+         </widget>
+        </item>
+        <item>
+         <widget class="QToolButton" name="pyside6VenvRefreshButton">
+          <property name="toolTip">
+           <string>Press to refresh the list of vitual environments</string>
+          </property>
+          <property name="text">
+           <string notr="true"/>
+          </property>
+         </widget>
+        </item>
+       </layout>
       </item>
       <item>
-       <widget class="QGroupBox" name="pyside2Group_2">
+       <layout class="QHBoxLayout" name="horizontalLayout_10">
+        <item>
+         <widget class="QLabel" name="label_13">
+          <property name="text">
+           <string>Tools Directory:</string>
+          </property>
+         </widget>
+        </item>
+        <item>
+         <widget class="EricPathPicker" name="pyside6ToolsDirPicker" native="true">
+          <property name="sizePolicy">
+           <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
+            <horstretch>0</horstretch>
+            <verstretch>0</verstretch>
+           </sizepolicy>
+          </property>
+          <property name="focusPolicy">
+           <enum>Qt::FocusPolicy::StrongFocus</enum>
+          </property>
+          <property name="toolTip">
+           <string>Enter the path of the PySide6 tools directory, if they are not found.</string>
+          </property>
+         </widget>
+        </item>
+       </layout>
+      </item>
+      <item>
+       <widget class="QGroupBox" name="groupBox_11">
         <property name="title">
-         <string>PySide6</string>
+         <string>pyside6-uic Options</string>
         </property>
-        <layout class="QVBoxLayout" name="verticalLayout_3">
-         <item>
-          <layout class="QHBoxLayout" name="horizontalLayout_6">
-           <item>
-            <widget class="QLabel" name="label_12">
-             <property name="text">
-              <string>Virtual Environment:</string>
-             </property>
-            </widget>
-           </item>
-           <item>
-            <widget class="QComboBox" name="pyside6VenvComboBox">
-             <property name="sizePolicy">
-              <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
-               <horstretch>0</horstretch>
-               <verstretch>0</verstretch>
-              </sizepolicy>
-             </property>
-             <property name="toolTip">
-              <string>Select the virtual environment to be used</string>
-             </property>
-            </widget>
-           </item>
-           <item>
-            <widget class="QToolButton" name="pyside6VenvDlgButton">
-             <property name="toolTip">
-              <string>Press to open the virtual environment manager dialog</string>
-             </property>
-             <property name="text">
-              <string notr="true"/>
-             </property>
-            </widget>
-           </item>
-           <item>
-            <widget class="QToolButton" name="pyside6VenvRefreshButton">
-             <property name="toolTip">
-              <string>Press to refresh the list of vitual environments</string>
-             </property>
-             <property name="text">
-              <string notr="true"/>
-             </property>
-            </widget>
-           </item>
-          </layout>
-         </item>
-         <item>
-          <layout class="QHBoxLayout" name="horizontalLayout_10">
-           <item>
-            <widget class="QLabel" name="label_13">
-             <property name="text">
-              <string>Tools Directory:</string>
-             </property>
-            </widget>
-           </item>
-           <item>
-            <widget class="EricPathPicker" name="pyside6ToolsDirPicker" native="true">
-             <property name="sizePolicy">
-              <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
-               <horstretch>0</horstretch>
-               <verstretch>0</verstretch>
-              </sizepolicy>
-             </property>
-             <property name="focusPolicy">
-              <enum>Qt::FocusPolicy::StrongFocus</enum>
-             </property>
-             <property name="toolTip">
-              <string>Enter the path of the PySide6 tools directory, if they are not found.</string>
-             </property>
-            </widget>
-           </item>
-          </layout>
-         </item>
-         <item>
-          <widget class="QGroupBox" name="groupBox_11">
-           <property name="title">
-            <string>pyside6-uic Options</string>
+        <layout class="QGridLayout" name="gridLayout_4">
+         <item row="0" column="0" colspan="2">
+          <widget class="QCheckBox" name="pyside6uicImportsCheckBox">
+           <property name="text">
+            <string>Generate imports relative to '.'</string>
            </property>
-           <layout class="QGridLayout" name="gridLayout_4">
-            <item row="0" column="0" colspan="2">
-             <widget class="QCheckBox" name="pyside6uicImportsCheckBox">
-              <property name="text">
-               <string>Generate imports relative to '.'</string>
-              </property>
-             </widget>
-            </item>
-           </layout>
           </widget>
          </item>
         </layout>
@@ -760,11 +655,6 @@
   <tabstop>pyqt6ToolsDirPicker</tabstop>
   <tabstop>pyuic6IndentSpinBox</tabstop>
   <tabstop>pyuic6ExecuteCheckBox</tabstop>
-  <tabstop>pyside2VenvComboBox</tabstop>
-  <tabstop>pyside2VenvDlgButton</tabstop>
-  <tabstop>pyside2VenvRefreshButton</tabstop>
-  <tabstop>pyside2ToolsDirPicker</tabstop>
-  <tabstop>pyside2uicImportsCheckBox</tabstop>
   <tabstop>pyside6VenvComboBox</tabstop>
   <tabstop>pyside6VenvDlgButton</tabstop>
   <tabstop>pyside6VenvRefreshButton</tabstop>
--- a/src/eric7/Preferences/ConfigurationPages/Ui_HelpDocumentationPage.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Preferences/ConfigurationPages/Ui_HelpDocumentationPage.py	Sun Apr 13 14:46:18 2025 +0200
@@ -1,6 +1,6 @@
 # Form implementation generated from reading ui file 'src/eric7/Preferences/ConfigurationPages/HelpDocumentationPage.ui'
 #
-# Created by: PyQt6 UI code generator 6.7.0
+# Created by: PyQt6 UI code generator 6.9.0
 #
 # WARNING: Any manual changes made to this file will be lost when pyuic6 is
 # run again.  Do not edit this file unless you know what you are doing.
@@ -140,24 +140,6 @@
         self.textLabel1_8_2_2_8.setObjectName("textLabel1_8_2_2_8")
         self.verticalLayout_8.addWidget(self.textLabel1_8_2_2_8)
         self.verticalLayout.addWidget(self.pyqt6Group)
-        self.pyside2Group = QtWidgets.QGroupBox(parent=HelpDocumentationPage)
-        self.pyside2Group.setObjectName("pyside2Group")
-        self.verticalLayout_10 = QtWidgets.QVBoxLayout(self.pyside2Group)
-        self.verticalLayout_10.setObjectName("verticalLayout_10")
-        self.pyside2DocDirPicker = EricPathPicker(parent=self.pyside2Group)
-        sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred)
-        sizePolicy.setHorizontalStretch(0)
-        sizePolicy.setVerticalStretch(0)
-        sizePolicy.setHeightForWidth(self.pyside2DocDirPicker.sizePolicy().hasHeightForWidth())
-        self.pyside2DocDirPicker.setSizePolicy(sizePolicy)
-        self.pyside2DocDirPicker.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus)
-        self.pyside2DocDirPicker.setObjectName("pyside2DocDirPicker")
-        self.verticalLayout_10.addWidget(self.pyside2DocDirPicker)
-        self.textLabel1_8_2_3 = QtWidgets.QLabel(parent=self.pyside2Group)
-        self.textLabel1_8_2_3.setWordWrap(True)
-        self.textLabel1_8_2_3.setObjectName("textLabel1_8_2_3")
-        self.verticalLayout_10.addWidget(self.textLabel1_8_2_3)
-        self.verticalLayout.addWidget(self.pyside2Group)
         self.pyside6Group = QtWidgets.QGroupBox(parent=HelpDocumentationPage)
         self.pyside6Group.setObjectName("pyside6Group")
         self.verticalLayout_11 = QtWidgets.QVBoxLayout(self.pyside6Group)
@@ -187,8 +169,7 @@
         HelpDocumentationPage.setTabOrder(self.qt5DocDirPicker, self.qt6DocDirPicker)
         HelpDocumentationPage.setTabOrder(self.qt6DocDirPicker, self.pyqt5DocDirPicker)
         HelpDocumentationPage.setTabOrder(self.pyqt5DocDirPicker, self.pyqt6DocDirPicker)
-        HelpDocumentationPage.setTabOrder(self.pyqt6DocDirPicker, self.pyside2DocDirPicker)
-        HelpDocumentationPage.setTabOrder(self.pyside2DocDirPicker, self.pyside6DocDirPicker)
+        HelpDocumentationPage.setTabOrder(self.pyqt6DocDirPicker, self.pyside6DocDirPicker)
 
     def retranslateUi(self, HelpDocumentationPage):
         _translate = QtCore.QCoreApplication.translate
@@ -214,9 +195,6 @@
         self.pyqt6Group.setTitle(_translate("HelpDocumentationPage", "PyQt6 Documentation"))
         self.pyqt6DocDirPicker.setToolTip(_translate("HelpDocumentationPage", "Enter the PyQt6 documentation directory"))
         self.textLabel1_8_2_2_8.setText(_translate("HelpDocumentationPage", "<b>Note</b>: Leave empty to use the PYQT6DOCDIR environment variable, if set."))
-        self.pyside2Group.setTitle(_translate("HelpDocumentationPage", "PySide2 Documentation"))
-        self.pyside2DocDirPicker.setToolTip(_translate("HelpDocumentationPage", "Enter the PySide2 documentation directory"))
-        self.textLabel1_8_2_3.setText(_translate("HelpDocumentationPage", "<b>Note</b>: Leave empty to use the PYSIDE2DOCDIR environment variable, if set."))
         self.pyside6Group.setTitle(_translate("HelpDocumentationPage", "PySide6 Documentation"))
         self.pyside6DocDirPicker.setToolTip(_translate("HelpDocumentationPage", "Enter the PySide6 documentation directory"))
         self.textLabel1_8_2_4.setText(_translate("HelpDocumentationPage", "<b>Note</b>: Leave empty to use the PYSIDE6DOCDIR environment variable, if set."))
--- a/src/eric7/Preferences/ConfigurationPages/Ui_QtPage.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Preferences/ConfigurationPages/Ui_QtPage.py	Sun Apr 13 14:46:18 2025 +0200
@@ -1,6 +1,6 @@
 # Form implementation generated from reading ui file 'src/eric7/Preferences/ConfigurationPages/QtPage.ui'
 #
-# Created by: PyQt6 UI code generator 6.7.1
+# Created by: PyQt6 UI code generator 6.9.0
 #
 # WARNING: Any manual changes made to this file will be lost when pyuic6 is
 # run again.  Do not edit this file unless you know what you are doing.
@@ -13,17 +13,17 @@
     def setupUi(self, QtPage):
         QtPage.setObjectName("QtPage")
         QtPage.resize(556, 1316)
-        self.verticalLayout_10 = QtWidgets.QVBoxLayout(QtPage)
-        self.verticalLayout_10.setObjectName("verticalLayout_10")
+        self.verticalLayout_4 = QtWidgets.QVBoxLayout(QtPage)
+        self.verticalLayout_4.setObjectName("verticalLayout_4")
         self.headerLabel = QtWidgets.QLabel(parent=QtPage)
         self.headerLabel.setObjectName("headerLabel")
-        self.verticalLayout_10.addWidget(self.headerLabel)
+        self.verticalLayout_4.addWidget(self.headerLabel)
         self.line12 = QtWidgets.QFrame(parent=QtPage)
         self.line12.setFrameShape(QtWidgets.QFrame.Shape.HLine)
         self.line12.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
         self.line12.setFrameShape(QtWidgets.QFrame.Shape.HLine)
         self.line12.setObjectName("line12")
-        self.verticalLayout_10.addWidget(self.line12)
+        self.verticalLayout_4.addWidget(self.line12)
         self.groupBox_6 = QtWidgets.QGroupBox(parent=QtPage)
         self.groupBox_6.setObjectName("groupBox_6")
         self.verticalLayout_8 = QtWidgets.QVBoxLayout(self.groupBox_6)
@@ -119,7 +119,7 @@
         self.gridLayout_5.addWidget(self.lreleasePicker, 1, 1, 1, 1)
         self.verticalLayout_2.addLayout(self.gridLayout_5)
         self.verticalLayout_8.addWidget(self.groupBox_4)
-        self.verticalLayout_10.addWidget(self.groupBox_6)
+        self.verticalLayout_4.addWidget(self.groupBox_6)
         self.groupBox_7 = QtWidgets.QGroupBox(parent=QtPage)
         self.groupBox_7.setObjectName("groupBox_7")
         self.verticalLayout_6 = QtWidgets.QVBoxLayout(self.groupBox_7)
@@ -251,62 +251,8 @@
         self.gridLayout_3.addWidget(self.label_9, 0, 0, 1, 1)
         self.verticalLayout_5.addWidget(self.groupBox_9)
         self.verticalLayout_6.addWidget(self.groupBox_8)
-        self.verticalLayout_10.addWidget(self.groupBox_7)
-        self.groupBox_10 = QtWidgets.QGroupBox(parent=QtPage)
-        self.groupBox_10.setObjectName("groupBox_10")
-        self.verticalLayout_9 = QtWidgets.QVBoxLayout(self.groupBox_10)
-        self.verticalLayout_9.setObjectName("verticalLayout_9")
-        self.pyside2Group = QtWidgets.QGroupBox(parent=self.groupBox_10)
-        self.pyside2Group.setObjectName("pyside2Group")
-        self.verticalLayout_4 = QtWidgets.QVBoxLayout(self.pyside2Group)
-        self.verticalLayout_4.setObjectName("verticalLayout_4")
-        self.horizontalLayout_7 = QtWidgets.QHBoxLayout()
-        self.horizontalLayout_7.setObjectName("horizontalLayout_7")
-        self.label_11 = QtWidgets.QLabel(parent=self.pyside2Group)
-        self.label_11.setObjectName("label_11")
-        self.horizontalLayout_7.addWidget(self.label_11)
-        self.pyside2VenvComboBox = QtWidgets.QComboBox(parent=self.pyside2Group)
-        sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed)
-        sizePolicy.setHorizontalStretch(0)
-        sizePolicy.setVerticalStretch(0)
-        sizePolicy.setHeightForWidth(self.pyside2VenvComboBox.sizePolicy().hasHeightForWidth())
-        self.pyside2VenvComboBox.setSizePolicy(sizePolicy)
-        self.pyside2VenvComboBox.setObjectName("pyside2VenvComboBox")
-        self.horizontalLayout_7.addWidget(self.pyside2VenvComboBox)
-        self.pyside2VenvDlgButton = QtWidgets.QToolButton(parent=self.pyside2Group)
-        self.pyside2VenvDlgButton.setText("")
-        self.pyside2VenvDlgButton.setObjectName("pyside2VenvDlgButton")
-        self.horizontalLayout_7.addWidget(self.pyside2VenvDlgButton)
-        self.pyside2VenvRefreshButton = QtWidgets.QToolButton(parent=self.pyside2Group)
-        self.pyside2VenvRefreshButton.setText("")
-        self.pyside2VenvRefreshButton.setObjectName("pyside2VenvRefreshButton")
-        self.horizontalLayout_7.addWidget(self.pyside2VenvRefreshButton)
-        self.verticalLayout_4.addLayout(self.horizontalLayout_7)
-        self.horizontalLayout_5 = QtWidgets.QHBoxLayout()
-        self.horizontalLayout_5.setObjectName("horizontalLayout_5")
-        self.label_7 = QtWidgets.QLabel(parent=self.pyside2Group)
-        self.label_7.setObjectName("label_7")
-        self.horizontalLayout_5.addWidget(self.label_7)
-        self.pyside2ToolsDirPicker = EricPathPicker(parent=self.pyside2Group)
-        sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred)
-        sizePolicy.setHorizontalStretch(0)
-        sizePolicy.setVerticalStretch(0)
-        sizePolicy.setHeightForWidth(self.pyside2ToolsDirPicker.sizePolicy().hasHeightForWidth())
-        self.pyside2ToolsDirPicker.setSizePolicy(sizePolicy)
-        self.pyside2ToolsDirPicker.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus)
-        self.pyside2ToolsDirPicker.setObjectName("pyside2ToolsDirPicker")
-        self.horizontalLayout_5.addWidget(self.pyside2ToolsDirPicker)
-        self.verticalLayout_4.addLayout(self.horizontalLayout_5)
-        self.groupBox_2 = QtWidgets.QGroupBox(parent=self.pyside2Group)
-        self.groupBox_2.setObjectName("groupBox_2")
-        self.gridLayout_2 = QtWidgets.QGridLayout(self.groupBox_2)
-        self.gridLayout_2.setObjectName("gridLayout_2")
-        self.pyside2uicImportsCheckBox = QtWidgets.QCheckBox(parent=self.groupBox_2)
-        self.pyside2uicImportsCheckBox.setObjectName("pyside2uicImportsCheckBox")
-        self.gridLayout_2.addWidget(self.pyside2uicImportsCheckBox, 0, 0, 1, 2)
-        self.verticalLayout_4.addWidget(self.groupBox_2)
-        self.verticalLayout_9.addWidget(self.pyside2Group)
-        self.pyside2Group_2 = QtWidgets.QGroupBox(parent=self.groupBox_10)
+        self.verticalLayout_4.addWidget(self.groupBox_7)
+        self.pyside2Group_2 = QtWidgets.QGroupBox(parent=QtPage)
         self.pyside2Group_2.setObjectName("pyside2Group_2")
         self.verticalLayout_3 = QtWidgets.QVBoxLayout(self.pyside2Group_2)
         self.verticalLayout_3.setObjectName("verticalLayout_3")
@@ -355,10 +301,9 @@
         self.pyside6uicImportsCheckBox.setObjectName("pyside6uicImportsCheckBox")
         self.gridLayout_4.addWidget(self.pyside6uicImportsCheckBox, 0, 0, 1, 2)
         self.verticalLayout_3.addWidget(self.groupBox_11)
-        self.verticalLayout_9.addWidget(self.pyside2Group_2)
-        self.verticalLayout_10.addWidget(self.groupBox_10)
+        self.verticalLayout_4.addWidget(self.pyside2Group_2)
         spacerItem2 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding)
-        self.verticalLayout_10.addItem(spacerItem2)
+        self.verticalLayout_4.addItem(spacerItem2)
 
         self.retranslateUi(QtPage)
         QtCore.QMetaObject.connectSlotsByName(QtPage)
@@ -380,12 +325,7 @@
         QtPage.setTabOrder(self.pyqt6VenvRefreshButton, self.pyqt6ToolsDirPicker)
         QtPage.setTabOrder(self.pyqt6ToolsDirPicker, self.pyuic6IndentSpinBox)
         QtPage.setTabOrder(self.pyuic6IndentSpinBox, self.pyuic6ExecuteCheckBox)
-        QtPage.setTabOrder(self.pyuic6ExecuteCheckBox, self.pyside2VenvComboBox)
-        QtPage.setTabOrder(self.pyside2VenvComboBox, self.pyside2VenvDlgButton)
-        QtPage.setTabOrder(self.pyside2VenvDlgButton, self.pyside2VenvRefreshButton)
-        QtPage.setTabOrder(self.pyside2VenvRefreshButton, self.pyside2ToolsDirPicker)
-        QtPage.setTabOrder(self.pyside2ToolsDirPicker, self.pyside2uicImportsCheckBox)
-        QtPage.setTabOrder(self.pyside2uicImportsCheckBox, self.pyside6VenvComboBox)
+        QtPage.setTabOrder(self.pyuic6ExecuteCheckBox, self.pyside6VenvComboBox)
         QtPage.setTabOrder(self.pyside6VenvComboBox, self.pyside6VenvDlgButton)
         QtPage.setTabOrder(self.pyside6VenvDlgButton, self.pyside6VenvRefreshButton)
         QtPage.setTabOrder(self.pyside6VenvRefreshButton, self.pyside6ToolsDirPicker)
@@ -442,16 +382,6 @@
         self.pyuic6ExecuteCheckBox.setText(_translate("QtPage", "Generate Extra Test Code"))
         self.pyuic6IndentSpinBox.setToolTip(_translate("QtPage", "Select the indent width (default: 4)"))
         self.label_9.setText(_translate("QtPage", "Indent Width:"))
-        self.groupBox_10.setTitle(_translate("QtPage", "PySide"))
-        self.pyside2Group.setTitle(_translate("QtPage", "PySide2"))
-        self.label_11.setText(_translate("QtPage", "Virtual Environment:"))
-        self.pyside2VenvComboBox.setToolTip(_translate("QtPage", "Select the virtual environment to be used"))
-        self.pyside2VenvDlgButton.setToolTip(_translate("QtPage", "Press to open the virtual environment manager dialog"))
-        self.pyside2VenvRefreshButton.setToolTip(_translate("QtPage", "Press to refresh the list of vitual environments"))
-        self.label_7.setText(_translate("QtPage", "Tools Directory:"))
-        self.pyside2ToolsDirPicker.setToolTip(_translate("QtPage", "Enter the path of the PySide2 tools directory, if they are not found."))
-        self.groupBox_2.setTitle(_translate("QtPage", "pyside2-uic Options"))
-        self.pyside2uicImportsCheckBox.setText(_translate("QtPage", "Generate imports relative to \'.\'"))
         self.pyside2Group_2.setTitle(_translate("QtPage", "PySide6"))
         self.label_12.setText(_translate("QtPage", "Virtual Environment:"))
         self.pyside6VenvComboBox.setToolTip(_translate("QtPage", "Select the virtual environment to be used"))
--- a/src/eric7/Preferences/ProgramsDialog.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Preferences/ProgramsDialog.py	Sun Apr 13 14:46:18 2025 +0200
@@ -198,36 +198,8 @@
             )
 
             # 3. do the PySide programs
-            # 3.1 do the PySide2 programs
-            # 3.1a. Translation Extractor PySide2
-            self.__createProgramEntry(
-                self.tr("Translation Extractor (Python, PySide2)"),
-                QtUtilities.generatePySideToolPath("pyside2-lupdate", variant=2),
-                "-version",
-                "",
-                -1,
-                versionRe="lupdate",
-            )
-            # 3.1b. Forms Compiler PySide2
-            self.__createProgramEntry(
-                self.tr("Forms Compiler (Python, PySide2)"),
-                QtUtilities.generatePySideToolPath("pyside2-uic", variant=2),
-                "--version",
-                "",
-                -1,
-                versionRe="uic",
-            )
-            # 3.1c Resource Compiler PySide2
-            self.__createProgramEntry(
-                self.tr("Resource Compiler (Python, PySide2)"),
-                QtUtilities.generatePySideToolPath("pyside2-rcc", variant=2),
-                "-version",
-                "",
-                -1,
-                versionRe="rcc",
-            )
-            # 3.2 do the PySide5 programs
-            # 3.2a. Translation Extractor PySide6
+            # 3.1 do the PySide6 programs
+            # 3.1a. Translation Extractor PySide6
             self.__createProgramEntry(
                 self.tr("Translation Extractor (Python, PySide6)"),
                 QtUtilities.generatePySideToolPath("pyside6-lupdate", variant=6),
@@ -236,7 +208,7 @@
                 -1,
                 versionRe="lupdate",
             )
-            # 3.2b. Forms Compiler PySide6
+            # 3.1b. Forms Compiler PySide6
             self.__createProgramEntry(
                 self.tr("Forms Compiler (Python, PySide6)"),
                 QtUtilities.generatePySideToolPath("pyside6-uic", variant=6),
@@ -245,7 +217,7 @@
                 -1,
                 versionRe="uic",
             )
-            # 3.2c Resource Compiler PySide6
+            # 3.1c Resource Compiler PySide6
             self.__createProgramEntry(
                 self.tr("Resource Compiler (Python, PySide6)"),
                 QtUtilities.generatePySideToolPath("pyside6-rcc", variant=6),
--- a/src/eric7/Preferences/__init__.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Preferences/__init__.py	Sun Apr 13 14:46:18 2025 +0200
@@ -926,8 +926,8 @@
             "resources",
             "translations",
             "others",
-            "interfaces",
-            "protocols",
+            ##"interfaces",
+            ##"protocols",
         ),
         "PyQt5": (
             "sources",
@@ -935,68 +935,51 @@
             "resources",
             "translations",
             "others",
-            "interfaces",
-            "protocols",
+            ##"interfaces",
+            ##"protocols",
         ),
         "PyQt5C": (
             "sources",
             "resources",
             "translations",
             "others",
-            "interfaces",
-            "protocols",
+            ##"interfaces",
+            ##"protocols",
         ),
         "PyQt6": (
             "sources",
             "forms",
             "translations",
             "others",
-            "interfaces",
-            "protocols",
+            ##"interfaces",
+            ##"protocols",
         ),
         "PyQt6C": (
             "sources",
             "translations",
             "others",
-            "interfaces",
-            "protocols",
+            ##"interfaces",
+            ##"protocols",
         ),
         "E7Plugin": (
             "sources",
             "forms",
             "translations",
             "others",
-            "interfaces",
-            "protocols",
+            ##"interfaces",
+            ##"protocols",
         ),
         "Console": (
             "sources",
             "others",
-            "interfaces",
-            "protocols",
+            ##"interfaces",
+            ##"protocols",
         ),
         "Other": (
             "sources",
             "others",
-            "interfaces",
-            "protocols",
-        ),
-        "PySide2": (
-            "sources",
-            "forms",
-            "resources",
-            "translations",
-            "others",
-            "interfaces",
-            "protocols",
-        ),
-        "PySide2C": (
-            "sources",
-            "resources",
-            "translations",
-            "others",
-            "interfaces",
-            "protocols",
+            ##"interfaces",
+            ##"protocols",
         ),
         "PySide6": (
             "sources",
@@ -1004,16 +987,16 @@
             "resources",
             "translations",
             "others",
-            "interfaces",
-            "protocols",
+            ##"interfaces",
+            ##"protocols",
         ),
         "PySide6C": (
             "sources",
             "resources",
             "translations",
             "others",
-            "interfaces",
-            "protocols",
+            ##"interfaces",
+            ##"protocols",
         ),
     }
 
@@ -1036,7 +1019,6 @@
         "Qt6DocDir": "",
         "PyQt5DocDir": "https://www.riverbankcomputing.com/static/Docs/PyQt5/",
         "PyQt6DocDir": "https://www.riverbankcomputing.com/static/Docs/PyQt6/",
-        "PySide2DocDir": "",
         "PySide6DocDir": "",
         "EricDocDir": "",
         "HelpViewerType": 0,  # internal help viewer
@@ -1385,6 +1367,7 @@
         "QtToolsPostfix": "",
         "Lrelease": "",
         "QHelpGenerator": "",
+        # TODO: remove these
         "PyuicIndent": 4,
         "PyuicFromImports": False,
         "PyuicExecute": True,
@@ -1394,9 +1377,6 @@
         "Pyuic6Execute": True,
         "PyQt6VenvName": "",
         "PyQt6ToolsDir": "",
-        "PySide2FromImports": False,
-        "PySide2VenvName": "",
-        "PySide2ToolsDir": "",
         "PySide6FromImports": False,
         "PySide6VenvName": "",
         "PySide6ToolsDir": "",
--- a/src/eric7/Project/CreateDialogCodeDialog.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Project/CreateDialogCodeDialog.py	Sun Apr 13 14:46:18 2025 +0200
@@ -182,7 +182,7 @@
         venvName = self.project.getProjectVenv(resolveDebugger=False)
         if not venvName:
             # no project specific environment, try a type specific one
-            if projectType in ("PyQt5", "PySide2"):
+            if projectType in ("PyQt5"):
                 venvName = Preferences.getQt("PyQtVenvName")
             elif projectType in ("PyQt6", "E7Plugin", "PySide6"):
                 venvName = Preferences.getQt("PyQt6VenvName")
@@ -199,7 +199,7 @@
             else:
                 env.insert("PATH", execPath)
 
-        if projectType in ("PyQt5", "PySide2"):
+        if projectType in ("PyQt5",):
             loadUi = os.path.join(os.path.dirname(__file__), "UicLoadUi5.py")
         elif projectType in ("PyQt6", "E7Plugin", "PySide6"):
             loadUi = os.path.join(os.path.dirname(__file__), "UicLoadUi6.py")
@@ -433,11 +433,7 @@
         if self.__module is None:
             # new file
             try:
-                if self.project.getProjectType() == "PySide2":
-                    tmplName = os.path.join(
-                        getConfig("ericCodeTemplatesDir"), "impl_pyside2.py.tmpl"
-                    )
-                elif self.project.getProjectType() == "PySide6":
+                if self.project.getProjectType() == "PySide6":
                     tmplName = os.path.join(
                         getConfig("ericCodeTemplatesDir"), "impl_pyside6.py.tmpl"
                     )
@@ -531,7 +527,7 @@
         # do the coding stuff
         pyqtSignatureFormat = (
             "@Slot({0})"
-            if self.project.getProjectType() in ("PySide2", "PySide6")
+            if self.project.getProjectType() in ("PySide6",)
             else "@pyqtSlot({0})"
         )
         for row in range(self.slotsModel.rowCount()):
--- a/src/eric7/Project/Project.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Project/Project.py	Sun Apr 13 14:46:18 2025 +0200
@@ -358,11 +358,6 @@
             "JavaScript": ["Other"],
         }
 
-        if QtUtilities.checkPyside(variant=2):
-            self.__projectTypes["PySide2"] = self.tr("PySide2 GUI")
-            self.__projectTypes["PySide2C"] = self.tr("PySide2 Console")
-            self.__projectProgLanguages["Python3"].extend(["PySide2", "PySide2C"])
-
         if QtUtilities.checkPyside(variant=6):
             self.__projectTypes["PySide6"] = self.tr("PySide6 GUI")
             self.__projectTypes["PySide6C"] = self.tr("PySide6 Console")
@@ -895,7 +890,6 @@
             "E7Plugin",
             "PyQt5",
             "PyQt6",
-            "PySide2",
             "PySide6",
         ]:
             fileTypesDict["*.ui"] = "FORMS"
@@ -904,8 +898,6 @@
         if projectType in [
             "PyQt5",
             "PyQt5C",
-            "PySide2",
-            "PySide2C",
             "PySide6",
             "PySide6C",
         ]:
@@ -918,8 +910,6 @@
             "PyQt5C",
             "PyQt6",
             "PyQt6C",
-            "PySide2",
-            "PySide2C",
             "PySide6",
             "PySide6C",
         ]:
@@ -955,8 +945,6 @@
             "PyQt5C",
             "PyQt6",
             "PyQt6C",
-            "PySide2",
-            "PySide2C",
             "PySide6",
             "PySide6C",
         ]:
@@ -1788,8 +1776,6 @@
                 "PyQt6",
                 "PyQt6C",
                 "E7Plugin",
-                "PySide2",
-                "PySide2C",
                 "PySide6",
                 "PySide6C",
             ]:
--- a/src/eric7/Project/ProjectFormsBrowser.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Project/ProjectFormsBrowser.py	Sun Apr 13 14:46:18 2025 +0200
@@ -201,7 +201,7 @@
         projectType = self.project.getProjectType()
 
         self.menu = QMenu(self)
-        if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide2", "PySide6"]:
+        if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide6"]:
             if FileSystemUtilities.isRemoteFileName(self.project.getProjectPath()):
                 self.menu.addAction(self.tr("Open in Editor"), self.__openFileInEditor)
             else:
@@ -267,7 +267,7 @@
         self.menuActions.append(act)
         self.menu.addSeparator()
         if FileSystemUtilities.isPlainFileName(self.project.getProjectPath()):
-            if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide2", "PySide6"]:
+            if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide6"]:
                 self.menu.addAction(self.tr("New form..."), self.__newForm)
             else:
                 if self.hooks["newForm"] is not None:
@@ -292,7 +292,7 @@
         self.backMenu = QMenu(self)
         if FileSystemUtilities.isPlainFileName(self.project.getProjectPath()):
             if (
-                projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide2", "PySide6"]
+                projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide6"]
                 or self.hooks["compileAllForms"] is not None
             ):
                 self.backMenu.addAction(
@@ -332,7 +332,7 @@
 
         # create the menu for multiple selected files
         self.multiMenu = QMenu(self)
-        if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide2", "PySide6"]:
+        if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide6"]:
             if FileSystemUtilities.isRemoteFileName(self.project.getProjectPath()):
                 self.multiMenu.addAction(
                     self.tr("Open in Editor"), self.__openFileInEditor
@@ -388,7 +388,7 @@
 
         self.dirMenu = QMenu(self)
         if FileSystemUtilities.isPlainFileName(self.project.getProjectPath()):
-            if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide2", "PySide6"]:
+            if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide6"]:
                 self.dirMenu.addAction(
                     self.tr("Compile all forms"), self.__compileAllForms
                 )
@@ -412,7 +412,7 @@
         self.dirMenuActions.append(act)
         self.dirMenu.addSeparator()
         if FileSystemUtilities.isPlainFileName(self.project.getProjectPath()):
-            if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide2", "PySide6"]:
+            if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide6"]:
                 self.dirMenu.addAction(self.tr("New form..."), self.__newForm)
             else:
                 if self.hooks["newForm"] is not None:
@@ -439,7 +439,7 @@
 
         self.dirMultiMenu = QMenu(self)
         if FileSystemUtilities.isPlainFileName(self.project.getProjectPath()):
-            if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide2", "PySide6"]:
+            if projectType in ["PyQt5", "PyQt6", "E7Plugin", "PySide6"]:
                 self.dirMultiMenu.addAction(
                     self.tr("Compile all forms"), self.__compileAllForms
                 )
@@ -666,7 +666,6 @@
                 "PyQt5",
                 "PyQt6",
                 "E7Plugin",
-                "PySide2",
                 "PySide6",
             ]:
                 self.__newUiForm(path)
@@ -790,10 +789,6 @@
                 )
             elif self.project.getProjectType() in ["PyQt6", "E7Plugin"]:
                 self.__uicompiler = QtUtilities.generatePyQtToolPath("pyuic6")
-            elif self.project.getProjectType() == "PySide2":
-                self.__uicompiler = QtUtilities.generatePySideToolPath(
-                    "pyside2-uic", variant=2
-                )
             elif self.project.getProjectType() == "PySide6":
                 self.__uicompiler = QtUtilities.generatePySideToolPath(
                     "pyside6-uic", variant=6
@@ -814,7 +809,7 @@
     def __readStdout(self):
         """
         Private slot to handle the readyReadStandardOutput signal of the
-        pyuic5/pyuic6/pyside2-uic/pyside6-uic process.
+        pyuic5/pyuic6/pyside6-uic process.
         """
         if self.compileProc is None:
             return
@@ -828,7 +823,7 @@
     def __readStderr(self):
         """
         Private slot to handle the readyReadStandardError signal of the
-        pyuic5/pyuic6/pyside2-uic/pyside6-uic process.
+        pyuic5/pyuic6/pyside6-uic process.
         """
         if self.compileProc is None:
             return
@@ -924,11 +919,7 @@
             dirname, filename = os.path.split(ofn)
             self.compiledFile = os.path.join(dirname, "Ui_" + filename + ".py")
 
-            if self.project.getProjectType() == "PySide2":
-                # PySide2
-                if Preferences.getQt("PySide2FromImports"):
-                    args.append("--from-imports")
-            elif self.project.getProjectType() == "PySide6":
+            if self.project.getProjectType() == "PySide6":
                 # PySide6
                 if Preferences.getQt("PySide6FromImports"):
                     args.append("--from-imports")
@@ -1119,7 +1110,6 @@
                     "PyQt5",
                     "PyQt6",
                     "E7Plugin",
-                    "PySide2",
                     "PySide6",
                 ]:
                     # ignore the request for non Qt GUI projects
--- a/src/eric7/Project/ProjectResourcesBrowser.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Project/ProjectResourcesBrowser.py	Sun Apr 13 14:46:18 2025 +0200
@@ -144,8 +144,6 @@
         ) and self.project.getProjectType() in [
             "PyQt5",
             "PyQt5C",
-            "PySide2",
-            "PySide2C",
             "PySide6",
             "PySide6C",
         ]:
@@ -191,8 +189,6 @@
             if self.project.getProjectType() in [
                 "PyQt5",
                 "PyQt5C",
-                "PySide2",
-                "PySide2C",
                 "PySide6",
                 "PySide6C",
             ]:
@@ -226,8 +222,6 @@
             if self.project.getProjectType() in [
                 "PyQt5",
                 "PyQt5C",
-                "PySide2",
-                "PySide2C",
                 "PySide6",
                 "PySide6C",
             ]:
@@ -283,8 +277,6 @@
             if self.project.getProjectType() in [
                 "PyQt5",
                 "PyQt5C",
-                "PySide2",
-                "PySide2C",
                 "PySide6",
                 "PySide6C",
             ]:
@@ -324,8 +316,6 @@
             if self.project.getProjectType() in [
                 "PyQt5",
                 "PyQt5C",
-                "PySide2",
-                "PySide2C",
                 "PySide6",
                 "PySide6C",
             ]:
@@ -376,8 +366,6 @@
             if self.project.getProjectType() in [
                 "PyQt5",
                 "PyQt5C",
-                "PySide2",
-                "PySide2C",
                 "PySide6",
                 "PySide6C",
             ]:
@@ -636,7 +624,7 @@
     def __readStdout(self):
         """
         Private slot to handle the readyReadStandardOutput signal of the
-        pyrcc5/pyside2-rcc/pyside6-rcc process.
+        pyrcc5/pyside6-rcc process.
         """
         if self.compileProc is None:
             return
@@ -654,7 +642,7 @@
     def __readStderr(self):
         """
         Private slot to handle the readyReadStandardError signal of the
-        pyrcc5/pyside2-rcc/pyside6-rcc process.
+        pyrcc5/pyside6-rcc process.
         """
         if self.compileProc is None:
             return
@@ -741,10 +729,6 @@
         if self.project.getProjectLanguage() == "Python3":
             if self.project.getProjectType() in ["PyQt5", "PyQt5C"]:
                 self.rccCompiler = QtUtilities.generatePyQtToolPath("pyrcc5")
-            elif self.project.getProjectType() in ["PySide2", "PySide2C"]:
-                self.rccCompiler = QtUtilities.generatePySideToolPath(
-                    "pyside2-rcc", variant=2
-                )
             elif self.project.getProjectType() in ["PySide6", "PySide6C"]:
                 self.rccCompiler = QtUtilities.generatePySideToolPath(
                     "pyside6-rcc", variant=6
--- a/src/eric7/Project/ProjectTranslationsBrowser.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Project/ProjectTranslationsBrowser.py	Sun Apr 13 14:46:18 2025 +0200
@@ -172,8 +172,6 @@
             "PyQt6",
             "PyQt6C",
             "E7Plugin",
-            "PySide2",
-            "PySide2C",
             "PySide6",
             "PySide6C",
         ]:
@@ -345,8 +343,6 @@
                 "PyQt6",
                 "PyQt6C",
                 "E7Plugin",
-                "PySide2",
-                "PySide2C",
                 "PySide6",
                 "PySide6C",
             ]:
@@ -424,8 +420,6 @@
             "PyQt6",
             "PyQt6C",
             "E7Plugin",
-            "PySide2",
-            "PySide2C",
             "PySide6",
             "PySide6C",
         ]:
@@ -542,8 +536,6 @@
                 "PyQt6",
                 "PyQt6C",
                 "E7Plugin",
-                "PySide2",
-                "PySide2C",
                 "PySide6",
                 "PySide6C",
             ]:
@@ -676,8 +668,6 @@
             "PyQt6",
             "PyQt6C",
             "E7Plugin",
-            "PySide2",
-            "PySide2C",
             "PySide6",
             "PySide6C",
         ]:
@@ -727,8 +717,6 @@
             "PyQt6",
             "PyQt6C",
             "E7Plugin",
-            "PySide2",
-            "PySide2C",
             "PySide6",
             "PySide6C",
         ]:
@@ -776,8 +764,6 @@
             "PyQt6",
             "PyQt6C",
             "E7Plugin",
-            "PySide2",
-            "PySide2C",
             "PySide6",
             "PySide6C",
         ]:
@@ -807,8 +793,6 @@
             "PyQt6",
             "PyQt6C",
             "E7Plugin",
-            "PySide2",
-            "PySide2C",
             "PySide6",
             "PySide6C",
         ]:
@@ -1113,7 +1097,7 @@
     def __readStderrLupdate(self, proc):
         """
         Private slot to handle the readyReadStandardError signal of the
-        pylupdate5 / pylupdate6 / pyside2-lupdate / pyside6-lupdate process.
+        pylupdate5 / pylupdate6 / pyside6-lupdate process.
 
         @param proc reference to the process
         @type QProcess
@@ -1220,8 +1204,8 @@
 
     def __generateTSFile(self, noobsolete=False, generateAll=True):
         """
-        Private method used to run pylupdate5 / pylupdate6 / pyside2-lupdate /
-        pyside6-lupdate to generate the .ts files.
+        Private method used to run pylupdate5 / pylupdate6 / pyside6-lupdate to generate
+        the .ts files.
 
         @param noobsolete flag indicating whether obsolete entries should be
             kept
@@ -1269,10 +1253,6 @@
             self.pylupdate = QtUtilities.generatePyQtToolPath("pylupdate5")
         elif self.project.getProjectType() in ["PyQt6", "PyQt6C", "E7Plugin"]:
             self.pylupdate = QtUtilities.generatePyQtToolPath("pylupdate6")
-        elif self.project.getProjectType() in ["PySide2", "PySide2C"]:
-            self.pylupdate = QtUtilities.generatePySideToolPath(
-                "pyside2-lupdate", variant=2
-            )
         elif self.project.getProjectType() in ["PySide6", "PySide6C"]:
             self.pylupdate = QtUtilities.generatePySideToolPath(
                 "pyside6-lupdate", variant=6
@@ -1542,12 +1522,10 @@
             "PyQt6",
             "PyQt6C",
             "E7Plugin",
-            "PySide2",
-            "PySide2C",
             "PySide6",
             "PySide6C",
         ]:
-            lrelease = Preferences.getQt("Lrelease")
+            lrelease = Preferences.getQt("lrelease")
             if not lrelease:
                 lrelease = os.path.join(
                     QtUtilities.getQtBinariesPath(),
--- a/src/eric7/SystemUtilities/PySideImporter.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/SystemUtilities/PySideImporter.py	Sun Apr 13 14:46:18 2025 +0200
@@ -4,24 +4,21 @@
 #
 
 """
-Module to check for the presence of PySide2/PySide6 by importing it.
+Module to check for the presence of PySide by importing it.
 """
 
 import importlib.util
 import sys
 
 if __name__ == "__main__":
-    pySideVariant = "2"
+    pySideVariant = "6"
     if len(sys.argv) == 2:
         pySideVariant = sys.argv[1].replace("--variant=", "")
 
-    if pySideVariant == "1":
+    if pySideVariant in ("1", "2"):
         # no PySide support anymore
         ret = 10
 
-    elif pySideVariant == "2":
-        ret = 10 if importlib.util.find_spec("PySide") is None else 0
-
     elif pySideVariant == "6":
         ret = 10 if importlib.util.find_spec("PySide6") is None else 0
 
--- a/src/eric7/SystemUtilities/QtUtilities.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/SystemUtilities/QtUtilities.py	Sun Apr 13 14:46:18 2025 +0200
@@ -329,19 +329,19 @@
 
 
 ###############################################################################
-## PySide2/PySide6 utility functions below
+## PySide utility functions below
 ###############################################################################
 
 
-def generatePySideToolPath(toolname, variant=2):
+def generatePySideToolPath(toolname, variant=6):
     """
-    Module function to generate the executable path for a PySide2/PySide6 tool.
+    Module function to generate the executable path for a PySide tool.
 
     @param toolname base name of the tool
     @type str
     @param variant indicator for the PySide variant
     @type int or str
-    @return the PySide2/PySide6 tool path with extension
+    @return the PySide tool path with extension
     @rtype str
     """
     from eric7 import Preferences
@@ -377,13 +377,13 @@
         return toolname
 
 
-def checkPyside(variant=2):
+def checkPyside(variant=6):
     """
-    Module function to check the presence of PySide2/PySide6.
+    Module function to check the presence of PySide.
 
     @param variant indicator for the PySide variant
     @type int or str
-    @return flags indicating the presence of PySide2/PySide6
+    @return flags indicating the presence of PySide
     @rtype bool
     """
     from eric7 import Preferences
--- a/src/eric7/UI/UserInterface.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/UI/UserInterface.py	Sun Apr 13 14:46:18 2025 +0200
@@ -3789,32 +3789,6 @@
         Private slot to initialize the actions to show the PySide
         documentation.
         """
-        if QtUtilities.checkPyside(variant=2):
-            self.pyside2DocAct = EricAction(
-                self.tr("PySide2 Documentation"),
-                self.tr("PySide2 Documentation"),
-                0,
-                0,
-                self,
-                "pyside2_documentation",
-            )
-            self.pyside2DocAct.setStatusTip(self.tr("Open PySide2 Documentation"))
-            self.pyside2DocAct.setWhatsThis(
-                self.tr(
-                    """<b>PySide2 Documentation</b>"""
-                    """<p>Display the PySide2 Documentation. Dependent upon your"""
-                    """ settings, this will either show the help in Eric's"""
-                    """ internal help viewer/web browser, or execute a web"""
-                    """ browser or Qt Assistant. </p>"""
-                )
-            )
-            self.pyside2DocAct.triggered.connect(
-                lambda: self.__showPySideDoc(variant=2)
-            )
-            self.actions.append(self.pyside2DocAct)
-        else:
-            self.pyside2DocAct = None
-
         if QtUtilities.checkPyside(variant=6):
             self.pyside6DocAct = EricAction(
                 self.tr("PySide6 Documentation"),
@@ -4144,8 +4118,6 @@
         self.__menus["help"].addAction(self.qt6DocAct)
         self.__menus["help"].addAction(self.pyqt5DocAct)
         self.__menus["help"].addAction(self.pyqt6DocAct)
-        if self.pyside2DocAct is not None:
-            self.__menus["help"].addAction(self.pyside2DocAct)
         if self.pyside6DocAct is not None:
             self.__menus["help"].addAction(self.pyside6DocAct)
         self.__menus["help"].addSeparator()
@@ -7073,11 +7045,11 @@
         else:
             self.__customViewer(home)
 
-    def __showPySideDoc(self, variant=2):
-        """
-        Private slot to show the PySide2/PySide6 documentation.
-
-        @param variant PySide variant (2 or 6)
+    def __showPySideDoc(self, variant=6):
+        """
+        Private slot to show the PySide documentation.
+
+        @param variant PySide variant
         @type int or str
         """
         pysideDocDir = Preferences.getHelp("PySide{0}DocDir".format(variant))
--- a/src/eric7/Utilities/ModuleParser.py	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/Utilities/ModuleParser.py	Sun Apr 13 14:46:18 2025 +0200
@@ -145,7 +145,7 @@
     )
 
 |   (?P<Method>
-        (^ [ \t]* @ (?: PyQt[456] \. | PySide[26] \. )? (?: QtCore \. )?
+        (^ [ \t]* @ (?: PyQt[56] \. | PySide[6] \. )? (?: QtCore \. )?
             (?: pyqtSignature | pyqtSlot | Slot )
             [ \t]* \(
                 (?P<MethodPyQtSignature> [^)]* )
--- a/src/eric7/i18n/eric7_cs.ts	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/i18n/eric7_cs.ts	Sun Apr 13 14:46:18 2025 +0200
@@ -1734,47 +1734,47 @@
   <context>
     <name>BackgroundService</name>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="168" />
+      <location filename="../Utilities/BackgroundService.py" line="169" />
       <source>{0} not configured.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="230" />
-      <source>Initialization of Background Service</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>Initialization of Background Service</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="232" />
       <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="244" />
-      <source>Restart background client?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="245" />
+      <source>Restart background client?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="246" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="274" />
+      <location filename="../Utilities/BackgroundService.py" line="275" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="515" />
+      <location filename="../Utilities/BackgroundService.py" line="516" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="524" />
-      <source>Background client disconnected.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="525" />
+      <source>Background client disconnected.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="526" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -3762,7 +3762,7 @@
       <translation>Stisknutím vymazat seznam hostů</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="526" />
+      <location filename="../Cooperation/ChatWidget.py" line="528" />
       <location filename="../Cooperation/ChatWidget.ui" line="0" />
       <source>Clear</source>
       <translation>Vyčistit</translation>
@@ -3793,156 +3793,156 @@
       <translation>Zobrazuje stav serveru</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="322" />
+      <location filename="../Cooperation/ChatWidget.py" line="324" />
       <location filename="../Cooperation/ChatWidget.py" line="85" />
       <source>Start Server</source>
       <translation>Spustit server</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="153" />
+      <location filename="../Cooperation/ChatWidget.py" line="155" />
       <source>! Unknown command: {0}
 </source>
       <translation>!Neznámý příkaz: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="176" />
+      <location filename="../Cooperation/ChatWidget.py" line="178" />
       <source>* {0} has joined.
 </source>
       <translation>* {0} připojeno.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="193" />
+      <location filename="../Cooperation/ChatWidget.py" line="195" />
       <source>New User</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="194" />
+      <location filename="../Cooperation/ChatWidget.py" line="196" />
       <source>{0} has joined.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="217" />
+      <location filename="../Cooperation/ChatWidget.py" line="219" />
       <source>* {0} has left.
 </source>
       <translation>* {0} odešlo.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="226" />
+      <location filename="../Cooperation/ChatWidget.py" line="228" />
       <source>User Left</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="227" />
+      <location filename="../Cooperation/ChatWidget.py" line="229" />
       <source>{0} has left.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="255" />
+      <location filename="../Cooperation/ChatWidget.py" line="257" />
       <source>Message from &lt;{0}&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="330" />
+      <location filename="../Cooperation/ChatWidget.py" line="332" />
       <source>Stop Server</source>
       <translation>Zastavit server</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="336" />
+      <location filename="../Cooperation/ChatWidget.py" line="338" />
       <source>! Server Error: {0}
 </source>
       <translation>!Chyba serveru: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="347" />
+      <location filename="../Cooperation/ChatWidget.py" line="349" />
       <source>Disconnect</source>
       <translation>Odpojeno</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="351" />
+      <location filename="../Cooperation/ChatWidget.py" line="353" />
       <source>Connect</source>
       <translation>Připojeno</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="515" />
+      <location filename="../Cooperation/ChatWidget.py" line="517" />
       <source>Copy</source>
       <translation>Kopírovat</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="519" />
+      <location filename="../Cooperation/ChatWidget.py" line="521" />
       <source>Cut all</source>
       <translation>Vyjmout vše</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="522" />
+      <location filename="../Cooperation/ChatWidget.py" line="524" />
       <source>Copy all</source>
       <translation>Kopírovat vše</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="530" />
+      <location filename="../Cooperation/ChatWidget.py" line="532" />
       <source>Save</source>
       <translation>Uložit</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="588" />
-      <location filename="../Cooperation/ChatWidget.py" line="573" />
+      <location filename="../Cooperation/ChatWidget.py" line="590" />
+      <location filename="../Cooperation/ChatWidget.py" line="575" />
       <source>Save Chat</source>
       <translation>Uložit pokec</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="575" />
+      <location filename="../Cooperation/ChatWidget.py" line="577" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation>Textové soubory (*.txt);;Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="589" />
+      <location filename="../Cooperation/ChatWidget.py" line="591" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="604" />
+      <location filename="../Cooperation/ChatWidget.py" line="606" />
       <source>Error saving Chat</source>
       <translation>Chyba při ukládání pokecu</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="605" />
+      <location filename="../Cooperation/ChatWidget.py" line="607" />
       <source>&lt;p&gt;The chat contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Obsah pokecu se nepodařilo zapsat do &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="644" />
+      <location filename="../Cooperation/ChatWidget.py" line="646" />
       <source>Kick User</source>
       <translation>Vykopnout uživatele</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="648" />
+      <location filename="../Cooperation/ChatWidget.py" line="650" />
       <source>Ban User</source>
       <translation>Zakázat uživatele</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="652" />
+      <location filename="../Cooperation/ChatWidget.py" line="654" />
       <source>Ban and Kick User</source>
       <translation>Zakázat a vykopnout uživatele</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="683" />
+      <location filename="../Cooperation/ChatWidget.py" line="685" />
       <source>* {0} has been kicked.
 </source>
       <translation>* {0} bylo vykopnuto.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="700" />
+      <location filename="../Cooperation/ChatWidget.py" line="702" />
       <source>* {0} has been banned.
 </source>
       <translation>* {0} bylo zakázáno.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="717" />
+      <location filename="../Cooperation/ChatWidget.py" line="719" />
       <source>* {0} has been banned and kicked.
 </source>
       <translation>* {0} bylo zakázáno a vykopnuto.</translation>
@@ -4890,32 +4890,32 @@
   <context>
     <name>CodeDocumentationViewer</name>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="220" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="222" />
       <source>Code Info Provider:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="238" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="240" />
       <source>Select the code info provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="239" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="241" />
       <source>&lt;disabled&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="420" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="422" />
       <source>No documentation available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="441" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="443" />
       <source>No source code documentation provider has been registered. This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="449" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="451" />
       <source>This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
@@ -8832,10 +8832,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="608" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="505" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="467" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="455" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="604" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="501" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="463" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="451" />
       <location filename="../Project/CreateDialogCodeDialog.py" line="419" />
       <source>Code Generation</source>
       <translation>Generování kódu</translation>
@@ -8846,22 +8846,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="456" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="452" />
       <source>&lt;p&gt;No code template file available for project type "{0}".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="468" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="464" />
       <source>&lt;p&gt;Could not open the code template file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Template soubor &lt;b&gt;{0}&lt;/b&gt; nelze otevřít.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="506" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="502" />
       <source>&lt;p&gt;Could not open the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nelze ovevřít source soubor "{0}".&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="609" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="605" />
       <source>&lt;p&gt;Could not write the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nelze zapsat do source souboru "{0}".&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
@@ -9366,676 +9366,676 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="207" />
+      <location filename="../Debugger/DebugUI.py" line="210" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="234" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="237" />
       <source>Run Script</source>
       <translation>Spustit skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="236" />
+      <location filename="../Debugger/DebugUI.py" line="239" />
       <source>&amp;Run Script...</source>
       <translation>Spustit sk&amp;ript...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="242" />
+      <location filename="../Debugger/DebugUI.py" line="245" />
       <source>Run the current Script</source>
       <translation>Spustit aktuální skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="244" />
+      <location filename="../Debugger/DebugUI.py" line="247" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Spustit skript&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění skriptu bez debugeru. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2386" />
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="255" />
+      <location filename="../Debugger/DebugUI.py" line="2389" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="258" />
       <source>Run Project</source>
       <translation>Spustit projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="257" />
+      <location filename="../Debugger/DebugUI.py" line="260" />
       <source>Run &amp;Project...</source>
       <translation>Spustit &amp;projekt...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="263" />
+      <location filename="../Debugger/DebugUI.py" line="266" />
       <source>Run the current Project</source>
       <translation>Spustit aktuální projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="265" />
+      <location filename="../Debugger/DebugUI.py" line="268" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Spustit projekt&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu bez debugeru. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="277" />
+      <location filename="../Debugger/DebugUI.py" line="280" />
       <source>Coverage run of Script</source>
       <translation>Spustit skript s kontrolou pokrytí</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="279" />
+      <location filename="../Debugger/DebugUI.py" line="282" />
       <source>Coverage run of Script...</source>
       <translation>Spustit skript s kontrolou pokrytí...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="286" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Provede se spuštění běhu aktuálního skriptu s kontrolou pokrytí kódu</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Provede se spuštění běhu aktuálního skriptu s kontrolou pokrytí kódu</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Spustit skript s kontrolou pokrytí&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu pod kontrolou nástroje analýzy pokrytí kódu. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="300" />
+      <location filename="../Debugger/DebugUI.py" line="303" />
       <source>Coverage run of Project</source>
       <translation>Spustit projekt s kontrolou pokrytí</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="302" />
+      <location filename="../Debugger/DebugUI.py" line="305" />
       <source>Coverage run of Project...</source>
       <translation>Spustit projekt s kontrolou pokrytí...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="309" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>Provede se spuštění běhu aktuálního projektu s kontrolou pokrytí kódu</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>Provede se spuštění běhu aktuálního projektu s kontrolou pokrytí kódu</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Spustit projekt s kontrolou pokrytí&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu pod kontrolou nástroje analýzy pokrytí kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="324" />
+      <location filename="../Debugger/DebugUI.py" line="327" />
       <source>Profile Script</source>
       <translation>Profilovat skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="326" />
+      <location filename="../Debugger/DebugUI.py" line="329" />
       <source>Profile Script...</source>
       <translation>Profilovat skript...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="332" />
+      <location filename="../Debugger/DebugUI.py" line="335" />
       <source>Profile the current Script</source>
       <translation>Profilovat aktuální skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="334" />
+      <location filename="../Debugger/DebugUI.py" line="337" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilovat skript&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="344" />
+      <location filename="../Debugger/DebugUI.py" line="347" />
       <source>Profile Project</source>
       <translation>Profilovat projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="346" />
+      <location filename="../Debugger/DebugUI.py" line="349" />
       <source>Profile Project...</source>
       <translation>Profilovat projekt...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="352" />
+      <location filename="../Debugger/DebugUI.py" line="355" />
       <source>Profile the current Project</source>
       <translation>Profilovat aktuální projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="354" />
+      <location filename="../Debugger/DebugUI.py" line="357" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilovat projekt&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="365" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="368" />
       <source>Debug Script</source>
       <translation>Debugovat skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="367" />
+      <location filename="../Debugger/DebugUI.py" line="370" />
       <source>&amp;Debug Script...</source>
       <translation>&amp;Debugovat skript...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="373" />
+      <location filename="../Debugger/DebugUI.py" line="376" />
       <source>Debug the current Script</source>
       <translation>Debugovat aktuální skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="375" />
+      <location filename="../Debugger/DebugUI.py" line="378" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debugovat skript&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a aktuální řádky jako první python příkaz v aktuálním editačním okně. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2579" />
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="387" />
+      <location filename="../Debugger/DebugUI.py" line="2582" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="390" />
       <source>Debug Project</source>
       <translation>Debugovat projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="389" />
+      <location filename="../Debugger/DebugUI.py" line="392" />
       <source>Debug &amp;Project...</source>
       <translation>Debugovat pro&amp;jekt...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="395" />
+      <location filename="../Debugger/DebugUI.py" line="398" />
       <source>Debug the current Project</source>
       <translation>Debugovat aktuální projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="397" />
+      <location filename="../Debugger/DebugUI.py" line="400" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debugovat projekt&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a nastavení aktuální řádky jako první python příkaz hlavního skriptu v aktuálním projektu. Pokud jsou v projektu neuložené změny, měly by se měly nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2895" />
-      <location filename="../Debugger/DebugUI.py" line="411" />
-      <location filename="../Debugger/DebugUI.py" line="409" />
+      <location filename="../Debugger/DebugUI.py" line="2898" />
+      <location filename="../Debugger/DebugUI.py" line="414" />
+      <location filename="../Debugger/DebugUI.py" line="412" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="417" />
+      <location filename="../Debugger/DebugUI.py" line="420" />
       <source>Restart the last debugged script</source>
       <translation>Restartovat posledně debugovaný skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="419" />
+      <location filename="../Debugger/DebugUI.py" line="422" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="628" />
-      <location filename="../Debugger/DebugUI.py" line="433" />
-      <location filename="../Debugger/DebugUI.py" line="431" />
+      <location filename="../Debugger/DebugUI.py" line="631" />
+      <location filename="../Debugger/DebugUI.py" line="436" />
+      <location filename="../Debugger/DebugUI.py" line="434" />
       <source>Stop</source>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="439" />
+      <location filename="../Debugger/DebugUI.py" line="442" />
       <source>Stop the running script.</source>
       <translation>Zastavit běžící skript.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="441" />
+      <location filename="../Debugger/DebugUI.py" line="444" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="452" />
+      <location filename="../Debugger/DebugUI.py" line="455" />
       <source>Continue</source>
       <translation>Pokračovat</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="454" />
+      <location filename="../Debugger/DebugUI.py" line="457" />
       <source>&amp;Continue</source>
       <translation>&amp;Pokračovat</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="460" />
+      <location filename="../Debugger/DebugUI.py" line="463" />
       <source>Continue running the program from the current line</source>
       <translation>Pokračovat v běhu programu od aktuální řádky</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="462" />
+      <location filename="../Debugger/DebugUI.py" line="465" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Pokračovat&lt;/b&gt;&lt;p&gt;Pokračovat v běhu programu od aktuální řádky. Program se zastaví na nejbližším breakpointu nebo běží až do konce.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="473" />
+      <location filename="../Debugger/DebugUI.py" line="476" />
       <source>Continue to Cursor</source>
       <translation>Pokračovat až na kurzor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="475" />
+      <location filename="../Debugger/DebugUI.py" line="478" />
       <source>Continue &amp;To Cursor</source>
       <translation>Pokračova&amp;t až na kurzor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="482" />
+      <location filename="../Debugger/DebugUI.py" line="485" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Pokračovat v běhu programu od aktuální řádky až na pozici kurzoru</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="488" />
+      <location filename="../Debugger/DebugUI.py" line="491" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Pokračovat až na kurzor&lt;/b&gt;&lt;p&gt;Běh programu pokračuje až na řádek, na kterém se nachází kurzor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="498" />
+      <location filename="../Debugger/DebugUI.py" line="501" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="500" />
+      <location filename="../Debugger/DebugUI.py" line="503" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="507" />
+      <location filename="../Debugger/DebugUI.py" line="510" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="513" />
+      <location filename="../Debugger/DebugUI.py" line="516" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="524" />
+      <location filename="../Debugger/DebugUI.py" line="527" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="526" />
+      <location filename="../Debugger/DebugUI.py" line="529" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="533" />
+      <location filename="../Debugger/DebugUI.py" line="536" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="539" />
+      <location filename="../Debugger/DebugUI.py" line="542" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="553" />
+      <location filename="../Debugger/DebugUI.py" line="556" />
       <source>Single Step</source>
       <translation>Krok dovnitř</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="555" />
+      <location filename="../Debugger/DebugUI.py" line="558" />
       <source>Sin&amp;gle Step</source>
       <translation>&amp;Krok dovnitř</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="561" />
+      <location filename="../Debugger/DebugUI.py" line="564" />
       <source>Execute a single Python statement</source>
       <translation>Vykonat jen jeden python příkaz</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="563" />
+      <location filename="../Debugger/DebugUI.py" line="566" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Krok dovnitř&lt;/b&gt;&lt;p&gt;Vykoná se jen jeden python příkaz. Pokud je příkaz &lt;tt&gt;import&lt;/tt&gt;, konstruktor třídy, metoda nebo funkce, tak debuger vstoupí dovnitř funkce a zastaví se na prvním příkazu v těle funkce.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="575" />
+      <location filename="../Debugger/DebugUI.py" line="578" />
       <source>Step Over</source>
       <translation>Krok přes</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="577" />
+      <location filename="../Debugger/DebugUI.py" line="580" />
       <source>Step &amp;Over</source>
       <translation>Kr&amp;ok přes</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="584" />
+      <location filename="../Debugger/DebugUI.py" line="587" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Vykonat jeden python příkaz ale nevstupovat do něj</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="590" />
+      <location filename="../Debugger/DebugUI.py" line="593" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Krok přes&lt;/b&gt;&lt;p&gt;Vykoná se jeden python příkaz. Pokud je příkaz &lt;tt&gt;import&lt;/tt&gt;, konstruktor třídy, metoda nebo funkce, tak debuger nevstupuje dovnitř funkce, ale vykoná ji celou a zastaví se až na následujícím příkazu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="603" />
+      <location filename="../Debugger/DebugUI.py" line="606" />
       <source>Step Out</source>
       <translation>Krok ven</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="605" />
+      <location filename="../Debugger/DebugUI.py" line="608" />
       <source>Step Ou&amp;t</source>
       <translation>Krok &amp;ven</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="612" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Vykonávat python příkazy tak dlouho, dokud nedojde k opuštění těla kódu</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Vykonávat python příkazy tak dlouho, dokud nedojde k opuštění těla kódu</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Krok ven&lt;/b&gt;&lt;p&gt;Provádí se python příkazy tak dlouho, dokud nedojde k opuštění těla aktuálního bloku kódu. Pokud je příkaz &lt;tt&gt;import&lt;/tt&gt;, konstruktor třídy, metoda nebo funkce, tak debuger provádí příkazy tak dlouho, dokud z daného bloku nevystoupí. Zastaví se až na příkazu následujícím za daným blokem.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="630" />
+      <location filename="../Debugger/DebugUI.py" line="633" />
       <source>&amp;Stop</source>
       <translation>&amp;Stop</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="636" />
+      <location filename="../Debugger/DebugUI.py" line="639" />
       <source>Stop debugging</source>
       <translation>Stop debugování</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="638" />
+      <location filename="../Debugger/DebugUI.py" line="641" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop běhu aktuální debug relace.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="644" />
+      <location filename="../Debugger/DebugUI.py" line="647" />
       <source>Variables Type Filter</source>
       <translation>Filtr typů proměnných</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="645" />
+      <location filename="../Debugger/DebugUI.py" line="648" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>&amp;Filtr typů proměnných...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="651" />
+      <location filename="../Debugger/DebugUI.py" line="654" />
       <source>Configure variables type filter</source>
       <translation>Nastavit filtr typů proměnných</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="653" />
+      <location filename="../Debugger/DebugUI.py" line="656" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtr typů proměnných&lt;/b&gt;&lt;p&gt;Nastavení filtru typů proměnných. Během debugování jsou v okně globálních nebo lokálních proměnných zobrazovány jen ty typy proměnných, které nebyly vybrány.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="664" />
+      <location filename="../Debugger/DebugUI.py" line="667" />
       <source>Exceptions Filter</source>
       <translation>Filtr výjimek</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="665" />
+      <location filename="../Debugger/DebugUI.py" line="668" />
       <source>&amp;Exceptions Filter...</source>
       <translation>Filtr výjim&amp;ek...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="671" />
+      <location filename="../Debugger/DebugUI.py" line="674" />
       <source>Configure exceptions filter</source>
       <translation>Konfigurace filtru výjimek</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="673" />
+      <location filename="../Debugger/DebugUI.py" line="676" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtr výjimek&lt;/b&gt;&lt;p&gt;Nastavení filtru výjimek. Během debugování jsou zvýrazněny jen ty výjimky, které jsou uvedeny v seznamu.&lt;/p&gt;&lt;p&gt;Všimněte si, že neošetřené výjimky jsou zvýrazněny nezávisle na seznamu filtru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="685" />
+      <location filename="../Debugger/DebugUI.py" line="688" />
       <source>Ignored Exceptions</source>
       <translation>Ignorované výjimky</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="686" />
+      <location filename="../Debugger/DebugUI.py" line="689" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>&amp;Ignorované výjimky...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="692" />
+      <location filename="../Debugger/DebugUI.py" line="695" />
       <source>Configure ignored exceptions</source>
       <translation>Konfigurovat ignorované výjimky</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="694" />
+      <location filename="../Debugger/DebugUI.py" line="697" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ignorované výjimky&lt;/b&gt;&lt;p&gt;Seznam ignorovaných výjimek. Během debugování jsou zvýrazněny jen ty typy výjimek, které nejsou uvedeny v tomto seznamu.&lt;/p&gt;&lt;p&gt;Všimněte si prosím, že výjimky typu unhalted nelze ignorovat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="716" />
-      <location filename="../Debugger/DebugUI.py" line="710" />
-      <location filename="../Debugger/DebugUI.py" line="708" />
+      <location filename="../Debugger/DebugUI.py" line="719" />
+      <location filename="../Debugger/DebugUI.py" line="713" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Toggle Breakpoint</source>
       <translation>Přepnout breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="714" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="718" />
+      <location filename="../Debugger/DebugUI.py" line="721" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přepnout breakpoint&lt;/b&gt;&lt;p&gt;Zapíná/vypíná breakpoint na aktuální řádce v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="736" />
-      <location filename="../Debugger/DebugUI.py" line="728" />
+      <location filename="../Debugger/DebugUI.py" line="739" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Edit Breakpoint</source>
       <translation>Editovat breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="730" />
+      <location filename="../Debugger/DebugUI.py" line="733" />
       <source>Edit Breakpoint...</source>
       <translation>Editovat breakpoint...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="734" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="738" />
+      <location filename="../Debugger/DebugUI.py" line="741" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editovat breakpoint&lt;/b&gt;&lt;p&gt;Otevře dialog s editací vlastností breakpointů. Zpracovává aktuální řádku v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="756" />
-      <location filename="../Debugger/DebugUI.py" line="750" />
-      <location filename="../Debugger/DebugUI.py" line="748" />
+      <location filename="../Debugger/DebugUI.py" line="759" />
+      <location filename="../Debugger/DebugUI.py" line="753" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Next Breakpoint</source>
       <translation>Následující breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="754" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="758" />
+      <location filename="../Debugger/DebugUI.py" line="761" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Následující breakpoint&lt;/b&gt;&lt;p&gt;Jít na následující breakpoint v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="775" />
-      <location filename="../Debugger/DebugUI.py" line="769" />
-      <location filename="../Debugger/DebugUI.py" line="767" />
+      <location filename="../Debugger/DebugUI.py" line="778" />
+      <location filename="../Debugger/DebugUI.py" line="772" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Previous Breakpoint</source>
       <translation>Předchozí breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="773" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="777" />
+      <location filename="../Debugger/DebugUI.py" line="780" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Předchozí breakpoint&lt;/b&gt;&lt;p&gt;Jít na předchozí brakpoint v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="793" />
-      <location filename="../Debugger/DebugUI.py" line="787" />
-      <location filename="../Debugger/DebugUI.py" line="786" />
+      <location filename="../Debugger/DebugUI.py" line="796" />
+      <location filename="../Debugger/DebugUI.py" line="790" />
+      <location filename="../Debugger/DebugUI.py" line="789" />
       <source>Clear Breakpoints</source>
       <translation>Zrušit breakpointy</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="795" />
+      <location filename="../Debugger/DebugUI.py" line="798" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zrušit breakpointy&lt;/b&gt;&lt;p&gt;Zrušení breakpointů ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="819" />
+      <location filename="../Debugger/DebugUI.py" line="822" />
       <source>&amp;Debug</source>
       <translation>&amp;Debugování</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="821" />
+      <location filename="../Debugger/DebugUI.py" line="824" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="823" />
+      <location filename="../Debugger/DebugUI.py" line="826" />
       <source>&amp;Breakpoints</source>
       <translation>&amp;Breakpointy</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="866" />
-      <location filename="../Debugger/DebugUI.py" line="864" />
+      <location filename="../Debugger/DebugUI.py" line="869" />
+      <location filename="../Debugger/DebugUI.py" line="867" />
       <source>Start</source>
       <translation>Start</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="879" />
-      <location filename="../Debugger/DebugUI.py" line="877" />
+      <location filename="../Debugger/DebugUI.py" line="882" />
+      <location filename="../Debugger/DebugUI.py" line="880" />
       <source>Debug</source>
       <translation>Debug</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1342" />
+      <location filename="../Debugger/DebugUI.py" line="1345" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1348" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1353" />
+      <location filename="../Debugger/DebugUI.py" line="1356" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1365" />
+      <location filename="../Debugger/DebugUI.py" line="1368" />
       <source>Program terminated</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1401" />
+      <location filename="../Debugger/DebugUI.py" line="1404" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>Program, který je právě debugován, obsahuje nespecifikovanou syntaktickou chybu.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1421" />
+      <location filename="../Debugger/DebugUI.py" line="1424" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; na řádce &lt;b&gt;{1}&lt;/b&gt;, písmeno &lt;b&gt;{2}&lt;/b&gt;, obsahuje syntaktickou chybu &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1449" />
+      <location filename="../Debugger/DebugUI.py" line="1452" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Objevila se neošetřená výjimka. Detaily naleznete v shell okně.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1498" />
+      <location filename="../Debugger/DebugUI.py" line="1501" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Debugovaný program vyvolal výjimku  &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;Soubor: &lt;b&gt;{2}&lt;/b&gt;, řádek: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Zastavit zde?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1516" />
+      <location filename="../Debugger/DebugUI.py" line="1519" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1532" />
+      <location filename="../Debugger/DebugUI.py" line="1535" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation>&lt;p&gt;Debugovaný program vyvolal výjimku  &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1594" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1609" />
+      <location filename="../Debugger/DebugUI.py" line="1612" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>Debugovaný program byl neočekávaně ukončen.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1670" />
+      <location filename="../Debugger/DebugUI.py" line="1673" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1717" />
+      <location filename="../Debugger/DebugUI.py" line="1720" />
       <source>Breakpoint Condition Error</source>
       <translation>Chyba v podmíněném breakpointu</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1718" />
+      <location filename="../Debugger/DebugUI.py" line="1721" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Podmínka breakpointu &lt;b&gt;{0}, {1}&lt;/b&gt; obsahuje syntaktickou chybu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1779" />
+      <location filename="../Debugger/DebugUI.py" line="1782" />
       <source>Watch Expression Error</source>
       <translation>Chyba sledovacího bodu</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1780" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sledovací bod &lt;b&gt;{0}&lt;/b&gt; obsahuje syntaktickou chybu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1810" />
+      <location filename="../Debugger/DebugUI.py" line="1813" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sledovací bod '&lt;b&gt;{0}&lt;/b&gt;' již existuje.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1815" />
+      <location filename="../Debugger/DebugUI.py" line="1818" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sledovací bod '&lt;b&gt;{0}&lt;/b&gt;' pro proměnnou &lt;b&gt;{1}&lt;/b&gt; již existuje.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1821" />
+      <location filename="../Debugger/DebugUI.py" line="1824" />
       <source>Watch expression already exists</source>
       <translation>Sledovací bod již existuje</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1986" />
-      <location filename="../Debugger/DebugUI.py" line="1977" />
+      <location filename="../Debugger/DebugUI.py" line="1989" />
+      <location filename="../Debugger/DebugUI.py" line="1980" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1979" />
+      <location filename="../Debugger/DebugUI.py" line="1982" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2387" />
-      <location filename="../Debugger/DebugUI.py" line="2189" />
-      <location filename="../Debugger/DebugUI.py" line="1987" />
+      <location filename="../Debugger/DebugUI.py" line="2390" />
+      <location filename="../Debugger/DebugUI.py" line="2192" />
+      <location filename="../Debugger/DebugUI.py" line="1990" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>V aktuálním projektu není definován hlavní skript. Zrušeno</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2188" />
-      <location filename="../Debugger/DebugUI.py" line="2179" />
+      <location filename="../Debugger/DebugUI.py" line="2191" />
+      <location filename="../Debugger/DebugUI.py" line="2182" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2181" />
+      <location filename="../Debugger/DebugUI.py" line="2184" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2580" />
+      <location filename="../Debugger/DebugUI.py" line="2583" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>V aktuálním projektu není definován hlavní skript. Debugování není možné.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3252" />
+      <location filename="../Debugger/DebugUI.py" line="3255" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -33430,7 +33430,6 @@
   <context>
     <name>HelpDocumentationPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="64" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="60" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="56" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="52" />
@@ -33557,21 +33556,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>Enter the PySide2 documentation directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
@@ -33987,29 +33971,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Qt4 dokumentace {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Qt4 dokumentace {6 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Qt4 dokumentace {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="453" />
@@ -34018,76 +33992,79 @@
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="454" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="455" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="512" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="514" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="513" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="701" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="700" />
       <source>Help Engine</source>
       <translation type="unfinished">Engine nápovědy</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="725" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="724" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">Vyhledat dokumentaci...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="736" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="735" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">Uspořádat dokumenty QtNápovědy</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="764" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="763" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Znovu indexovat dokumentaci</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="769" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="768" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="862" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="842" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="861" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="841" />
       <source>Clear History</source>
       <translation type="unfinished">Vyčistit historii</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="966" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="965" />
       <source>Updating search index</source>
       <translation type="unfinished">Aktualizovat index pro hledání</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1024" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1023" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrováno: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1060" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1054" />
       <source>Unfiltered</source>
       <translation type="unfinished">Nefiltrováno</translation>
     </message>
+    <message>
+      <source>Qt5 Documentation</source>
+      <translation type="vanished">Qt4 dokumentace {5 ?}</translation>
+    </message>
+    <message>
+      <source>PyQt5 Documentation</source>
+      <translation type="vanished">PyQt4 dokumentace {5 ?}</translation>
+    </message>
   </context>
   <context>
     <name>HelpViewersPage</name>
@@ -52266,7 +52243,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="415" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="416" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="221" />
       <source>No connection to Internet.</source>
       <translation type="unfinished" />
@@ -52302,24 +52279,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="435" />
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="411" />
-      <source>Error downloading dictionary file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="436" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="412" />
+      <source>Error downloading dictionary file</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="437" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="413" />
       <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="450" />
-      <source>Error downloading dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="451" />
+      <source>Error downloading dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="452" />
       <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -54194,7 +54171,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="459" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="460" />
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
@@ -54210,25 +54187,25 @@
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="192" />
       <source>%n supported serial device(s) detected.</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="205" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="206" />
       <source>{0} - {1} ({2})</source>
       <comment>board name, description, port name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="228" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="229" />
       <source>No supported serial devices detected.</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="233" />
       <source>
 %n unknown device(s) for manual selection.</source>
       <translation type="unfinished">
@@ -54238,17 +54215,17 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="239" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="240" />
       <source>Manual Selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="250" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="251" />
       <source>WebREPL (manual)</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="270" />
       <source>
 %n WebREPL connection(s) defined.</source>
       <translation type="unfinished">
@@ -54256,39 +54233,39 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="329" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="300" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
       <source>Unknown MicroPython Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="302" />
       <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href="mailto:{1}"&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="313" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="314" />
       <source>{0} (0x{1:04x}/0x{2:04x})</source>
       <comment>description, VID, PID</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="331" />
       <source>Would you like to add them to the list of manually configured devices?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="454" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="455" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="491" />
-      <source>No device attached</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="492" />
+      <source>No device attached</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="493" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -54297,353 +54274,353 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="523" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="731" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="718" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="720" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="726" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1198" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1190" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="729" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="730" />
       <source>unknown</source>
       <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="772" />
-      <source>Run Script</source>
-      <translation type="unfinished">Spustit skript</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
-      <source>There is no editor open. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
-      <source>The current editor does not contain a script. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
+      <source>Run Script</source>
+      <translation type="unfinished">Spustit skript</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="774" />
+      <source>There is no editor open. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="783" />
+      <source>The current editor does not contain a script. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="792" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="827" />
-      <source>Start Chart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="828" />
+      <source>Start Chart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="829" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="843" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="844" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="860" />
-      <source>Unsaved Chart Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="861" />
+      <source>Unsaved Chart Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="862" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="909" />
-      <source>Start File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="910" />
+      <source>Start File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="911" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="930" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="931" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1017" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1018" />
       <source>Downloads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
       <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1067" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Implementation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1071" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1079" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1080" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Local Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1083" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1084" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1087" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1088" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1691" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1099" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1091" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1092" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1730" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1727" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1095" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1096" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1503" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1105" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1504" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1106" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1529" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1520" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1109" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1530" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1110" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1130" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1131" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1137" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1140" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1141" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1150" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Configure</source>
       <translation type="unfinished">Konfigurovat</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1153" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1154" />
       <source>Quit</source>
       <translation type="unfinished">Konec</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1162" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1163" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1173" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
-      <source>Device Version Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1174" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1170" />
+      <source>Device Version Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1175" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1204" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1205" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1220" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1211" />
-      <source>Device Implementation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
-      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
+      <source>Device Implementation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1213" />
+      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1296" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1297" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1304" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1305" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1320" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1321" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1332" />
-      <source>Local Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1333" />
+      <source>Local Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1334" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1374" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1357" />
-      <source>Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
-      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1375" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
+      <source>Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1359" />
+      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1376" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1399" />
-      <source>Error handling device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1400" />
+      <source>Error handling device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1401" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1442" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1443" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1468" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1469" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Python soubory (*.py);;Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1478" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1479" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1488" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1489" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1522" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1613" />
-      <source>Add Unknown Devices</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1614" />
+      <source>Add Unknown Devices</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1664" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1665" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1716" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1717" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -54651,17 +54628,17 @@
   <context>
     <name>MicroPythonWindow</name>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="81" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="83" />
       <source>MicroPython / CircuitPython Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
@@ -59834,164 +59811,164 @@
   <context>
     <name>Pip</name>
     <message>
-      <location filename="../PipInterface/Pip.py" line="157" />
+      <location filename="../PipInterface/Pip.py" line="161" />
       <source>python exited with an error ({0}).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="166" />
+      <location filename="../PipInterface/Pip.py" line="170" />
       <source>python did not finish within 30 seconds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="168" />
+      <location filename="../PipInterface/Pip.py" line="172" />
       <source>python could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="229" />
+      <location filename="../PipInterface/Pip.py" line="233" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="254" />
+      <location filename="../PipInterface/Pip.py" line="258" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="255" />
+      <location filename="../PipInterface/Pip.py" line="259" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="308" />
+      <location filename="../PipInterface/Pip.py" line="312" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="355" />
+      <location filename="../PipInterface/Pip.py" line="359" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="487" />
-      <location filename="../PipInterface/Pip.py" line="469" />
+      <location filename="../PipInterface/Pip.py" line="491" />
+      <location filename="../PipInterface/Pip.py" line="473" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="470" />
+      <location filename="../PipInterface/Pip.py" line="474" />
       <source>There are no packages except 'eric-ide' or 'PyQt6' left for upgrade.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="533" />
+      <location filename="../PipInterface/Pip.py" line="537" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="564" />
+      <location filename="../PipInterface/Pip.py" line="568" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="586" />
+      <location filename="../PipInterface/Pip.py" line="590" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="621" />
-      <location filename="../PipInterface/Pip.py" line="611" />
+      <location filename="../PipInterface/Pip.py" line="625" />
+      <location filename="../PipInterface/Pip.py" line="615" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="612" />
+      <location filename="../PipInterface/Pip.py" line="753" />
+      <location filename="../PipInterface/Pip.py" line="616" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="622" />
+      <location filename="../PipInterface/Pip.py" line="626" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="642" />
+      <location filename="../PipInterface/Pip.py" line="646" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="776" />
-      <location filename="../PipInterface/Pip.py" line="702" />
-      <location filename="../PipInterface/Pip.py" line="672" />
-      <location filename="../PipInterface/Pip.py" line="663" />
+      <location filename="../PipInterface/Pip.py" line="780" />
+      <location filename="../PipInterface/Pip.py" line="706" />
+      <location filename="../PipInterface/Pip.py" line="676" />
+      <location filename="../PipInterface/Pip.py" line="667" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
-      <location filename="../PipInterface/Pip.py" line="703" />
-      <location filename="../PipInterface/Pip.py" line="664" />
+      <location filename="../PipInterface/Pip.py" line="781" />
+      <location filename="../PipInterface/Pip.py" line="707" />
+      <location filename="../PipInterface/Pip.py" line="668" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="720" />
+      <location filename="../PipInterface/Pip.py" line="724" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="759" />
-      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="763" />
+      <location filename="../PipInterface/Pip.py" line="752" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="760" />
+      <location filename="../PipInterface/Pip.py" line="764" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="787" />
+      <location filename="../PipInterface/Pip.py" line="791" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1198" />
+      <location filename="../PipInterface/Pip.py" line="1203" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1224" />
-      <location filename="../PipInterface/Pip.py" line="1215" />
+      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1220" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1216" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1248" />
-      <location filename="../PipInterface/Pip.py" line="1241" />
+      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1246" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1242" />
+      <location filename="../PipInterface/Pip.py" line="1247" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1273" />
-      <location filename="../PipInterface/Pip.py" line="1265" />
+      <location filename="../PipInterface/Pip.py" line="1278" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1266" />
+      <location filename="../PipInterface/Pip.py" line="1271" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -60911,205 +60888,205 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="737" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="731" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
       <source>Cleanup Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="733" />
       <source>The environment cleanup was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="739" />
       <source>Some leftover package directories could not been removed. Delete them manually.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="834" />
-      <source>Search PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="835" />
+      <source>Search PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="836" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="854" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="855" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="856" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="857" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="860" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="862" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="863" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="869" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="870" />
       <source>Install</source>
       <translation type="unfinished">Instalovat</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1048" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="871" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1049" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="872" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="874" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="875" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="877" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="878" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="884" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="885" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="886" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="887" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="889" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="890" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="892" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="893" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="896" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="897" />
       <source>Install from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="900" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="901" />
       <source>Uninstall from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="905" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="906" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="912" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="913" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="914" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="915" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="917" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="918" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="920" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="921" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="923" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="924" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="940" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="941" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="944" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="945" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="948" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="949" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="952" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="953" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="959" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="960" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="962" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="963" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="967" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="968" />
       <source>Configure...</source>
       <translation type="unfinished">Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1211" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1198" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1187" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1212" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1199" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1188" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1213" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1200" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1189" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1421" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1422" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1442" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1443" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1445" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1446" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1585" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1560" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1586" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1561" />
       <source>unknown</source>
       <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1582" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1583" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
@@ -61137,7 +61114,7 @@
   <context>
     <name>PipPackagesWindow</name>
     <message>
-      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <location filename="../PipInterface/PipPackagesWindow.py" line="60" />
       <source>Manage Packages</source>
       <translation type="unfinished" />
     </message>
@@ -61654,52 +61631,52 @@
   <context>
     <name>PluginManager</name>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="230" />
+      <location filename="../PluginManager/PluginManager.py" line="232" />
       <source>Could not create a package for {0}.</source>
       <translation>Nelze vytvořit balíček pro {0}.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="262" />
+      <location filename="../PluginManager/PluginManager.py" line="264" />
       <source>The internal plugin directory &lt;b&gt;{0}&lt;/b&gt; does not exits.</source>
       <translation>Interní adresář zásuvných modulů &lt;b&gt;{0}&lt;/b&gt; neexistuje.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="439" />
+      <location filename="../PluginManager/PluginManager.py" line="441" />
       <source>Module is missing the 'autoactivate' attribute.</source>
       <translation>Modulu chybí atribut 'autoaktivace'.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="450" />
+      <location filename="../PluginManager/PluginManager.py" line="452" />
       <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source>
       <translation>Modulu chybí atributy 'pluginType' a/nebo 'pluginTypename'.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="478" />
+      <location filename="../PluginManager/PluginManager.py" line="480" />
       <source>Module failed to load. Error: {0}</source>
       <translation>Modul se nepodařilo načíst. Chyba: {0}</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="661" />
+      <location filename="../PluginManager/PluginManager.py" line="663" />
       <source>Incompatible plugin activation method.</source>
       <translation>Nekompatibilní metoda aktivace pluginu.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1269" />
+      <location filename="../PluginManager/PluginManager.py" line="1271" />
       <source>Plugin Manager Error</source>
       <translation>Chyba plugin manažeru</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1270" />
+      <location filename="../PluginManager/PluginManager.py" line="1272" />
       <source>&lt;p&gt;The plugin download directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Please configure it via the configuration dialog.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Download plugin adresář &lt;b&gt;{0}&lt;/b&gt; se nepodařilo vytvořit. Prosím, upravte nastavení přes konfigurační dialog.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1358" />
+      <location filename="../PluginManager/PluginManager.py" line="1360" />
       <source>Error downloading file</source>
       <translation type="unfinished">Chyba při stahování souboru</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1359" />
+      <location filename="../PluginManager/PluginManager.py" line="1361" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Nelze stáhnout požadovaný soubor z {0}.&lt;/p&gt;&lt;p&gt;Chyba: {1}&lt;/p&gt;</translation>
     </message>
@@ -62585,18 +62562,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1911" />
+      <location filename="../Preferences/__init__.py" line="1891" />
       <source>Export Preferences</source>
       <translation>Předvolby exportu</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1940" />
-      <location filename="../Preferences/__init__.py" line="1913" />
+      <location filename="../Preferences/__init__.py" line="1920" />
+      <location filename="../Preferences/__init__.py" line="1893" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1938" />
+      <location filename="../Preferences/__init__.py" line="1918" />
       <source>Import Preferences</source>
       <translation>Předvolby importu</translation>
     </message>
@@ -63124,113 +63101,98 @@
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="204" />
-      <source>Translation Extractor (Python, PySide2)</source>
+      <source>Translation Extractor (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="213" />
-      <source>Forms Compiler (Python, PySide2)</source>
+      <source>Forms Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="222" />
-      <source>Resource Compiler (Python, PySide2)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="232" />
-      <source>Translation Extractor (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="241" />
-      <source>Forms Compiler (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="250" />
       <source>Resource Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="265" />
+      <location filename="../Preferences/ProgramsDialog.py" line="237" />
       <source>conda Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="275" />
+      <location filename="../Preferences/ProgramsDialog.py" line="247" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="527" />
-      <location filename="../Preferences/ProgramsDialog.py" line="524" />
-      <location filename="../Preferences/ProgramsDialog.py" line="508" />
-      <location filename="../Preferences/ProgramsDialog.py" line="378" />
-      <location filename="../Preferences/ProgramsDialog.py" line="311" />
-      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <location filename="../Preferences/ProgramsDialog.py" line="499" />
+      <location filename="../Preferences/ProgramsDialog.py" line="496" />
+      <location filename="../Preferences/ProgramsDialog.py" line="480" />
+      <location filename="../Preferences/ProgramsDialog.py" line="350" />
+      <location filename="../Preferences/ProgramsDialog.py" line="283" />
+      <location filename="../Preferences/ProgramsDialog.py" line="266" />
       <source>(unknown)</source>
       <translation>(neznámý)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="298" />
+      <location filename="../Preferences/ProgramsDialog.py" line="270" />
       <source>Spell Checker - PyEnchant</source>
       <translation />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="315" />
+      <location filename="../Preferences/ProgramsDialog.py" line="287" />
       <source>Source Highlighter - Pygments</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <source>MicroPython - MPY Cross Compiler</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="301" />
+      <source>MicroPython - ESP Tool</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="312" />
+      <source>MicroPython - PyBoard Flasher</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ProgramsDialog.py" line="322" />
-      <source>MicroPython - MPY Cross Compiler</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="329" />
-      <source>MicroPython - ESP Tool</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="340" />
-      <source>MicroPython - PyBoard Flasher</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="350" />
       <source>MicroPython - STLink Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="360" />
+      <location filename="../Preferences/ProgramsDialog.py" line="332" />
       <source>MicroPython - STLink Flasher</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="382" />
+      <location filename="../Preferences/ProgramsDialog.py" line="354" />
       <source>Code Assistant - Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="462" />
+      <location filename="../Preferences/ProgramsDialog.py" line="434" />
       <source>(not configured)</source>
       <translation>(nezkonfigurováno)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="497" />
+      <location filename="../Preferences/ProgramsDialog.py" line="469" />
       <source>(module not found)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="530" />
+      <location filename="../Preferences/ProgramsDialog.py" line="502" />
       <source>(not executable)</source>
       <translation>(nevykonavatelný)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="576" />
-      <location filename="../Preferences/ProgramsDialog.py" line="544" />
-      <location filename="../Preferences/ProgramsDialog.py" line="542" />
+      <location filename="../Preferences/ProgramsDialog.py" line="548" />
+      <location filename="../Preferences/ProgramsDialog.py" line="516" />
+      <location filename="../Preferences/ProgramsDialog.py" line="514" />
       <source>(not found)</source>
       <translation>(nenalezeno)</translation>
     </message>
@@ -63289,379 +63251,369 @@
     </message>
     <message>
       <location filename="../Project/Project.py" line="362" />
-      <source>PySide2 GUI</source>
+      <source>PySide6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="363" />
-      <source>PySide2 Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="367" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="466" />
-      <location filename="../Project/Project.py" line="454" />
-      <location filename="../Project/Project.py" line="443" />
+      <location filename="../Project/Project.py" line="461" />
+      <location filename="../Project/Project.py" line="449" />
+      <location filename="../Project/Project.py" line="438" />
       <source>Registering Project Type</source>
       <translation>Zaregistrovat typ projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="444" />
+      <location filename="../Project/Project.py" line="439" />
       <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="455" />
+      <location filename="../Project/Project.py" line="450" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="467" />
+      <location filename="../Project/Project.py" line="462" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="772" />
+      <location filename="../Project/Project.py" line="767" />
       <source>All Files (*)</source>
       <translation type="unfinished">Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1321" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1579" />
-      <location filename="../Project/Project.py" line="1553" />
-      <location filename="../Project/Project.py" line="1517" />
-      <location filename="../Project/Project.py" line="1435" />
-      <location filename="../Project/Project.py" line="1396" />
-      <location filename="../Project/Project.py" line="1371" />
-      <location filename="../Project/Project.py" line="1334" />
+      <location filename="../Project/Project.py" line="1567" />
+      <location filename="../Project/Project.py" line="1541" />
+      <location filename="../Project/Project.py" line="1505" />
+      <location filename="../Project/Project.py" line="1423" />
+      <location filename="../Project/Project.py" line="1384" />
+      <location filename="../Project/Project.py" line="1359" />
+      <location filename="../Project/Project.py" line="1322" />
       <source>Please save the project first.</source>
       <translation>Prosím, nejdříve uložte projekt.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1370" />
+      <location filename="../Project/Project.py" line="1358" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1412" />
-      <location filename="../Project/Project.py" line="1395" />
+      <location filename="../Project/Project.py" line="1400" />
+      <location filename="../Project/Project.py" line="1383" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1402" />
+      <location filename="../Project/Project.py" line="1390" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1421" />
+      <location filename="../Project/Project.py" line="1409" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor s relací projektu &lt;b&gt;{0}&lt;/b&gt; nelze smazat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1422" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1516" />
+      <location filename="../Project/Project.py" line="1504" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1552" />
+      <location filename="../Project/Project.py" line="1540" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1595" />
-      <location filename="../Project/Project.py" line="1578" />
+      <location filename="../Project/Project.py" line="1583" />
+      <location filename="../Project/Project.py" line="1566" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1585" />
+      <location filename="../Project/Project.py" line="1573" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1604" />
+      <location filename="../Project/Project.py" line="1592" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor s nastaveními debuggeru &lt;b&gt;{0}&lt;/b&gt; nelze smazat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1777" />
+      <location filename="../Project/Project.py" line="1765" />
       <source>Add Language</source>
       <translation>Přidat jazyk</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1778" />
+      <location filename="../Project/Project.py" line="1766" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Nejdříve musíte specifikovat vzor překladu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1919" />
+      <location filename="../Project/Project.py" line="1905" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1946" />
-      <location filename="../Project/Project.py" line="1920" />
+      <location filename="../Project/Project.py" line="1932" />
+      <location filename="../Project/Project.py" line="1906" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1945" />
+      <location filename="../Project/Project.py" line="1931" />
       <source>Delete translation</source>
       <translation>Smazat překlad</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2098" />
-      <location filename="../Project/Project.py" line="2081" />
+      <location filename="../Project/Project.py" line="2084" />
+      <location filename="../Project/Project.py" line="2067" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2200" />
-      <location filename="../Project/Project.py" line="2082" />
+      <location filename="../Project/Project.py" line="2186" />
+      <location filename="../Project/Project.py" line="2068" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2099" />
+      <location filename="../Project/Project.py" line="2085" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Vybraný soubor &lt;b&gt;{0}&lt;/b&gt; nelze přidat do &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Důvod: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2097" />
       <source>Add file</source>
       <translation>Přidat soubor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2296" />
-      <location filename="../Project/Project.py" line="2112" />
+      <location filename="../Project/Project.py" line="2282" />
+      <location filename="../Project/Project.py" line="2098" />
       <source>The target directory must not be empty.</source>
       <translation>Cílový adresář nesmí být prázdný.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2172" />
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2185" />
+      <location filename="../Project/Project.py" line="2158" />
+      <location filename="../Project/Project.py" line="2138" />
       <source>Add Directory</source>
       <translation type="unfinished">Přidat adresář</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2153" />
+      <location filename="../Project/Project.py" line="2139" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Zdrojový adresář neobsahuje žádné soubory související s danou kategorií.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2173" />
+      <location filename="../Project/Project.py" line="2159" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cílový adresář &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2307" />
-      <location filename="../Project/Project.py" line="2295" />
+      <location filename="../Project/Project.py" line="2293" />
+      <location filename="../Project/Project.py" line="2281" />
       <source>Add directory</source>
       <translation>Přidat adresář</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2308" />
+      <location filename="../Project/Project.py" line="2294" />
       <source>The source directory must not be empty.</source>
       <translation>Cílový adresář nesmí být prázdný.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2422" />
-      <location filename="../Project/Project.py" line="2404" />
-      <location filename="../Project/Project.py" line="2388" />
-      <location filename="../Project/Project.py" line="2381" />
+      <location filename="../Project/Project.py" line="2408" />
+      <location filename="../Project/Project.py" line="2390" />
+      <location filename="../Project/Project.py" line="2374" />
+      <location filename="../Project/Project.py" line="2367" />
       <source>Rename File</source>
       <translation>Přejmenovat soubor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8089" />
-      <location filename="../Project/Project.py" line="3909" />
-      <location filename="../Project/Project.py" line="2405" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2423" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nemůže být přejmenován.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2690" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2691" />
-      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2719" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2720" />
-      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2853" />
-      <source>Create project directory</source>
-      <translation>Vytvořit adresář projektu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2854" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Adresář projektu &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3682" />
-      <location filename="../Project/Project.py" line="2954" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3683" />
-      <location filename="../Project/Project.py" line="2955" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2995" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2996" />
-      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3463" />
-      <location filename="../Project/Project.py" line="3020" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3464" />
-      <location filename="../Project/Project.py" line="3021" />
-      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3712" />
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3144" />
-      <location filename="../Project/Project.py" line="3112" />
-      <location filename="../Project/Project.py" line="3094" />
-      <location filename="../Project/Project.py" line="3069" />
-      <location filename="../Project/Project.py" line="3031" />
-      <source>New Project</source>
-      <translation>Nový projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3032" />
-      <source>Add existing files to the project?</source>
-      <translation>Přidat existující soubory do projektu?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3713" />
-      <location filename="../Project/Project.py" line="3070" />
-      <source>Select Version Control System</source>
-      <translation>Vybrat Version Control System</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3174" />
-      <location filename="../Project/Project.py" line="3095" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>Chcete editovat parametry VCS příkazu?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3113" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Má být projekt přidán do repozitáře?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3150" />
-      <location filename="../Project/Project.py" line="3139" />
-      <source>None</source>
-      <translation>None</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3145" />
-      <source>Select version control system for the project</source>
-      <translation>Výběr verzovacího systému projektu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3356" />
-      <source>Translation Pattern</source>
-      <translation>Vzor překladu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3357" />
-      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
-      <translation>Zadejte vzor cesty pro soubory s překlady (použijte  '%language%' na místě s kódem jazyka):</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3661" />
-      <source>Open Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="8075" />
-      <location filename="../Project/Project.py" line="8069" />
-      <location filename="../Project/Project.py" line="8059" />
-      <location filename="../Project/Project.py" line="3894" />
-      <location filename="../Project/Project.py" line="3884" />
-      <location filename="../Project/Project.py" line="3663" />
+      <location filename="../Project/Project.py" line="3895" />
+      <location filename="../Project/Project.py" line="2391" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2409" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nemůže být přejmenován.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2676" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2677" />
+      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2705" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2706" />
+      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2839" />
+      <source>Create project directory</source>
+      <translation>Vytvořit adresář projektu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2840" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Adresář projektu &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3668" />
+      <location filename="../Project/Project.py" line="2940" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3669" />
+      <location filename="../Project/Project.py" line="2941" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2981" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2982" />
+      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3449" />
+      <location filename="../Project/Project.py" line="3006" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3450" />
+      <location filename="../Project/Project.py" line="3007" />
+      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3698" />
+      <location filename="../Project/Project.py" line="3159" />
+      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3098" />
+      <location filename="../Project/Project.py" line="3080" />
+      <location filename="../Project/Project.py" line="3055" />
+      <location filename="../Project/Project.py" line="3017" />
+      <source>New Project</source>
+      <translation>Nový projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3018" />
+      <source>Add existing files to the project?</source>
+      <translation>Přidat existující soubory do projektu?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3699" />
+      <location filename="../Project/Project.py" line="3056" />
+      <source>Select Version Control System</source>
+      <translation>Vybrat Version Control System</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3160" />
+      <location filename="../Project/Project.py" line="3081" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>Chcete editovat parametry VCS příkazu?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3099" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Má být projekt přidán do repozitáře?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3125" />
+      <source>None</source>
+      <translation>None</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3131" />
+      <source>Select version control system for the project</source>
+      <translation>Výběr verzovacího systému projektu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3342" />
+      <source>Translation Pattern</source>
+      <translation>Vzor překladu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3343" />
+      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
+      <translation>Zadejte vzor cesty pro soubory s překlady (použijte  '%language%' na místě s kódem jazyka):</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3647" />
+      <source>Open Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8061" />
+      <location filename="../Project/Project.py" line="8055" />
+      <location filename="../Project/Project.py" line="8045" />
+      <location filename="../Project/Project.py" line="3880" />
+      <location filename="../Project/Project.py" line="3870" />
+      <location filename="../Project/Project.py" line="3649" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="3892" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3878" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3947" />
+      <location filename="../Project/Project.py" line="3933" />
       <source>Close Project</source>
       <translation>Zavřít projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3948" />
+      <location filename="../Project/Project.py" line="3934" />
       <source>The current project has unsaved changes.</source>
       <translation>Aktuální projekt obsahuje neuložené změny.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4134" />
+      <location filename="../Project/Project.py" line="4098" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4149" />
-      <location filename="../Project/Project.py" line="4113" />
+      <location filename="../Project/Project.py" line="4135" />
+      <location filename="../Project/Project.py" line="4099" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Projekt obsahuje %n soubor se syntaktickými chybami.</numerusform>
@@ -63670,1268 +63622,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4793" />
       <source>New project</source>
       <translation>Nový projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4809" />
+      <location filename="../Project/Project.py" line="4795" />
       <source>&amp;New...</source>
       <translation>&amp;Nový...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4801" />
+      <source>Generate a new project</source>
+      <translation>Vygenerovat nový projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4803" />
+      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Nový...&lt;/b&gt;&lt;p&gt;Otevře se dialogové okno pro zadání informací o novém projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4813" />
+      <source>Open project</source>
+      <translation>Otevřít projekt</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4815" />
-      <source>Generate a new project</source>
-      <translation>Vygenerovat nový projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4817" />
-      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Nový...&lt;/b&gt;&lt;p&gt;Otevře se dialogové okno pro zadání informací o novém projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4827" />
-      <source>Open project</source>
-      <translation>Otevřít projekt</translation>
+      <source>&amp;Open...</source>
+      <translation>&amp;Otevřít...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4821" />
+      <source>Open an existing project</source>
+      <translation>Otevřít existující projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4823" />
+      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Otevřít....&lt;/b&gt;&lt;p&gt;Otevře existující projekt.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4829" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Otevřít...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4835" />
-      <source>Open an existing project</source>
-      <translation>Otevřít existující projekt</translation>
+      <source>Open remote project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4831" />
+      <source>Open (Remote)...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4837" />
-      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Otevřít....&lt;/b&gt;&lt;p&gt;Otevře existující projekt.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4843" />
-      <source>Open remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4845" />
-      <source>Open (Remote)...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4853" />
+      <location filename="../Project/Project.py" line="4839" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4862" />
+      <location filename="../Project/Project.py" line="4848" />
       <source>Reload project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4850" />
+      <source>Re&amp;load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4856" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4858" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4864" />
-      <source>Re&amp;load</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4870" />
-      <source>Reload the current project</source>
-      <translation type="unfinished" />
+      <source>Close project</source>
+      <translation>Zavřít projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4866" />
+      <source>&amp;Close</source>
+      <translation>&amp;Zavřít</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4872" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4878" />
-      <source>Close project</source>
-      <translation>Zavřít projekt</translation>
+      <source>Close the current project</source>
+      <translation>Uzavře aktuální projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4874" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Zavřít&lt;/b&gt;&lt;p&gt;Aktuální projekt se uzavře.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4880" />
-      <source>&amp;Close</source>
-      <translation>&amp;Zavřít</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4886" />
-      <source>Close the current project</source>
-      <translation>Uzavře aktuální projekt</translation>
+      <source>Save project</source>
+      <translation>Uložit projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5177" />
+      <location filename="../Project/Project.py" line="4882" />
+      <source>&amp;Save</source>
+      <translation>&amp;Uložit</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4888" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Zavřít&lt;/b&gt;&lt;p&gt;Aktuální projekt se uzavře.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4894" />
-      <source>Save project</source>
-      <translation>Uložit projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5191" />
-      <location filename="../Project/Project.py" line="4896" />
-      <source>&amp;Save</source>
-      <translation>&amp;Uložit</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Uložit aktuální projekt</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4890" />
+      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Uložit&lt;/b&gt;&lt;p&gt;Aktuální projekt se uloží.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
+      <source>Save project as</source>
+      <translation>Uložit projekt jako</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4898" />
+      <source>Save &amp;as...</source>
+      <translation>Uložit j&amp;ako...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4904" />
-      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Uložit&lt;/b&gt;&lt;p&gt;Aktuální projekt se uloží.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4910" />
-      <source>Save project as</source>
-      <translation>Uložit projekt jako</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4912" />
-      <source>Save &amp;as...</source>
-      <translation>Uložit j&amp;ako...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation>Uloží aktuální projekt do nového souboru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4920" />
+      <location filename="../Project/Project.py" line="4906" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Uložit jako&lt;/b&gt;&lt;p&gt;Uloží aktuální projekt do nového souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4929" />
+      <location filename="../Project/Project.py" line="4915" />
       <source>Save project as (Remote)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4931" />
+      <location filename="../Project/Project.py" line="4917" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4938" />
+      <location filename="../Project/Project.py" line="4924" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4927" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4957" />
+      <location filename="../Project/Project.py" line="4943" />
       <source>Add files to project</source>
       <translation>Přidat soubory do projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4959" />
+      <location filename="../Project/Project.py" line="4945" />
       <source>Add &amp;files...</source>
       <translation>&amp;Přidat soubory...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4965" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>Add files to the current project</source>
       <translation>Přidat soubory do aktuálního projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4967" />
+      <location filename="../Project/Project.py" line="4953" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přidat soubory...&lt;/b&gt;&lt;p&gt;Otevře dialog pri přidání souborů do aktuálního projektu. Místo pro přidání je definováno extenzí souborů.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4978" />
+      <location filename="../Project/Project.py" line="4964" />
       <source>Add directory to project</source>
       <translation>Přidat adresář do projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4980" />
+      <location filename="../Project/Project.py" line="4966" />
       <source>Add directory...</source>
       <translation>Přidat adresář...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4987" />
+      <location filename="../Project/Project.py" line="4973" />
       <source>Add a directory to the current project</source>
       <translation>Přidat adresář do aktuálního projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4990" />
+      <location filename="../Project/Project.py" line="4976" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přidat adresář...&lt;/b&gt;&lt;p&gt;Otevře dialog pro přičtení adresáře do aktuálního projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5000" />
+      <location filename="../Project/Project.py" line="4986" />
       <source>Add translation to project</source>
       <translation>Přidat překlad do projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5002" />
+      <location filename="../Project/Project.py" line="4988" />
       <source>Add &amp;translation...</source>
       <translation>Přida&amp;t překlad...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4995" />
+      <source>Add a translation to the current project</source>
+      <translation>Přidat překlad do aktuálního projektu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4998" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Přidat překlad&lt;/b&gt;&lt;p&gt;Otevře dialog pro přidání překladu do aktuálního projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5008" />
+      <source>Search new files</source>
+      <translation>Hledat nové soubory</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5009" />
-      <source>Add a translation to the current project</source>
-      <translation>Přidat překlad do aktuálního projektu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5012" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Přidat překlad&lt;/b&gt;&lt;p&gt;Otevře dialog pro přidání překladu do aktuálního projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5022" />
-      <source>Search new files</source>
-      <translation>Hledat nové soubory</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>&amp;Hledat nové soubory...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5015" />
+      <source>Search new files in the project directory.</source>
+      <translation>Hledat nové soubory v adresáři projektu.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5017" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5027" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5028" />
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5029" />
-      <source>Search new files in the project directory.</source>
-      <translation>Hledat nové soubory v adresáři projektu.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5031" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5042" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5048" />
+      <location filename="../Project/Project.py" line="5034" />
       <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5050" />
+      <location filename="../Project/Project.py" line="5036" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5059" />
+      <location filename="../Project/Project.py" line="5045" />
       <source>Project properties</source>
       <translation>Nastavení projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5061" />
+      <location filename="../Project/Project.py" line="5047" />
       <source>&amp;Properties...</source>
       <translation>&amp;Natavení...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5067" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Show the project properties</source>
       <translation>Zobrazit nastavení projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5069" />
+      <location filename="../Project/Project.py" line="5055" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nastavení...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací nastavení projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5078" />
+      <location filename="../Project/Project.py" line="5064" />
       <source>User project properties</source>
       <translation>Uživatelská nastavení projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5080" />
+      <location filename="../Project/Project.py" line="5066" />
       <source>&amp;User Properties...</source>
       <translation>Uživat&amp;elská nastavení...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5073" />
+      <source>Show the user specific project properties</source>
+      <translation>Zobrazit uživatelem definovaná nastavení projektu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5076" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Uživatelská nastavení...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací uživatelských nastavení projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5086" />
+      <source>Filetype Associations</source>
+      <translation>Asociace typů souborů</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5087" />
-      <source>Show the user specific project properties</source>
-      <translation>Zobrazit uživatelem definovaná nastavení projektu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5090" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Uživatelská nastavení...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací uživatelských nastavení projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5100" />
-      <source>Filetype Associations</source>
-      <translation>Asociace typů souborů</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation>Asociace typů souborů...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5108" />
+      <location filename="../Project/Project.py" line="5094" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5097" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5110" />
+      <source>Lexer Associations</source>
+      <translation>Spojení lexeru</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5111" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5124" />
-      <source>Lexer Associations</source>
-      <translation>Spojení lexeru</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation>Spojení lexeru...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5132" />
+      <location filename="../Project/Project.py" line="5118" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation>Zobrazit spojení lexeru projektu (přepíše výchozí)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5135" />
+      <location filename="../Project/Project.py" line="5121" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Spojení lexeru...&lt;/b&gt;&lt;p&gt;Zobrazuje dialog s editací spojení lexeru projektu. Tato spojení přepisují globální lexer spojení. Lexer je použit pro zvýraznění textu v editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5153" />
+      <location filename="../Project/Project.py" line="5139" />
       <source>Debugger Properties</source>
       <translation>Nastavení debugeru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5154" />
+      <location filename="../Project/Project.py" line="5140" />
       <source>Debugger &amp;Properties...</source>
       <translation>Nastavení &amp;debuggeru...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5160" />
+      <location filename="../Project/Project.py" line="5146" />
       <source>Show the debugger properties</source>
       <translation>Zobrazit nastavení debugeru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5162" />
+      <location filename="../Project/Project.py" line="5148" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nastavení debugeru...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací nastavení debugeru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5158" />
       <source>Load</source>
       <translation>Načíst</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5173" />
+      <location filename="../Project/Project.py" line="5159" />
       <source>&amp;Load</source>
       <translation>&amp;Načíst</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5179" />
+      <location filename="../Project/Project.py" line="5165" />
       <source>Load the debugger properties</source>
       <translation>Načíst nastavení debugeru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5181" />
+      <location filename="../Project/Project.py" line="5167" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Načíst nastavení debugeru&lt;/b&gt;&lt;p&gt;Načtou se nastavení debugeru do projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
+      <location filename="../Project/Project.py" line="5176" />
       <source>Save</source>
       <translation>Uložit</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5197" />
+      <location filename="../Project/Project.py" line="5183" />
       <source>Save the debugger properties</source>
       <translation>Uložit nastavení debugeru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5199" />
+      <location filename="../Project/Project.py" line="5185" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Uložit nastavení debugeru&lt;/b&gt;&lt;p&gt;Uloží nastavení debugeru definovaná v projektu..&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5208" />
+      <location filename="../Project/Project.py" line="5194" />
       <source>Delete</source>
       <translation>Smazat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5209" />
+      <location filename="../Project/Project.py" line="5195" />
       <source>&amp;Delete</source>
       <translation>Sma&amp;zat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5215" />
+      <location filename="../Project/Project.py" line="5201" />
       <source>Delete the debugger properties</source>
       <translation>Smazat nastavení debugeru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5217" />
+      <location filename="../Project/Project.py" line="5203" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Smazat nastavení debugeru&lt;/b&gt;&lt;p&gt;Smaže se soubor obsahující nastavení debugeru v daném projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5227" />
+      <location filename="../Project/Project.py" line="5213" />
       <source>Reset</source>
       <translation />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5228" />
+      <location filename="../Project/Project.py" line="5214" />
       <source>&amp;Reset</source>
       <translation>&amp;Reset</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5234" />
+      <location filename="../Project/Project.py" line="5220" />
       <source>Reset the debugger properties</source>
       <translation>Reset nastavení debugeru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5236" />
+      <location filename="../Project/Project.py" line="5222" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reset nastavení debugeru&lt;/b&gt;&lt;p&gt;Zresetuje nastavení debugeru v projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5252" />
-      <location filename="../Project/Project.py" line="5251" />
+      <location filename="../Project/Project.py" line="5238" />
+      <location filename="../Project/Project.py" line="5237" />
       <source>Load session</source>
       <translation>Načíst relaci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5258" />
+      <location filename="../Project/Project.py" line="5244" />
       <source>Load the projects session file.</source>
       <translation>Načíst soubor s relací projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5260" />
+      <location filename="../Project/Project.py" line="5246" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Načíst relaci&lt;/b&gt;&lt;p&gt;Načte soubor s relací projektu. Relace obsahuje následující údaje:&lt;br&gt;- všechny otevřené zdrojové soubory&lt;br&gt;- všechny breakpointy&lt;br&gt;- argumenty příkazové řádky &lt;br&gt;- pracovní adresář&lt;br&gt;- příznak výjimky&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5276" />
-      <location filename="../Project/Project.py" line="5275" />
+      <location filename="../Project/Project.py" line="5262" />
+      <location filename="../Project/Project.py" line="5261" />
       <source>Save session</source>
       <translation>Uložit relaci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5282" />
+      <location filename="../Project/Project.py" line="5268" />
       <source>Save the projects session file.</source>
       <translation>Uložit soubor s relací projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5284" />
+      <location filename="../Project/Project.py" line="5270" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Uložit relaci&lt;/b&gt;&lt;p&gt;Uloží soubor s relací projektu. Relace obsahuje následující údaje:&lt;br&gt;- všechny otevřené zdrojové soubory&lt;br&gt;- všechny breakpointy&lt;br&gt;- argumenty příkazové řádky &lt;br&gt;- pracovní adresář&lt;br&gt;- příznak výjimky&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5300" />
-      <location filename="../Project/Project.py" line="5299" />
+      <location filename="../Project/Project.py" line="5286" />
+      <location filename="../Project/Project.py" line="5285" />
       <source>Delete session</source>
       <translation>Smazat relaci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5306" />
+      <location filename="../Project/Project.py" line="5292" />
       <source>Delete the projects session file.</source>
       <translation>Smaže soubor s relací projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5308" />
+      <location filename="../Project/Project.py" line="5294" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Smazat relaci&lt;/b&gt;&lt;p&gt;Smaže soubor s relací projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5323" />
+      <location filename="../Project/Project.py" line="5309" />
       <source>Code Metrics</source>
       <translation>Metriky kódu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5324" />
+      <location filename="../Project/Project.py" line="5310" />
       <source>&amp;Code Metrics...</source>
       <translation>Metriky &amp;kódu...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5317" />
+      <source>Show some code metrics for the project.</source>
+      <translation>Zobrazit metriky kódu projektu.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5320" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Metriky kódu...&lt;/b&gt;&lt;p&gt;Zobrazí se metriky kódu všech python souborů v projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5330" />
+      <source>Python Code Coverage</source>
+      <translation>Pokrytí python kódu</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5331" />
-      <source>Show some code metrics for the project.</source>
-      <translation>Zobrazit metriky kódu projektu.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5334" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Metriky kódu...&lt;/b&gt;&lt;p&gt;Zobrazí se metriky kódu všech python souborů v projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5344" />
-      <source>Python Code Coverage</source>
-      <translation>Pokrytí python kódu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation>Pokr&amp;ytí kódu...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5338" />
+      <source>Show code coverage information for the project.</source>
+      <translation>Zobrazit informace pokrytí kódu projektu.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5341" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Pokrytí kódu...&lt;/b&gt;&lt;p&gt;Zobrazí informace o pokrytí kódu ve všech python souborech projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6775" />
+      <location filename="../Project/Project.py" line="6762" />
+      <location filename="../Project/Project.py" line="5351" />
+      <source>Profile Data</source>
+      <translation>Profilovat data</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5352" />
-      <source>Show code coverage information for the project.</source>
-      <translation>Zobrazit informace pokrytí kódu projektu.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5355" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Pokrytí kódu...&lt;/b&gt;&lt;p&gt;Zobrazí informace o pokrytí kódu ve všech python souborech projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6789" />
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="5365" />
-      <source>Profile Data</source>
-      <translation>Profilovat data</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Profilovat data...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5373" />
+      <location filename="../Project/Project.py" line="5359" />
       <source>Show profiling data for the project.</source>
       <translation>Zobrazit profilování dat projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5376" />
+      <location filename="../Project/Project.py" line="5362" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilovat data&lt;/b&gt;&lt;p&gt;Zobrazí se profilování dat projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="6827" />
+      <location filename="../Project/Project.py" line="5377" />
       <source>Application Diagram</source>
       <translation>Diagram aplikace</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5392" />
+      <location filename="../Project/Project.py" line="5378" />
       <source>&amp;Application Diagram...</source>
       <translation>Diagram &amp;aplikace...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5399" />
+      <location filename="../Project/Project.py" line="5385" />
       <source>Show a diagram of the project.</source>
       <translation>Zobrazit diagram projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5402" />
+      <location filename="../Project/Project.py" line="5388" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diagram aplikace...&lt;/b&gt;&lt;p&gt;Zobrazí diagram projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5411" />
+      <location filename="../Project/Project.py" line="5397" />
       <source>Load Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5412" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5418" />
+      <location filename="../Project/Project.py" line="5404" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5420" />
+      <location filename="../Project/Project.py" line="5406" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
-      <location filename="../Project/Project.py" line="6954" />
-      <location filename="../Project/Project.py" line="5435" />
+      <location filename="../Project/Project.py" line="6995" />
+      <location filename="../Project/Project.py" line="6940" />
+      <location filename="../Project/Project.py" line="5421" />
       <source>Create Package List</source>
       <translation>Vytvořit seznam balíčků</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5437" />
+      <location filename="../Project/Project.py" line="5423" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished">Vytvořit Plugin &amp;archiv</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5444" />
+      <location filename="../Project/Project.py" line="5430" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="5433" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7080" />
-      <location filename="../Project/Project.py" line="5458" />
+      <location filename="../Project/Project.py" line="7066" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5460" />
+      <location filename="../Project/Project.py" line="5446" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5452" />
+      <source>Create eric plugin archive files.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5454" />
+      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5466" />
-      <source>Create eric plugin archive files.</source>
+      <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5468" />
-      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5480" />
-      <source>Create Plugin Archives (Snapshot)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5489" />
+      <location filename="../Project/Project.py" line="5475" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5492" />
+      <location filename="../Project/Project.py" line="5478" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7536" />
-      <location filename="../Project/Project.py" line="7507" />
-      <location filename="../Project/Project.py" line="7461" />
-      <location filename="../Project/Project.py" line="7413" />
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="5497" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5512" />
+      <location filename="../Project/Project.py" line="5498" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5518" />
+      <location filename="../Project/Project.py" line="5504" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5520" />
+      <location filename="../Project/Project.py" line="5506" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7513" />
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="7499" />
+      <location filename="../Project/Project.py" line="5516" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5531" />
+      <location filename="../Project/Project.py" line="5517" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5524" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5541" />
+      <location filename="../Project/Project.py" line="5527" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5559" />
+      <location filename="../Project/Project.py" line="5545" />
       <source>Create SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5560" />
+      <location filename="../Project/Project.py" line="5546" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5553" />
+      <source>Create a SBOM file of the project dependencies.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5556" />
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5567" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5570" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5581" />
       <source>Clear Byte Code Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5582" />
+      <location filename="../Project/Project.py" line="5568" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5589" />
+      <location filename="../Project/Project.py" line="5575" />
       <source>Clear the byte code caches of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5592" />
+      <location filename="../Project/Project.py" line="5578" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5608" />
+      <location filename="../Project/Project.py" line="5594" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5609" />
+      <location filename="../Project/Project.py" line="5595" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5601" />
+      <source>Show some information about 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5603" />
+      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5615" />
-      <source>Show some information about 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5617" />
-      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5629" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5630" />
+      <location filename="../Project/Project.py" line="5616" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5637" />
+      <location filename="../Project/Project.py" line="5623" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5640" />
+      <location filename="../Project/Project.py" line="5626" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5652" />
+      <location filename="../Project/Project.py" line="5638" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5653" />
+      <location filename="../Project/Project.py" line="5639" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5660" />
+      <location filename="../Project/Project.py" line="5646" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5651" />
+      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5664" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5665" />
-      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <source>Code Formatting &amp;Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5672" />
+      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5678" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5679" />
-      <source>Code Formatting &amp;Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5686" />
-      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5792" />
       <location filename="../Project/Project.py" line="5692" />
-      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <location filename="../Project/Project.py" line="5807" />
-      <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5706" />
-      <location filename="../Project/Project.py" line="5705" />
+      <location filename="../Project/Project.py" line="5691" />
       <source>Configure</source>
       <translation type="unfinished">Konfigurovat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5713" />
+      <location filename="../Project/Project.py" line="5699" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5718" />
+      <location filename="../Project/Project.py" line="5704" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5734" />
+      <location filename="../Project/Project.py" line="5720" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5735" />
+      <location filename="../Project/Project.py" line="5721" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5741" />
+      <location filename="../Project/Project.py" line="5727" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5743" />
+      <location filename="../Project/Project.py" line="5729" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5756" />
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5763" />
+      <location filename="../Project/Project.py" line="5749" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5752" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5766" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5780" />
-      <location filename="../Project/Project.py" line="5779" />
+      <location filename="../Project/Project.py" line="5765" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5787" />
+      <location filename="../Project/Project.py" line="5773" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5814" />
+      <location filename="../Project/Project.py" line="5800" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5820" />
+      <location filename="../Project/Project.py" line="5806" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5836" />
+      <location filename="../Project/Project.py" line="5822" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5823" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5830" />
+      <source>Install the project into the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5833" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5844" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5851" />
+      <source>Configure the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5854" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5864" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5865" />
-      <source>Configure the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5868" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5878" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5871" />
+      <source>Upgrade the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5873" />
+      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5885" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5887" />
-      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5900" />
+      <location filename="../Project/Project.py" line="5886" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5906" />
+      <location filename="../Project/Project.py" line="5892" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5908" />
+      <location filename="../Project/Project.py" line="5894" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5926" />
+      <source>&amp;Project</source>
+      <translation>&amp;Projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5927" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Otevřít poslední p&amp;rojekty</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5929" />
+      <source>Session</source>
+      <translation>Relace</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5930" />
+      <source>Debugger</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5931" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5933" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5934" />
+      <source>&amp;Version Control</source>
+      <translation>Kontrola &amp;verzí</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5938" />
+      <source>Chec&amp;k</source>
+      <translation>Zkontro&amp;lovat</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5940" />
-      <source>&amp;Project</source>
-      <translation>&amp;Projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5941" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Otevřít poslední p&amp;rojekty</translation>
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5942" />
+      <source>Sho&amp;w</source>
+      <translation>Zo&amp;brazit</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Session</source>
-      <translation>Relace</translation>
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagramy</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
-      <source>Debugger</source>
-      <translation />
+      <source>Pac&amp;kagers</source>
+      <translation>Balíč&amp;ky</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
+      <source>Source &amp;Documentation</source>
+      <translation>Zd&amp;rojová dokumentace</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Project-T&amp;ools</source>
+      <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
-      <source>&amp;Version Control</source>
-      <translation>Kontrola &amp;verzí</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5952" />
-      <source>Chec&amp;k</source>
-      <translation>Zkontro&amp;lovat</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5954" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5956" />
-      <source>Sho&amp;w</source>
-      <translation>Zo&amp;brazit</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5957" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagramy</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5958" />
-      <source>Pac&amp;kagers</source>
-      <translation>Balíč&amp;ky</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5959" />
-      <source>Source &amp;Documentation</source>
-      <translation>Zd&amp;rojová dokumentace</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5961" />
-      <source>Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6124" />
-      <location filename="../Project/Project.py" line="6122" />
+      <location filename="../Project/Project.py" line="6110" />
+      <location filename="../Project/Project.py" line="6108" />
       <source>Project</source>
       <translation>Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6206" />
+      <location filename="../Project/Project.py" line="6192" />
       <source>&amp;Clear</source>
       <translation>&amp;Vyčistit</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6403" />
+      <location filename="../Project/Project.py" line="6389" />
       <source>Search New Files</source>
       <translation>Hledat nové soubory</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6404" />
+      <location filename="../Project/Project.py" line="6390" />
       <source>There were no new files found to be added.</source>
       <translation>Nebyly nalezeny žádné soubory, které je možné přidat.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6565" />
-      <location filename="../Project/Project.py" line="6552" />
+      <location filename="../Project/Project.py" line="6551" />
+      <location filename="../Project/Project.py" line="6538" />
       <source>Version Control System</source>
       <translation>Version Control System</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6553" />
+      <location filename="../Project/Project.py" line="6539" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6566" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Vybrané VCS &lt;b&gt;{0}&lt;/b&gt; nebylo nalezeno.&lt;br/&gt;Kontrola verzí vypnuta.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="6709" />
+      <source>Coverage Data</source>
+      <translation>Datové pokrytí</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6763" />
+      <location filename="../Project/Project.py" line="6710" />
+      <source>There is no main script defined for the current project. Aborting</source>
+      <translation>V aktuálním projektu nebyl určen hlavní skript. Zrušeno</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6722" />
+      <source>Code Coverage</source>
+      <translation>Pokrytí kódu</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="6723" />
-      <source>Coverage Data</source>
-      <translation>Datové pokrytí</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6777" />
-      <location filename="../Project/Project.py" line="6724" />
-      <source>There is no main script defined for the current project. Aborting</source>
-      <translation>V aktuálním projektu nebyl určen hlavní skript. Zrušeno</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6736" />
-      <source>Code Coverage</source>
-      <translation>Pokrytí kódu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Prosím, vyberte soubor pokrytí</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6790" />
+      <location filename="../Project/Project.py" line="6776" />
       <source>Please select a profile file</source>
       <translation>Prosím, vyberte soubor s profilem</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6842" />
+      <location filename="../Project/Project.py" line="6828" />
       <source>Include module names?</source>
       <translation>Včetně jmen modulů?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6955" />
+      <location filename="../Project/Project.py" line="6941" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;PKGLIST&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Přepsat jej?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7010" />
+      <location filename="../Project/Project.py" line="6996" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;PKGLIST&lt;/b&gt; nelze vytvořit.&lt;/p&gt;&lt;p&gt;Důvod: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7321" />
-      <location filename="../Project/Project.py" line="7277" />
-      <location filename="../Project/Project.py" line="7227" />
-      <location filename="../Project/Project.py" line="7216" />
-      <location filename="../Project/Project.py" line="7198" />
-      <location filename="../Project/Project.py" line="7151" />
-      <location filename="../Project/Project.py" line="7121" />
-      <location filename="../Project/Project.py" line="7093" />
-      <location filename="../Project/Project.py" line="7063" />
-      <location filename="../Project/Project.py" line="7048" />
-      <location filename="../Project/Project.py" line="7031" />
+      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7137" />
+      <location filename="../Project/Project.py" line="7107" />
+      <location filename="../Project/Project.py" line="7079" />
+      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7034" />
+      <location filename="../Project/Project.py" line="7017" />
       <source>Create Plugin Archive</source>
       <translation>Vytvořit Plugin archiv</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7032" />
+      <location filename="../Project/Project.py" line="7018" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>Projekt nemá definován hlavní skript. Zrušeno...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7035" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7064" />
+      <location filename="../Project/Project.py" line="7050" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7072" />
+      <location filename="../Project/Project.py" line="7058" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7073" />
+      <location filename="../Project/Project.py" line="7059" />
       <source>Abort</source>
       <translation type="unfinished">Přerušit</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7076" />
+      <location filename="../Project/Project.py" line="7062" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7094" />
+      <location filename="../Project/Project.py" line="7080" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7122" />
+      <location filename="../Project/Project.py" line="7108" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7152" />
+      <location filename="../Project/Project.py" line="7138" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7199" />
+      <location filename="../Project/Project.py" line="7185" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit do archivu. Ingorováno.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7217" />
+      <location filename="../Project/Project.py" line="7203" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7228" />
+      <location filename="../Project/Project.py" line="7214" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7278" />
+      <location filename="../Project/Project.py" line="7264" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Plugin soubor &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7322" />
+      <location filename="../Project/Project.py" line="7308" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7414" />
+      <location filename="../Project/Project.py" line="7400" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7462" />
+      <location filename="../Project/Project.py" line="7448" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7508" />
+      <location filename="../Project/Project.py" line="7494" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7516" />
+      <location filename="../Project/Project.py" line="7502" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
+      <location filename="../Project/Project.py" line="7507" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7537" />
+      <location filename="../Project/Project.py" line="7523" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7975" />
+      <location filename="../Project/Project.py" line="7961" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7976" />
+      <location filename="../Project/Project.py" line="7962" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8057" />
+      <location filename="../Project/Project.py" line="8043" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8088" />
-      <location filename="../Project/Project.py" line="8073" />
+      <location filename="../Project/Project.py" line="8074" />
+      <location filename="../Project/Project.py" line="8059" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65180,9 +65132,9 @@
   <context>
     <name>ProjectFormsBrowser</name>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1141" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1092" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1055" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1131" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
       <location filename="../Project/ProjectFormsBrowser.py" line="142" />
       <location filename="../Project/ProjectFormsBrowser.py" line="77" />
       <source>Forms</source>
@@ -65455,102 +65407,102 @@
       <translation>Kompilovat formuláře</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="701" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="732" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="719" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="700" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="683" />
       <source>New Form</source>
       <translation>Nový formulář</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="685" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
       <source>Select a form type:</source>
       <translation>Vybrat typ formuláře:</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="703" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="702" />
       <source>Qt User-Interface Files (*.ui);;All Files (*)</source>
       <translation>Qt User-Interface soubory (*.ui);;Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="721" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Soubor již existuje! Přepsat jej?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="734" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
       <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nový soubor s formulářem &lt;b&gt;{0}&lt;/b&gt; se nepodařilo vytvořit..&lt;br&gt;Problém: {1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectFormsBrowser.py" line="759" />
+      <source>Delete forms</source>
+      <translation>Smazat formuláře</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFormsBrowser.py" line="760" />
-      <source>Delete forms</source>
-      <translation>Smazat formuláře</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="761" />
       <source>Do you really want to delete these forms from the project?</source>
       <translation>Opravdu chcete odebrat tyto formuláře z projektu?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="893" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="882" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="875" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="888" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="877" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="870" />
       <source>Form Compilation</source>
       <translation>Kompilace formuláře</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="876" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="871" />
       <source>The compilation of the form file was successful.</source>
       <translation>Kompilace souboru s formulářem byla úspěšná.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="883" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="878" />
       <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Kompilace formuláře se nepodařila.&lt;/p&gt;&lt;p&gt;Důvod: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="894" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="889" />
       <source>The compilation of the form file failed.</source>
       <translation>Kompilace souboru s formulářem selhala.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="986" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="977" />
       <source>Process Generation Error</source>
       <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="987" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="978" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Nelze spustit {0}.&lt;br&gt;Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1074" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1037" />
       <source>Compiling forms...</source>
       <translation>Kompilovat formuláře...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1134" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1084" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1047" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1075" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1038" />
       <source>Abort</source>
       <translation>Přerušit</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1137" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1087" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1050" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1127" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1078" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1041" />
       <source>%v/%m Forms</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1133" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1123" />
       <source>Determining changed forms...</source>
       <translation>Určení změněných formulářů...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1163" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1153" />
       <source>Compiling changed forms...</source>
       <translation>Kompilování změněných formulářů...</translation>
     </message>
@@ -66002,9 +65954,9 @@
   <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="956" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="880" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="844" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="940" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="864" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="828" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="87" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="68" />
       <source>Resources</source>
@@ -66031,219 +65983,219 @@
       <translation type="unfinished">Prohlížeč zdrojů</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="165" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="163" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="150" />
       <source>Compile resource</source>
       <translation>Kompilovat Resource</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="396" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="385" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="344" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="333" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="247" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="235" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="172" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="154" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="384" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="373" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="334" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="323" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="241" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="229" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="170" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
       <source>Compile all resources</source>
       <translation>Kompilovat všechny Resource</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="389" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="337" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="296" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="239" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="158" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="377" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="327" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="288" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="233" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="156" />
       <source>Configure rcc Compiler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="308" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="300" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="179" />
       <source>Open</source>
       <translation>Otevřít</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
       <source>Rename file</source>
       <translation>Přejmenovat soubor</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="349" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="310" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="339" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="302" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
       <source>Remove from project</source>
       <translation>Odebrat z projektu</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="351" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="187" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="341" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="304" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
       <source>Delete</source>
       <translation>Smazat</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="345" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="249" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="236" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="200" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="195" />
+      <source>New resource...</source>
+      <translation>Nový Resource...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="390" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="346" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="254" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
+      <source>Add resources...</source>
+      <translation>Přidat resources...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="393" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="348" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="257" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="206" />
+      <source>Add resources directory...</source>
+      <translation>Přidat adresář se zdroji...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="353" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="211" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectResourcesBrowser.py" line="355" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="255" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="242" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="199" />
-      <source>New resource...</source>
-      <translation>Nový Resource...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="402" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="356" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="260" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="208" />
-      <source>Add resources...</source>
-      <translation>Přidat resources...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="405" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="358" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="210" />
-      <source>Add resources directory...</source>
-      <translation>Přidat adresář se zdroji...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="363" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="269" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="365" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="217" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="213" />
       <source>Copy Path to Clipboard</source>
       <translation>Kopírovat cestu do schránky</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="410" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="367" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="315" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="272" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="219" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="398" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="357" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="307" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="266" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
       <source>Expand all directories</source>
       <translation>Rozložit všechny adresáře</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="413" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="369" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="317" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="274" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="220" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="401" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="359" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="309" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="268" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="216" />
       <source>Collapse all directories</source>
       <translation>Složit všechny adresáře</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="416" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="372" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="320" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="277" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="222" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="404" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="362" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="271" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="218" />
       <source>Configure...</source>
       <translation>Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="303" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="292" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="295" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="284" />
       <source>Compile resources</source>
       <translation>Kompilovat Resource</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="595" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="574" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="555" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="583" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="562" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="543" />
       <source>New Resource</source>
       <translation>Nový Resource</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="557" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="545" />
       <source>Qt Resource Files (*.qrc)</source>
       <translation>Qt Resource soubory (*.qrc)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="575" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="563" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Soubor již existuje! Přepsat jej?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="596" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="584" />
       <source>&lt;p&gt;The new resource file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nový soubor s resource &lt;b&gt;{0}&lt;/b&gt; se nepodařilo vytvořit..&lt;br&gt;Problém: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="622" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="610" />
       <source>Delete resources</source>
       <translation>Smazat Resource</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="623" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="611" />
       <source>Do you really want to delete these resources from the project?</source>
       <translation>Opravdu chcete odebrat tyto Resource z projektu?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="717" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="708" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="701" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="705" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="696" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="689" />
       <source>Resource Compilation</source>
       <translation>Kompilovat Resource</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="702" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="690" />
       <source>The compilation of the resource file was successful.</source>
       <translation>Kompilace souboru Resource byla úspěšná.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="709" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="697" />
       <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Kompilace Resource se nepodařila.&lt;/p&gt;&lt;p&gt;Důvod: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="718" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="706" />
       <source>The compilation of the resource file failed.</source>
       <translation>Kompliace Resource souboru selhala.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="805" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="789" />
       <source>Process Generation Error</source>
       <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="806" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="790" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Nelze spustit {0}.&lt;br&gt;Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="871" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="835" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="855" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="819" />
       <source>Compiling resources...</source>
       <translation>Kompilovat resources...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="949" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="872" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="836" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="933" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="856" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="820" />
       <source>Abort</source>
       <translation>Přerušit</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="952" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="875" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="839" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="936" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="859" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="823" />
       <source>%v/%m Resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="948" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="932" />
       <source>Determining changed resources...</source>
       <translation>Určení změněných resources...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="986" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="970" />
       <source>Compiling changed resources...</source>
       <translation>Kompilování změněných resources...</translation>
     </message>
@@ -66779,250 +66731,250 @@
       <translation type="unfinished">Prohlížeč překladů</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="514" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="456" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="296" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="238" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="213" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="182" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="508" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="236" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="180" />
       <source>Open in Editor</source>
       <translation>Otevřít v editoru</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="255" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="253" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation</source>
       <translation>Generovat překlad</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="193" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="263" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="191" />
       <source>Generate translation (with obsolete)</source>
       <translation>Generovat překlad (původní)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="580" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="551" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="274" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="199" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="572" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="543" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="378" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="272" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="197" />
       <source>Generate all translations</source>
       <translation>Generovat všechny překlady</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="581" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="281" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
+      <source>Generate all translations (with obsolete)</source>
+      <translation>Generovat všechny překlady (původní)</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="446" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="207" />
+      <source>Open in Qt-Linguist</source>
+      <translation>Otevřít v  Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="301" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <source>Release translation</source>
+      <translation>Zveřejnit překlad</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="589" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="391" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="283" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
-      <source>Generate all translations (with obsolete)</source>
-      <translation>Generovat všechny překlady (původní)</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="452" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
-      <source>Open in Qt-Linguist</source>
-      <translation>Otevřít v  Qt-Linguist</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
-      <source>Release translation</source>
-      <translation>Zveřejnit překlad</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="597" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="560" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="399" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="363" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="552" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="395" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="359" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Release all translations</source>
       <translation>Zveřejnit všechny překlady</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="226" />
       <source>Preview translation</source>
       <translation>Náhled překladu</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="368" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="232" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="557" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="364" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
       <source>Preview all translations</source>
       <translation>Náhled všech překladů</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="481" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="374" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="246" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="475" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="370" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="244" />
       <source>Extract messages</source>
       <translation>Extrahovat zprávy</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="291" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="289" />
       <source>Open</source>
       <translation type="unfinished">Otevřít</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="319" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Remove from project</source>
       <translation>Odebrat z projektu</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="595" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="526" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="320" />
+      <source>Delete</source>
+      <translation>Smazat</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="600" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="402" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="324" />
+      <source>New translation...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="603" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="532" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="322" />
-      <source>Delete</source>
-      <translation>Smazat</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="608" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="406" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="326" />
-      <source>New translation...</source>
-      <translation type="unfinished" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="327" />
+      <source>Add translation files...</source>
+      <translation>Přidat soubory s překladem...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="607" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="609" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Kopírovat cestu do schránky</translation>
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="611" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="329" />
-      <source>Add translation files...</source>
-      <translation>Přidat soubory s překladem...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="615" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="413" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="617" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Kopírovat cestu do schránky</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="619" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="535" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="416" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="338" />
       <source>Configure...</source>
       <translation>Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="490" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="440" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="484" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
       <source>Generate translations</source>
       <translation>Generovat překlady</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="500" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="445" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
       <source>Generate translations (with obsolete)</source>
       <translation>Generovat překlady (původní)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="515" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="455" />
       <source>Release translations</source>
       <translation>Zveřejnit překlady</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
       <source>Preview translations</source>
       <translation>Náhled překladů</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="882" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="866" />
       <source>Delete translation files</source>
       <translation>Smazat soubory s překlady</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="883" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="867" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation>Opravdu chcete odebrat tyto soubory s překlady z projektu?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1582" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1051" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1011" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1560" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1035" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="995" />
       <source>Write temporary project file</source>
       <translation>Zapsat dočasný soubor projektu</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1583" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1307" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1012" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1561" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1287" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="996" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Nebyly vybrány žádné soubory s překlady (*.ts).</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1052" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1036" />
       <source>&lt;p&gt;The temporary project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Do dočasného souboru projektu &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1306" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1189" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1177" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1286" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1173" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1161" />
       <source>Translation file generation</source>
       <translation>Generování souboru s překladem</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1178" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1162" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation>Generování souboru s překladem (*.ts) bylo úspěšné.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1184" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1168" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1190" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1174" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1612" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1360" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1590" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1388" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1340" />
       <source>Process Generation Error</source>
       <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1361" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1389" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1341" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Nelze spustit {0}.&lt;br&gt;Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1497" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1479" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1477" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1459" />
       <source>Translation file release</source>
       <translation>Zveřejnění souboru s překladem</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1480" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1460" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation>Zveřejnění souboru s překladem (*.qm) bylo úspěšné.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1498" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1478" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation>Zveřejnění souboru s překladem (*.qm) selhalo.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1613" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1591" />
       <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nemohu spustit zveřejnění.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -69586,38 +69538,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="214" />
+      <location filename="../UI/PythonAstViewer.py" line="216" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="224" />
+      <location filename="../UI/PythonAstViewer.py" line="226" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="230" />
+      <location filename="../UI/PythonAstViewer.py" line="232" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="248" />
+      <location filename="../UI/PythonAstViewer.py" line="250" />
       <source>Module</source>
       <translation type="unfinished">Modul</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="280" />
+      <location filename="../UI/PythonAstViewer.py" line="282" />
       <source>{0}: {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="297" />
-      <location filename="../UI/PythonAstViewer.py" line="287" />
+      <location filename="../UI/PythonAstViewer.py" line="299" />
+      <location filename="../UI/PythonAstViewer.py" line="289" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="304" />
+      <location filename="../UI/PythonAstViewer.py" line="306" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -71757,7 +71709,7 @@
   <context>
     <name>QtPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="154" />
+      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="139" />
       <source>Sample: {0}designer{1}</source>
       <translation type="unfinished" />
     </message>
@@ -71801,7 +71753,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Tools Directory:</source>
       <translation type="unfinished" />
     </message>
@@ -71886,7 +71837,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Virtual Environment:</source>
       <translation type="unfinished" />
     </message>
@@ -71894,7 +71844,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Select the virtual environment to be used</source>
       <translation type="unfinished" />
     </message>
@@ -71902,7 +71851,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to open the virtual environment manager dialog</source>
       <translation type="unfinished" />
     </message>
@@ -71910,7 +71858,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to refresh the list of vitual environments</source>
       <translation type="unfinished" />
     </message>
@@ -71939,7 +71886,6 @@
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Generate imports relative to '.'</source>
       <translation type="unfinished" />
     </message>
@@ -71972,26 +71918,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>pyside2-uic Options</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>PySide6</source>
       <translation type="unfinished" />
     </message>
@@ -87846,64 +87772,64 @@
       <translation>Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="575" />
+      <location filename="../Templates/TemplateViewer.py" line="577" />
       <source>Remove Template</source>
       <translation>Odebrat šablonu</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="576" />
+      <location filename="../Templates/TemplateViewer.py" line="578" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Opravdu chcete odebrat &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="604" />
+      <location filename="../Templates/TemplateViewer.py" line="606" />
       <source>Import Templates</source>
       <translation>Importovat šablony</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="621" />
-      <location filename="../Templates/TemplateViewer.py" line="606" />
+      <location filename="../Templates/TemplateViewer.py" line="623" />
+      <location filename="../Templates/TemplateViewer.py" line="608" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
-      <location filename="../Templates/TemplateViewer.py" line="619" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
+      <location filename="../Templates/TemplateViewer.py" line="621" />
       <source>Export Templates</source>
       <translation>Exportovat šablony</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="654" />
+      <location filename="../Templates/TemplateViewer.py" line="656" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="655" />
+      <location filename="../Templates/TemplateViewer.py" line="657" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="675" />
+      <location filename="../Templates/TemplateViewer.py" line="677" />
       <source>Template Help</source>
       <translation>Nápověda šablony</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="676" />
+      <location filename="../Templates/TemplateViewer.py" line="678" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="938" />
+      <location filename="../Templates/TemplateViewer.py" line="940" />
       <source>Edit Template Group</source>
       <translation>Editovat skupinu šablon</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="939" />
+      <location filename="../Templates/TemplateViewer.py" line="941" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Skupina šablon se jménem &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;</translation>
     </message>
@@ -91363,2587 +91289,2571 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="263" />
+      <location filename="../UI/UserInterface.py" line="265" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="319" />
+      <location filename="../UI/UserInterface.py" line="321" />
       <source>Initializing Plugin Manager...</source>
       <translation>Inicializace Plugin manažera...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="327" />
+      <location filename="../UI/UserInterface.py" line="329" />
       <source>Generating Main User Interface...</source>
       <translation>Generování hlavního uživatelského rozhraní...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="386" />
       <location filename="../UI/UserInterface.py" line="384" />
-      <location filename="../UI/UserInterface.py" line="382" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="593" />
+      <location filename="../UI/UserInterface.py" line="595" />
       <source>Initializing Tools...</source>
       <translation>Inicializace nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="605" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Registering Objects...</source>
       <translation>Registrování objektů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="640" />
+      <location filename="../UI/UserInterface.py" line="642" />
       <source>Initializing Actions...</source>
       <translation>Inicializace akcí...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="643" />
+      <location filename="../UI/UserInterface.py" line="645" />
       <source>Initializing Menus...</source>
       <translation>Inicializace menu...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="648" />
       <source>Initializing Toolbars...</source>
       <translation>Inicializace nástrojových lišt...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Statusbar...</source>
       <translation>Inicializace statusbaru...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="676" />
       <location filename="../UI/UserInterface.py" line="674" />
-      <location filename="../UI/UserInterface.py" line="672" />
       <source>Initializing Single Application Server...</source>
       <translation>Inicializace jednouživatelského aplikačního serveru...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="683" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Activating Plugins...</source>
       <translation>Aktivace pluginů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="688" />
+      <location filename="../UI/UserInterface.py" line="690" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="692" />
+      <location filename="../UI/UserInterface.py" line="694" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
+      <location filename="../UI/UserInterface.py" line="705" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Obnovit manažer nástrojových lišt...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="714" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="726" />
+      <location filename="../UI/UserInterface.py" line="728" />
       <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="732" />
+      <location filename="../UI/UserInterface.py" line="734" />
       <source>Reading Templates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="738" />
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2212" />
-      <location filename="../UI/UserInterface.py" line="1099" />
+      <location filename="../UI/UserInterface.py" line="2214" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2258" />
-      <location filename="../UI/UserInterface.py" line="1109" />
+      <location filename="../UI/UserInterface.py" line="2260" />
+      <location filename="../UI/UserInterface.py" line="1111" />
       <source>Horizontal Toolbox</source>
       <translation>Vodorovná nástrojová lišta</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2235" />
-      <location filename="../UI/UserInterface.py" line="1120" />
+      <location filename="../UI/UserInterface.py" line="2237" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2054" />
-      <location filename="../UI/UserInterface.py" line="1316" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1132" />
       <source>Multiproject-Viewer</source>
       <translation>Prohlížeč multiprojektu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2032" />
-      <location filename="../UI/UserInterface.py" line="1322" />
-      <location filename="../UI/UserInterface.py" line="1136" />
+      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="1324" />
+      <location filename="../UI/UserInterface.py" line="1138" />
       <source>Project-Viewer</source>
       <translation>Prohlížeč projektu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2594" />
-      <location filename="../UI/UserInterface.py" line="2593" />
-      <location filename="../UI/UserInterface.py" line="1329" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="2596" />
+      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="1331" />
+      <location filename="../UI/UserInterface.py" line="1145" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
-      <location filename="../UI/UserInterface.py" line="2616" />
-      <location filename="../UI/UserInterface.py" line="1336" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2619" />
+      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="1338" />
+      <location filename="../UI/UserInterface.py" line="1152" />
       <source>Find File</source>
       <translation type="unfinished">Hledat soubor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1156" />
+      <location filename="../UI/UserInterface.py" line="1344" />
+      <location filename="../UI/UserInterface.py" line="1158" />
       <source>VCS Status</source>
       <translation type="unfinished">VCS Status</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2187" />
-      <location filename="../UI/UserInterface.py" line="1349" />
-      <location filename="../UI/UserInterface.py" line="1163" />
+      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="1351" />
+      <location filename="../UI/UserInterface.py" line="1165" />
       <source>Template-Viewer</source>
       <translation>Prohlížeč šablon</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2120" />
-      <location filename="../UI/UserInterface.py" line="1356" />
-      <location filename="../UI/UserInterface.py" line="1170" />
+      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="1358" />
+      <location filename="../UI/UserInterface.py" line="1172" />
       <source>File-Browser</source>
       <translation>Browser souborů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1177" />
+      <location filename="../UI/UserInterface.py" line="1365" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Symbols</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2076" />
-      <location filename="../UI/UserInterface.py" line="1385" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1187" />
+      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="1387" />
+      <location filename="../UI/UserInterface.py" line="1381" />
+      <location filename="../UI/UserInterface.py" line="1189" />
       <source>Debug-Viewer</source>
       <translation>Prohlížeč debugeru</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <location filename="../UI/UserInterface.py" line="2447" />
-      <location filename="../UI/UserInterface.py" line="1392" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="1394" />
+      <location filename="../UI/UserInterface.py" line="1196" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2663" />
-      <location filename="../UI/UserInterface.py" line="2662" />
-      <location filename="../UI/UserInterface.py" line="1399" />
-      <location filename="../UI/UserInterface.py" line="1201" />
+      <location filename="../UI/UserInterface.py" line="2665" />
+      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="1401" />
+      <location filename="../UI/UserInterface.py" line="1203" />
       <source>Help Viewer</source>
       <translation type="unfinished">Prohlížeč nápovědy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3611" />
-      <location filename="../UI/UserInterface.py" line="2543" />
-      <location filename="../UI/UserInterface.py" line="2542" />
-      <location filename="../UI/UserInterface.py" line="1405" />
-      <location filename="../UI/UserInterface.py" line="1207" />
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1209" />
       <source>Plugin Repository</source>
       <translation>Repozitář pluginů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
-      <location filename="../UI/UserInterface.py" line="2566" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1213" />
+      <location filename="../UI/UserInterface.py" line="2569" />
+      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2475" />
-      <location filename="../UI/UserInterface.py" line="2474" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1220" />
+      <location filename="../UI/UserInterface.py" line="2477" />
+      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2497" />
-      <location filename="../UI/UserInterface.py" line="2496" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1225" />
+      <location filename="../UI/UserInterface.py" line="2499" />
+      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="1427" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1232" />
+      <location filename="../UI/UserInterface.py" line="1434" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>Cooperation</source>
       <translation>Spolupráce</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2375" />
-      <location filename="../UI/UserInterface.py" line="1436" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1239" />
       <source>IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
-      <location filename="../UI/UserInterface.py" line="2518" />
-      <location filename="../UI/UserInterface.py" line="1442" />
-      <location filename="../UI/UserInterface.py" line="1244" />
+      <location filename="../UI/UserInterface.py" line="2521" />
+      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2098" />
-      <location filename="../UI/UserInterface.py" line="1450" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1254" />
       <source>Shell</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <location filename="../UI/UserInterface.py" line="1456" />
-      <location filename="../UI/UserInterface.py" line="1256" />
+      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
       <source>Task-Viewer</source>
       <translation>Prohlížeč úloh</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2142" />
-      <location filename="../UI/UserInterface.py" line="1462" />
-      <location filename="../UI/UserInterface.py" line="1260" />
+      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="1464" />
+      <location filename="../UI/UserInterface.py" line="1262" />
       <source>Log-Viewer</source>
       <translation>Prohlížeč logu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1469" />
-      <location filename="../UI/UserInterface.py" line="1267" />
+      <location filename="../UI/UserInterface.py" line="1471" />
+      <location filename="../UI/UserInterface.py" line="1269" />
       <source>Numbers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1844" />
+      <location filename="../UI/UserInterface.py" line="1846" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - Pasivní mód</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <location filename="../UI/UserInterface.py" line="1847" />
+      <location filename="../UI/UserInterface.py" line="1855" />
+      <location filename="../UI/UserInterface.py" line="1849" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} - {1} - pasivní mód</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
+      <location filename="../UI/UserInterface.py" line="1861" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} - {1} - {2} - pasivní mód</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1885" />
-      <source>Quit</source>
-      <translation>Konec</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1887" />
+      <source>Quit</source>
+      <translation>Konec</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1889" />
       <source>&amp;Quit</source>
       <translation>&amp;Konec</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1888" />
+      <location filename="../UI/UserInterface.py" line="1890" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Quit the IDE</source>
-      <translation>Ukončit IDE</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1895" />
+      <source>Quit the IDE</source>
+      <translation>Ukončit IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1897" />
       <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ukončit IDE&lt;/b&gt;&lt;p&gt;Ukončí se IDE. Nejdříve by se měly uložit neuložené změny. Python programy běžící v debug procesu budou ukončeny a nastavení budou uložena.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1911" />
       <location filename="../UI/UserInterface.py" line="1909" />
-      <location filename="../UI/UserInterface.py" line="1907" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1910" />
+      <location filename="../UI/UserInterface.py" line="1912" />
       <source>Ctrl+Shift+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1915" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1917" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1919" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <location filename="../UI/UserInterface.py" line="1928" />
-      <source>Save session</source>
-      <translation>Uložit relaci</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1937" />
+      <location filename="../UI/UserInterface.py" line="1930" />
+      <source>Save session</source>
+      <translation>Uložit relaci</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1931" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7892" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <location filename="../UI/UserInterface.py" line="1947" />
+      <location filename="../UI/UserInterface.py" line="7866" />
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1949" />
       <source>Load session</source>
       <translation type="unfinished">Načíst relaci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
+      <location filename="../UI/UserInterface.py" line="1950" />
       <source>Load session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1958" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1966" />
-      <source>New Window</source>
-      <translation type="unfinished">Nové okno</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1968" />
+      <source>New Window</source>
+      <translation type="unfinished">Nové okno</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1970" />
       <source>New &amp;Window</source>
       <translation type="unfinished">&amp;Nové okno</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1969" />
+      <location filename="../UI/UserInterface.py" line="1971" />
       <source>Ctrl+Shift+N</source>
       <comment>File|New Window</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1974" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1976" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1978" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1992" />
       <location filename="../UI/UserInterface.py" line="1990" />
-      <location filename="../UI/UserInterface.py" line="1988" />
       <source>Edit Profile</source>
       <translation>Editační profil</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1997" />
-      <source>Activate the edit view profile</source>
-      <translation>Aktivovat profil editace</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Activate the edit view profile</source>
+      <translation>Aktivovat profil editace</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2001" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editační profil&lt;/b&gt;&lt;p&gt;Aktivování skupiny 'Editační profil'. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu 'Konfigurace profilu pohledů'.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2014" />
       <location filename="../UI/UserInterface.py" line="2012" />
-      <location filename="../UI/UserInterface.py" line="2010" />
       <source>Debug Profile</source>
       <translation>Debugovací profil</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2019" />
-      <source>Activate the debug view profile</source>
-      <translation>Aktivovat debugovací profil</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Activate the debug view profile</source>
+      <translation>Aktivovat debugovací profil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debugovací profil&lt;/b&gt;&lt;p&gt;Aktivování skupiny 'Debugovací profil'. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu 'Konfigurace profilu pohledů'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2033" />
+      <location filename="../UI/UserInterface.py" line="2035" />
       <source>&amp;Project-Viewer</source>
       <translation>Prohlížeč &amp;projektu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="2036" />
       <source>Alt+Shift+P</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2040" />
+      <location filename="../UI/UserInterface.py" line="2042" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2043" />
+      <location filename="../UI/UserInterface.py" line="2045" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2055" />
+      <location filename="../UI/UserInterface.py" line="2057" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>Prohlížeč &amp;multiprojektu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="2058" />
       <source>Alt+Shift+M</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2062" />
+      <location filename="../UI/UserInterface.py" line="2064" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2065" />
+      <location filename="../UI/UserInterface.py" line="2067" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2077" />
+      <location filename="../UI/UserInterface.py" line="2079" />
       <source>&amp;Debug-Viewer</source>
       <translation>Prohlížeč &amp;debugeru</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="2080" />
       <source>Alt+Shift+D</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2084" />
+      <location filename="../UI/UserInterface.py" line="2086" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2087" />
+      <location filename="../UI/UserInterface.py" line="2089" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2099" />
+      <location filename="../UI/UserInterface.py" line="2101" />
       <source>&amp;Shell</source>
       <translation>&amp;Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="2102" />
       <source>Alt+Shift+S</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2106" />
+      <location filename="../UI/UserInterface.py" line="2108" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2109" />
+      <location filename="../UI/UserInterface.py" line="2111" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2121" />
+      <location filename="../UI/UserInterface.py" line="2123" />
       <source>&amp;File-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="2124" />
       <source>Alt+Shift+F</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2128" />
+      <location filename="../UI/UserInterface.py" line="2130" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2131" />
+      <location filename="../UI/UserInterface.py" line="2133" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2143" />
+      <location filename="../UI/UserInterface.py" line="2145" />
       <source>Lo&amp;g-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="2146" />
       <source>Alt+Shift+G</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2150" />
+      <location filename="../UI/UserInterface.py" line="2152" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="2155" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2165" />
+      <location filename="../UI/UserInterface.py" line="2167" />
       <source>&amp;Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="2168" />
       <source>Alt+Shift+T</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2174" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2190" />
       <source>Templ&amp;ate-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="2191" />
       <source>Alt+Shift+A</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2197" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2198" />
+      <location filename="../UI/UserInterface.py" line="2200" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2213" />
+      <location filename="../UI/UserInterface.py" line="2215" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2220" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2222" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2236" />
+      <location filename="../UI/UserInterface.py" line="2238" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2243" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2245" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2259" />
+      <location filename="../UI/UserInterface.py" line="2261" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>&amp;Horizontální lista nástrojů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2266" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation>Přepnout na vodorovnou lištu nástrojů</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2268" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation>Přepnout na vodorovnou lištu nástrojů</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přepnout vodorovnou nástrojovou lištu&lt;/b&gt;&lt;p&gt;Pokud je vodorovná nástrojová lišta skryta, tak se zobrazí. Je-li zobrazena, skryje se.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2281" />
+      <location filename="../UI/UserInterface.py" line="2283" />
       <source>Left Sidebar</source>
       <translation>Levé menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2282" />
+      <location filename="../UI/UserInterface.py" line="2284" />
       <source>&amp;Left Sidebar</source>
       <translation>&amp;Levé menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2289" />
-      <source>Toggle the left sidebar window</source>
-      <translation>Přepnout okno levého menu</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2291" />
+      <source>Toggle the left sidebar window</source>
+      <translation>Přepnout okno levého menu</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přepnout okno levého menu&lt;/b&gt;&lt;p&gt;Je-li okno levého menu skryto, tak se zobrazí. Je-li zobrazeno, skryje se.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2304" />
+      <location filename="../UI/UserInterface.py" line="2306" />
       <source>Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2305" />
+      <location filename="../UI/UserInterface.py" line="2307" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2312" />
-      <source>Toggle the right sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2314" />
+      <source>Toggle the right sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2329" />
       <source>Bottom Sidebar</source>
       <translation>Dolní menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2328" />
+      <location filename="../UI/UserInterface.py" line="2330" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Dolní menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation>Přepnout okno dolního menu</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2337" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation>Přepnout okno dolního menu</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přepnout okno dolního menu&lt;/b&gt;&lt;p&gt;Je-li okno dolního menu skryto, tak se zobrazí. Je-li zobrazeno, skryje se.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2350" />
-      <source>Cooperation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2351" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2352" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2353" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2354" />
       <source>Alt+Shift+O</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
+      <location filename="../UI/UserInterface.py" line="2360" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2361" />
+      <location filename="../UI/UserInterface.py" line="2363" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2376" />
+      <location filename="../UI/UserInterface.py" line="2378" />
       <source>&amp;IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="2379" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2383" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2386" />
+      <location filename="../UI/UserInterface.py" line="2388" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2397" />
-      <source>Symbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2398" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2399" />
+      <source>Symbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2400" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2401" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2407" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2408" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2422" />
-      <source>Numbers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2423" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2424" />
+      <source>Numbers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2426" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
+      <location filename="../UI/UserInterface.py" line="2432" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2433" />
+      <location filename="../UI/UserInterface.py" line="2435" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="2451" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2455" />
+      <location filename="../UI/UserInterface.py" line="2457" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2460" />
+      <location filename="../UI/UserInterface.py" line="2462" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="2478" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2482" />
+      <location filename="../UI/UserInterface.py" line="2484" />
       <source>Switch the input focus to the PyPI Package Management window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2487" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="2500" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2504" />
+      <location filename="../UI/UserInterface.py" line="2506" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="2522" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2528" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2529" />
+      <location filename="../UI/UserInterface.py" line="2531" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="2546" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2552" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2553" />
+      <location filename="../UI/UserInterface.py" line="2555" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="2570" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2574" />
+      <location filename="../UI/UserInterface.py" line="2576" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2579" />
+      <location filename="../UI/UserInterface.py" line="2581" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="2597" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2603" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="2620" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2626" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2641" />
-      <location filename="../UI/UserInterface.py" line="2640" />
+      <location filename="../UI/UserInterface.py" line="2643" />
+      <location filename="../UI/UserInterface.py" line="2642" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2642" />
+      <location filename="../UI/UserInterface.py" line="2644" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2648" />
+      <location filename="../UI/UserInterface.py" line="2650" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2653" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="2666" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
+      <location filename="../UI/UserInterface.py" line="2672" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2673" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2686" />
-      <source>What's This?</source>
-      <translation>Co je to?</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2688" />
+      <source>What's This?</source>
+      <translation>Co je to?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2690" />
       <source>&amp;What's This?</source>
       <translation>&amp;Co je to?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2689" />
+      <location filename="../UI/UserInterface.py" line="2691" />
       <source>Shift+F1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>Context sensitive help</source>
-      <translation>Kontextově senzitivní nápověda</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2696" />
+      <source>Context sensitive help</source>
+      <translation>Kontextově senzitivní nápověda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zobrazit kontextově senzitivní nápovědu&lt;/b&gt;&lt;p&gt;V režimu "Co je to?" se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2709" />
-      <source>Helpviewer</source>
-      <translation>Prohlížeč nápovědy</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2711" />
+      <source>Helpviewer</source>
+      <translation>Prohlížeč nápovědy</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2713" />
       <source>&amp;Helpviewer...</source>
       <translation>Pro&amp;hlížeč nápovědy...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2714" />
       <source>F1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2717" />
-      <source>Open the helpviewer window</source>
-      <translation>Otevřít okno prohlížeče nápovědy</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2719" />
+      <source>Open the helpviewer window</source>
+      <translation>Otevřít okno prohlížeče nápovědy</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2739" />
+      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Versions</source>
       <translation>Zobrazit verze</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2740" />
+      <location filename="../UI/UserInterface.py" line="2742" />
       <source>Show &amp;Versions</source>
       <translation>Zobrazit &amp;verze</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <source>Display version information</source>
-      <translation>Zobrazit informace o verzích</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2748" />
+      <source>Display version information</source>
+      <translation>Zobrazit informace o verzích</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zobrazit verze&lt;/b&gt;&lt;p&gt;Zobrazí informace o verzích.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2754" />
+      <location filename="../UI/UserInterface.py" line="2756" />
       <source>Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2757" />
       <source>&amp;Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2764" />
       <source>Copy version information to the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2765" />
+      <location filename="../UI/UserInterface.py" line="2767" />
       <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2781" />
-      <location filename="../UI/UserInterface.py" line="2774" />
-      <source>Show Error Log</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Show Error &amp;Log...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2783" />
+      <location filename="../UI/UserInterface.py" line="2776" />
+      <source>Show Error Log</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2777" />
+      <source>Show Error &amp;Log...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2785" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
+      <location filename="../UI/UserInterface.py" line="2794" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2795" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
-      <source>Show Installation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Show Installation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4738" />
-      <location filename="../UI/UserInterface.py" line="2811" />
+      <location filename="../UI/UserInterface.py" line="4712" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>Report Bug</source>
       <translation>Reportovat Bugy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2811" />
-      <source>Report &amp;Bug...</source>
-      <translation>Reportovat &amp;Bugy...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2813" />
-      <source>Report a bug</source>
-      <translation>Reportovat bug</translation>
+      <source>Report &amp;Bug...</source>
+      <translation>Reportovat &amp;Bugy...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2815" />
+      <source>Report a bug</source>
+      <translation>Reportovat bug</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reportovat bug...&lt;/b&gt;&lt;p&gt;Otevře se dialog pro reportování bugu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2821" />
+      <location filename="../UI/UserInterface.py" line="2823" />
       <source>Request Feature</source>
       <translation>Požadavek na vlastnost</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2824" />
       <source>Request &amp;Feature...</source>
       <translation>&amp;Požadavek na vlastnost...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2828" />
-      <source>Send a feature request</source>
-      <translation>Poslat požadavek na vlastnost</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2830" />
+      <source>Send a feature request</source>
+      <translation>Poslat požadavek na vlastnost</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Požadavek na vlastnost...&lt;/b&gt;&lt;p&gt;Otevře dialog pro odeslání požadavku.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4174" />
-      <location filename="../UI/UserInterface.py" line="2841" />
-      <source>Testing</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../UI/UserInterface.py" line="4148" />
       <location filename="../UI/UserInterface.py" line="2843" />
+      <source>Testing</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2845" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2849" />
-      <source>Start the testing dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2851" />
+      <source>Start the testing dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
-      <source>Restart Last Test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2864" />
+      <source>Restart Last Test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2866" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2870" />
-      <source>Restarts the last test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2872" />
+      <source>Restarts the last test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2882" />
-      <source>Rerun Failed Tests</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2884" />
+      <source>Rerun Failed Tests</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2886" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
+      <location filename="../UI/UserInterface.py" line="2896" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2906" />
+      <source>Test Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2908" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2914" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2916" />
       <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2923" />
+      <source>Test Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2925" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Run tests of the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2931" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2933" />
       <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
-      <source>Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2942" />
+      <source>Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2944" />
       <source>Qt-&amp;Designer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2950" />
+      <source>Start Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2959" />
-      <source>Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2961" />
+      <source>Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2963" />
       <source>Qt-&amp;Linguist...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2967" />
-      <source>Start Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2969" />
+      <source>Start Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2971" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>UI Previewer</source>
-      <translation />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2979" />
+      <source>UI Previewer</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
       <source>&amp;UI Previewer...</source>
       <translation>&amp;UI Previewer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
-      <source>Start the UI Previewer</source>
-      <translation>Spustit UI Previewer</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2987" />
+      <source>Start the UI Previewer</source>
+      <translation>Spustit UI Previewer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Spustit UI Previewer.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2993" />
-      <source>Translations Previewer</source>
-      <translation>Náhled překladů</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2995" />
+      <source>Translations Previewer</source>
+      <translation>Náhled překladů</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2997" />
       <source>&amp;Translations Previewer...</source>
       <translation>Náhled &amp;překladů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <source>Start the Translations Previewer</source>
-      <translation>Spustit Previewer překladů</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3003" />
+      <source>Start the Translations Previewer</source>
+      <translation>Spustit Previewer překladů</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3005" />
       <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Previewer překladů&lt;/b&gt;&lt;p&gt;Spustit Previewer překladů.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3012" />
-      <source>Compare Files</source>
-      <translation>Porovnat soubory</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3014" />
+      <source>Compare Files</source>
+      <translation>Porovnat soubory</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3016" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Porovnat soubory...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
-      <location filename="../UI/UserInterface.py" line="3020" />
+      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3022" />
       <source>Compare two files</source>
       <translation>Porovnat dva soubory</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3024" />
       <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Porovnat soubory&lt;/b&gt;&lt;p&gt;Otevře dialog pro porovnání dvou souborů.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3031" />
-      <source>Compare Files side by side</source>
-      <translation>Porovnat soubory stranu proti straně</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3033" />
+      <source>Compare Files side by side</source>
+      <translation>Porovnat soubory stranu proti straně</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3035" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3043" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Porovnat soubory stranu proti straně&lt;/b&gt;&lt;p&gt;Otevře dialog pro porovnání souborů a zobrazení rozdílů strany proti straně.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>SQL Browser</source>
-      <translation />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3053" />
+      <source>SQL Browser</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3055" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL &amp;Browser...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>Browse a SQL database</source>
-      <translation>Procházet SQL databázi</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3061" />
+      <source>Browse a SQL database</source>
+      <translation>Procházet SQL databázi</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
       <translation>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Procházet SQL databázi.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3075" />
-      <location filename="../UI/UserInterface.py" line="3067" />
-      <source>Mini Editor</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini &amp;Editor...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <location filename="../UI/UserInterface.py" line="3069" />
+      <source>Mini Editor</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3071" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini &amp;Editor...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3079" />
       <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mini editor&lt;/b&gt;&lt;p&gt;Otevře se okno s jednoduchým editorem&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3086" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3088" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3090" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3094" />
-      <source>Start the eric Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>Start the eric Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3106" />
-      <source>eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3108" />
+      <source>eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3110" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3114" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3116" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3118" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3126" />
-      <source>FIDO2 Security Key Management</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3128" />
+      <source>FIDO2 Security Key Management</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3130" />
       <source>FIDO2 Security Key Management...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3135" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>Start the FIDO2 Security Key Management tool</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
+      <location filename="../UI/UserInterface.py" line="3140" />
       <source>&lt;b&gt;FIDO2 Security Key Management&lt;/b&gt;&lt;p&gt;Start a tool to manage FIDO2 securit y keys.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Icon Editor</source>
-      <translation>Editor ikon</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3151" />
+      <source>Icon Editor</source>
+      <translation>Editor ikon</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3153" />
       <source>&amp;Icon Editor...</source>
       <translation>Editor &amp;ikon...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
-      <source>Start the eric Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3159" />
+      <source>Start the eric Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3161" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6631" />
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="6605" />
+      <location filename="../UI/UserInterface.py" line="3173" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3173" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <source>Take snapshots of a screen region</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3181" />
+      <source>Take snapshots of a screen region</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3193" />
+      <source>eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>eric PDF &amp;Viewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3199" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3201" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
-      <source>Preferences</source>
-      <translation>Nastavení</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3212" />
+      <source>Preferences</source>
+      <translation>Nastavení</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>&amp;Preferences...</source>
       <translation>Na&amp;stavení...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Set the prefered configuration</source>
-      <translation>Nastavení konfigurace</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3220" />
+      <source>Set the prefered configuration</source>
+      <translation>Nastavení konfigurace</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3222" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nastavení&lt;/b&gt;&lt;p&gt;Upravit konfiguraci aplikace podle požadavků uživatele.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Export Preferences</source>
-      <translation>Exportovat předvolby</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3233" />
+      <source>Export Preferences</source>
+      <translation>Exportovat předvolby</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;xportovat předvolby...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
-      <source>Export the current configuration</source>
-      <translation>Export aktuální konfigurace</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3241" />
+      <source>Export the current configuration</source>
+      <translation>Export aktuální konfigurace</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Export předvoleb&lt;/b&gt;&lt;p&gt;Export aktuální konfigurace do souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
-      <source>Import Preferences</source>
-      <translation>Import předvoleb</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3252" />
+      <source>Import Preferences</source>
+      <translation>Import předvoleb</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
       <source>I&amp;mport Preferences...</source>
       <translation>I&amp;mport předvoleb...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3261" />
       <source>Import a previously exported configuration</source>
       <translation>Import dříve exportované konfigurace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3262" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Import předvoleb&lt;/b&gt;&lt;p&gt;Import dříve exportované konfigurace.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
-      <source>Export Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3273" />
+      <source>Export Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3281" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3290" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3292" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
-      <source>Import a previously exported theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3300" />
+      <source>Import a previously exported theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3302" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload APIs</source>
-      <translation>Obnovit API</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload &amp;APIs</source>
-      <translation>Obnovit &amp;API</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3311" />
-      <source>Reload the API information</source>
-      <translation>Obnovit API nastavení</translation>
+      <source>Reload APIs</source>
+      <translation>Obnovit API</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3311" />
+      <source>Reload &amp;APIs</source>
+      <translation>Obnovit &amp;API</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Reload the API information</source>
+      <translation>Obnovit API nastavení</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Obnovit API&lt;/b&gt;&lt;p&gt;Obnovit API nastavení.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <location filename="../UI/UserInterface.py" line="3319" />
-      <source>Show external tools</source>
-      <translation>Zobrazit externí nástroje</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Show external &amp;tools</source>
-      <translation>Zobrazit externí nás&amp;troje</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3329" />
+      <location filename="../UI/UserInterface.py" line="3321" />
+      <source>Show external tools</source>
+      <translation>Zobrazit externí nástroje</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3323" />
+      <source>Show external &amp;tools</source>
+      <translation>Zobrazit externí nás&amp;troje</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3331" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>View Profiles</source>
-      <translation>Profily pohledů</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3341" />
+      <source>View Profiles</source>
+      <translation>Profily pohledů</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3343" />
       <source>&amp;View Profiles...</source>
       <translation>Profily &amp;pohledů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Configure view profiles</source>
-      <translation>Konfigurace profilů pohledů</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Configure view profiles</source>
+      <translation>Konfigurace profilů pohledů</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profily pohledů&lt;/b&gt;&lt;p&gt;Konfigurace profilu pohledů. V tomto dialogu můžete nastavit zobrazování různých typů pohledů - editačních oken.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
-      <source>Toolbars</source>
-      <translation>Lišty nástrojů</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3362" />
+      <source>Toolbars</source>
+      <translation>Lišty nástrojů</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3364" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Lišty nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
-      <source>Configure toolbars</source>
-      <translation>Konfigurace lišt nástrojů</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3370" />
+      <source>Configure toolbars</source>
+      <translation>Konfigurace lišt nástrojů</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3372" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Listy nástrojů&lt;/b&gt;&lt;p&gt;Konfigurace lišt nástrojů. S tímto dialogem můžete změnit akce zobrazené v různých nástrojových lištách nebo definovat své vlastní nástrojové lišty.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
-      <source>Keyboard Shortcuts</source>
-      <translation>Klávesové zkratky</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3383" />
+      <source>Keyboard Shortcuts</source>
+      <translation>Klávesové zkratky</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Klávesové &amp;zkratky...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3389" />
-      <source>Set the keyboard shortcuts</source>
-      <translation>Nastavení klávesových zkratek</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3391" />
+      <source>Set the keyboard shortcuts</source>
+      <translation>Nastavení klávesových zkratek</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Klávesové zkratky&lt;/b&gt;&lt;p&gt;Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7600" />
-      <location filename="../UI/UserInterface.py" line="7581" />
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7555" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportovat klávesové zkratky</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Exportovat klávesové zkratky...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Export klávesových zkratek</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3411" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Export klávesových zkratek</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3413" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Export klávesových zkratek&lt;/b&gt;&lt;p&gt;Exportují se klávesové zkratky z aplikace.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7619" />
-      <location filename="../UI/UserInterface.py" line="3420" />
+      <location filename="../UI/UserInterface.py" line="7593" />
+      <location filename="../UI/UserInterface.py" line="3422" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Import klávesových zkratek</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Import klávesových zkratek...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3428" />
-      <source>Import the keyboard shortcuts</source>
-      <translation>Import klávesových zkratek</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3430" />
+      <source>Import the keyboard shortcuts</source>
+      <translation>Import klávesových zkratek</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3432" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Import klávesových zkratek&lt;/b&gt;&lt;p&gt;Do aplikace se importují klávesové zkratky.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3440" />
-      <source>Manage SSL Certificates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3442" />
+      <source>Manage SSL Certificates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3444" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Manage the saved SSL certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3454" />
       <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3462" />
-      <source>Edit Message Filters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3464" />
+      <source>Edit Message Filters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3466" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3474" />
+      <location filename="../UI/UserInterface.py" line="3476" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <location filename="../UI/UserInterface.py" line="3487" />
-      <location filename="../UI/UserInterface.py" line="3485" />
-      <source>Clear private data</source>
-      <translation type="unfinished">Smazat soukromá data</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3489" />
+      <location filename="../UI/UserInterface.py" line="3487" />
+      <source>Clear private data</source>
+      <translation type="unfinished">Smazat soukromá data</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3506" />
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3508" />
+      <location filename="../UI/UserInterface.py" line="3507" />
       <source>Activate current editor</source>
       <translation>Aktivovat aktuální editor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3507" />
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Alt+Shift+E</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3518" />
-      <location filename="../UI/UserInterface.py" line="3517" />
+      <location filename="../UI/UserInterface.py" line="3520" />
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>Show next</source>
       <translation>Zobrazit další</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3519" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Ctrl+Alt+Tab</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3530" />
-      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <source>Show previous</source>
       <translation>Zobrazit předchozí</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3533" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3542" />
-      <location filename="../UI/UserInterface.py" line="3541" />
+      <location filename="../UI/UserInterface.py" line="3544" />
+      <location filename="../UI/UserInterface.py" line="3543" />
       <source>Switch between tabs</source>
       <translation>Přepnout mezi taby</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3543" />
+      <location filename="../UI/UserInterface.py" line="3545" />
       <source>Ctrl+1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3553" />
-      <source>Plugin Infos</source>
-      <translation>Plugin Infa</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3555" />
+      <source>Plugin Infos</source>
+      <translation>Plugin Infa</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>&amp;Plugin Infos...</source>
       <translation>&amp;Plugin Infa...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3561" />
-      <source>Show Plugin Infos</source>
-      <translation>Zobrazit Plugin infa</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3563" />
+      <source>Show Plugin Infos</source>
+      <translation>Zobrazit Plugin infa</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3565" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Plugin Infa&lt;/b&gt;&lt;p&gt;Otevře dialog, který zobrazí informace o načtených pluginech.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3581" />
-      <location filename="../UI/UserInterface.py" line="3573" />
-      <source>Install Plugins</source>
-      <translation>Instalovat pluginy</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3575" />
-      <source>&amp;Install Plugins...</source>
-      <translation>&amp;Instalovat pluginy...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <source>Install Plugins</source>
+      <translation>Instalovat pluginy</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>&amp;Install Plugins...</source>
+      <translation>&amp;Instalovat pluginy...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Instalovat pluginy...&lt;/b&gt;&lt;p&gt;Otevře dialog pro instalaci nebo aktualizaci pluginů.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3600" />
-      <location filename="../UI/UserInterface.py" line="3592" />
-      <source>Uninstall Plugin</source>
-      <translation>Odinstalovat plugin</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>&amp;Odinstalovat plugin...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3602" />
+      <location filename="../UI/UserInterface.py" line="3594" />
+      <source>Uninstall Plugin</source>
+      <translation>Odinstalovat plugin</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3596" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>&amp;Odinstalovat plugin...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Odinstalovat plugin...&lt;/b&gt;&lt;p&gt;Otevře dialog pro odinstalaci pluginu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3615" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Repozitář pluginů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3619" />
-      <source>Show Plugins available for download</source>
-      <translation>Zobrazit pluginy dostupné ke stažení</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3621" />
+      <source>Show Plugins available for download</source>
+      <translation>Zobrazit pluginy dostupné ke stažení</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3623" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Repozitář pluginů...&lt;/b&gt;&lt;p&gt;Otevře se dialog, který zobrazí seznam pluginů dostupných ke stažení přes internet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3651" />
-      <location filename="../UI/UserInterface.py" line="3650" />
+      <location filename="../UI/UserInterface.py" line="3653" />
+      <location filename="../UI/UserInterface.py" line="3652" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished">Qt4 dokumentace {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>Open Qt5 Documentation</source>
-      <translation type="unfinished">Otevřít Qt4 dokumentaci {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3659" />
+      <source>Open Qt5 Documentation</source>
+      <translation type="unfinished">Otevřít Qt4 dokumentaci {5 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3672" />
-      <location filename="../UI/UserInterface.py" line="3671" />
+      <location filename="../UI/UserInterface.py" line="3674" />
+      <location filename="../UI/UserInterface.py" line="3673" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Qt4 dokumentace {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3678" />
-      <source>Open Qt6 Documentation</source>
-      <translation type="unfinished">Otevřít Qt4 dokumentaci {6 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3680" />
+      <source>Open Qt6 Documentation</source>
+      <translation type="unfinished">Otevřít Qt4 dokumentaci {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3682" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3693" />
-      <location filename="../UI/UserInterface.py" line="3692" />
+      <location filename="../UI/UserInterface.py" line="3695" />
+      <location filename="../UI/UserInterface.py" line="3694" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3699" />
-      <source>Open PyQt5 Documentation</source>
-      <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Open PyQt5 Documentation</source>
+      <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3714" />
-      <location filename="../UI/UserInterface.py" line="3713" />
+      <location filename="../UI/UserInterface.py" line="3716" />
+      <location filename="../UI/UserInterface.py" line="3715" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">PyQt4 dokumentace {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3720" />
-      <source>Open PyQt6 Documentation</source>
-      <translation type="unfinished">Otevřít PyQt4 dokumentaci {6 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3722" />
+      <source>Open PyQt6 Documentation</source>
+      <translation type="unfinished">Otevřít PyQt4 dokumentaci {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3724" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3740" />
-      <location filename="../UI/UserInterface.py" line="3739" />
+      <location filename="../UI/UserInterface.py" line="3742" />
+      <location filename="../UI/UserInterface.py" line="3741" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3746" />
-      <source>Open Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3748" />
+      <source>Open Python 3 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3750" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3767" />
-      <location filename="../UI/UserInterface.py" line="3766" />
+      <location filename="../UI/UserInterface.py" line="3769" />
+      <location filename="../UI/UserInterface.py" line="3768" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3773" />
-      <source>Open eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3775" />
+      <source>Open eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3777" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3793" />
-      <location filename="../UI/UserInterface.py" line="3792" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3799" />
-      <source>Open PySide2 Documentation</source>
+      <location filename="../UI/UserInterface.py" line="3795" />
+      <location filename="../UI/UserInterface.py" line="3794" />
+      <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3801" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3819" />
-      <location filename="../UI/UserInterface.py" line="3818" />
-      <source>PySide6 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3825" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3827" />
+      <location filename="../UI/UserInterface.py" line="3803" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3863" />
+      <location filename="../UI/UserInterface.py" line="3839" />
       <source>Sessions</source>
       <translation type="unfinished">Relace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3944" />
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtra funkce</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3954" />
+      <location filename="../UI/UserInterface.py" line="3930" />
       <source>Wi&amp;zards</source>
       <translation>&amp;Průvodci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3948" />
       <source>P&amp;lugins</source>
       <translation>P&amp;luginy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="3957" />
       <source>Configure...</source>
       <translation>Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3990" />
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="3983" />
       <source>Select Tool Group</source>
       <translation>Vybrat skupinu nástrojů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4018" />
+      <location filename="../UI/UserInterface.py" line="3994" />
       <source>Se&amp;ttings</source>
       <translation>Nas&amp;tavení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4051" />
+      <location filename="../UI/UserInterface.py" line="4027" />
       <source>&amp;Window</source>
       <translation>O&amp;kno</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4060" />
+      <location filename="../UI/UserInterface.py" line="4036" />
       <source>&amp;Windows</source>
       <translation type="unfinished">&amp;Windows</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4064" />
+      <location filename="../UI/UserInterface.py" line="4040" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4068" />
+      <location filename="../UI/UserInterface.py" line="4044" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4087" />
+      <location filename="../UI/UserInterface.py" line="4063" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4106" />
+      <location filename="../UI/UserInterface.py" line="4082" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4090" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="4096" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Toolbary</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4133" />
+      <location filename="../UI/UserInterface.py" line="4109" />
       <source>&amp;Help</source>
       <translation>&amp;Nápověda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4190" />
-      <location filename="../UI/UserInterface.py" line="4173" />
+      <location filename="../UI/UserInterface.py" line="4164" />
+      <location filename="../UI/UserInterface.py" line="4147" />
       <source>Tools</source>
       <translation>Nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4192" />
-      <location filename="../UI/UserInterface.py" line="4177" />
+      <location filename="../UI/UserInterface.py" line="4166" />
+      <location filename="../UI/UserInterface.py" line="4151" />
       <source>Settings</source>
       <translation>Nastavení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6361" />
-      <location filename="../UI/UserInterface.py" line="4193" />
-      <location filename="../UI/UserInterface.py" line="4178" />
+      <location filename="../UI/UserInterface.py" line="6335" />
+      <location filename="../UI/UserInterface.py" line="4167" />
+      <location filename="../UI/UserInterface.py" line="4152" />
       <source>Help</source>
       <translation>Nápověda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4194" />
-      <location filename="../UI/UserInterface.py" line="4179" />
+      <location filename="../UI/UserInterface.py" line="4168" />
+      <location filename="../UI/UserInterface.py" line="4153" />
       <source>Profiles</source>
       <translation>Profily</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4195" />
-      <location filename="../UI/UserInterface.py" line="4180" />
+      <location filename="../UI/UserInterface.py" line="4169" />
+      <location filename="../UI/UserInterface.py" line="4154" />
       <source>Plugins</source>
       <translation>Pluginy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4191" />
+      <location filename="../UI/UserInterface.py" line="4165" />
       <source>Unittest</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4368" />
+      <location filename="../UI/UserInterface.py" line="4342" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Tato část status baru zobrazuje aktuální jazyk editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4377" />
+      <location filename="../UI/UserInterface.py" line="4351" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Tato část status baru zobrazuje aktuální kódování editorů.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4386" />
+      <location filename="../UI/UserInterface.py" line="4360" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Tato část status baru zobrazuje eol nastavení v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4395" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Tato část status baru zobrazuje indikátor práva zápisu editoru do souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4404" />
+      <location filename="../UI/UserInterface.py" line="4378" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Tato část status baru zobrazuje číslo řádku v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
+      <location filename="../UI/UserInterface.py" line="4387" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Tato část status baru zobrazuje pozici kurzoru v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4427" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4501" />
-      <location filename="../UI/UserInterface.py" line="4460" />
+      <location filename="../UI/UserInterface.py" line="4475" />
+      <location filename="../UI/UserInterface.py" line="4434" />
       <source>External Tools/{0}</source>
       <translation>Externí nástroje/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4609" />
+      <location filename="../UI/UserInterface.py" line="4583" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation type="unfinished">&lt;h3&gt;Čísla verzí&lt;/h3&gt;&lt;table&gt; {2&gt;?} {2&gt;?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4679" />
+      <location filename="../UI/UserInterface.py" line="4653" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4683" />
+      <location filename="../UI/UserInterface.py" line="4657" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4739" />
+      <location filename="../UI/UserInterface.py" line="4713" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>Emailová adresa nebo mail server adresa jsou prázdné. Prosím, nastavte váš email v dialogovém okně Nastavení.</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5048" />
+      <source>Restart application</source>
+      <translation>Restartovat aplikaci</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5049" />
+      <source>The application needs to be restarted. Do it now?</source>
+      <translation>Aplikace potřebuje restartovat. Má se provést nyní?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5073" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5074" />
-      <source>Restart application</source>
-      <translation>Restartovat aplikaci</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5075" />
-      <source>The application needs to be restarted. Do it now?</source>
-      <translation>Aplikace potřebuje restartovat. Má se provést nyní?</translation>
+      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+
+Shall the upgrade be done now?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5098" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5099" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5100" />
-      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5124" />
-      <source>Upgrade Eric</source>
+      <source>Upgrade Eric and PyQt6</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5125" />
-      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
-
-Shall the upgrade be done now?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5150" />
-      <source>Upgrade Eric and PyQt6</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5151" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5213" />
+      <location filename="../UI/UserInterface.py" line="5187" />
       <source>&amp;Builtin Tools</source>
       <translation>&amp;Vestavěné nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5233" />
+      <location filename="../UI/UserInterface.py" line="5207" />
       <source>&amp;Plugin Tools</source>
       <translation>&amp;Plugin nástroje</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5210" />
+      <source>&amp;User Tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5236" />
-      <source>&amp;User Tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5262" />
       <source>Configure Tool Groups ...</source>
       <translation>Konfigurace Skupin nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5266" />
+      <location filename="../UI/UserInterface.py" line="5240" />
       <source>Configure current Tool Group ...</source>
       <translation>Konfigurace aktuální skupiny nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5305" />
-      <location filename="../UI/UserInterface.py" line="5285" />
+      <location filename="../UI/UserInterface.py" line="5279" />
+      <location filename="../UI/UserInterface.py" line="5259" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5381" />
+      <location filename="../UI/UserInterface.py" line="5355" />
       <source>&amp;Show all</source>
       <translation>&amp;Zobrazit vše</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5383" />
+      <location filename="../UI/UserInterface.py" line="5357" />
       <source>&amp;Hide all</source>
       <translation>&amp;Skrýt vše</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6498" />
-      <location filename="../UI/UserInterface.py" line="6487" />
-      <location filename="../UI/UserInterface.py" line="6439" />
-      <location filename="../UI/UserInterface.py" line="6429" />
-      <location filename="../UI/UserInterface.py" line="6252" />
-      <location filename="../UI/UserInterface.py" line="6242" />
-      <location filename="../UI/UserInterface.py" line="6184" />
-      <location filename="../UI/UserInterface.py" line="6174" />
+      <location filename="../UI/UserInterface.py" line="6472" />
+      <location filename="../UI/UserInterface.py" line="6461" />
+      <location filename="../UI/UserInterface.py" line="6413" />
+      <location filename="../UI/UserInterface.py" line="6403" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6216" />
+      <location filename="../UI/UserInterface.py" line="6158" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <source>Problem</source>
       <translation>Problém</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6499" />
-      <location filename="../UI/UserInterface.py" line="6488" />
-      <location filename="../UI/UserInterface.py" line="6440" />
-      <location filename="../UI/UserInterface.py" line="6430" />
-      <location filename="../UI/UserInterface.py" line="6253" />
-      <location filename="../UI/UserInterface.py" line="6243" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6175" />
+      <location filename="../UI/UserInterface.py" line="6473" />
+      <location filename="../UI/UserInterface.py" line="6462" />
+      <location filename="../UI/UserInterface.py" line="6414" />
+      <location filename="../UI/UserInterface.py" line="6404" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; neexistuje nebo má nulovou délku.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6740" />
-      <location filename="../UI/UserInterface.py" line="6651" />
-      <location filename="../UI/UserInterface.py" line="6534" />
-      <location filename="../UI/UserInterface.py" line="6511" />
-      <location filename="../UI/UserInterface.py" line="6452" />
-      <location filename="../UI/UserInterface.py" line="6399" />
-      <location filename="../UI/UserInterface.py" line="6377" />
-      <location filename="../UI/UserInterface.py" line="6328" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6275" />
-      <location filename="../UI/UserInterface.py" line="6216" />
-      <location filename="../UI/UserInterface.py" line="6207" />
+      <location filename="../UI/UserInterface.py" line="6714" />
+      <location filename="../UI/UserInterface.py" line="6625" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6302" />
+      <location filename="../UI/UserInterface.py" line="6293" />
+      <location filename="../UI/UserInterface.py" line="6258" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6190" />
+      <location filename="../UI/UserInterface.py" line="6181" />
       <source>Process Generation Error</source>
       <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6208" />
+      <location filename="../UI/UserInterface.py" line="6182" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nemohu spustit Qt-Designer.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6191" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6250" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nemohu spustit Qt-Linguist.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6285" />
+      <location filename="../UI/UserInterface.py" line="6259" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6320" />
+      <location filename="../UI/UserInterface.py" line="6294" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nemohu spustit Qt-Assistant.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6303" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6362" />
+      <location filename="../UI/UserInterface.py" line="6336" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>Aktuálně není vybrán žádný prohlížeč. Prosím otevřete Nastavení a nějaký vyberte.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6378" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nemohu spustit aktuální prohlížeč.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6374" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nemohu spustit prohlížeč nápovědy.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6453" />
+      <location filename="../UI/UserInterface.py" line="6427" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nemohu spustit UI Previewer.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6512" />
+      <location filename="../UI/UserInterface.py" line="6486" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nemohu spustit Previewer překladů.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6535" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nelze spustit SQL Browser.&lt;br&gt;Ujistěte se, že je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6632" />
+      <location filename="../UI/UserInterface.py" line="6606" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6652" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6685" />
-      <location filename="../UI/UserInterface.py" line="6675" />
+      <location filename="../UI/UserInterface.py" line="6659" />
+      <location filename="../UI/UserInterface.py" line="6649" />
       <source>External Tools</source>
       <translation>Externí nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6676" />
+      <location filename="../UI/UserInterface.py" line="6650" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation>V externím nástroji  '{0}' ve skupině '{1}' nebyl záznam nástroje nalezen.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6686" />
+      <location filename="../UI/UserInterface.py" line="6660" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>Skupina nástrojů '{0}' nenalezena. </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6723" />
+      <location filename="../UI/UserInterface.py" line="6697" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Spouštím proces '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6741" />
+      <location filename="../UI/UserInterface.py" line="6715" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Nemohu spustit příkaz &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{1}&lt;/b&gt;. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6820" />
+      <location filename="../UI/UserInterface.py" line="6794" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Proces '{0}' byl ukončen.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7108" />
-      <location filename="../UI/UserInterface.py" line="7046" />
-      <location filename="../UI/UserInterface.py" line="7002" />
-      <location filename="../UI/UserInterface.py" line="6928" />
-      <location filename="../UI/UserInterface.py" line="6864" />
+      <location filename="../UI/UserInterface.py" line="7082" />
+      <location filename="../UI/UserInterface.py" line="7020" />
+      <location filename="../UI/UserInterface.py" line="6976" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6838" />
       <source>Documentation Missing</source>
       <translation>Dokumentace chybí</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7109" />
-      <location filename="../UI/UserInterface.py" line="7047" />
-      <location filename="../UI/UserInterface.py" line="7003" />
-      <location filename="../UI/UserInterface.py" line="6929" />
-      <location filename="../UI/UserInterface.py" line="6865" />
+      <location filename="../UI/UserInterface.py" line="7083" />
+      <location filename="../UI/UserInterface.py" line="7021" />
+      <location filename="../UI/UserInterface.py" line="6977" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6839" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Adresář dokumentace "&lt;b&gt;{0}&lt;/b&gt;" nebyl nalezen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7090" />
-      <location filename="../UI/UserInterface.py" line="6972" />
+      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="6946" />
       <source>Documentation</source>
       <translation>Dokumentace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6973" />
+      <location filename="../UI/UserInterface.py" line="6947" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7091" />
+      <location filename="../UI/UserInterface.py" line="7065" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7270" />
-      <location filename="../UI/UserInterface.py" line="7206" />
+      <location filename="../UI/UserInterface.py" line="7244" />
+      <location filename="../UI/UserInterface.py" line="7180" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7207" />
+      <location filename="../UI/UserInterface.py" line="7181" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7271" />
+      <location filename="../UI/UserInterface.py" line="7245" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7595" />
+      <location filename="../UI/UserInterface.py" line="7557" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7601" />
+      <location filename="../UI/UserInterface.py" line="7575" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7805" />
+      <location filename="../UI/UserInterface.py" line="7779" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7808" />
+      <location filename="../UI/UserInterface.py" line="7782" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7845" />
+      <location filename="../UI/UserInterface.py" line="7819" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7846" />
+      <location filename="../UI/UserInterface.py" line="7820" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor relace session &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7869" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7894" />
-      <location filename="../UI/UserInterface.py" line="7871" />
+      <location filename="../UI/UserInterface.py" line="7868" />
+      <location filename="../UI/UserInterface.py" line="7845" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8400" />
+      <location filename="../UI/UserInterface.py" line="8374" />
       <source>Drop Error</source>
       <translation>Zahodit chybu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8401" />
+      <location filename="../UI/UserInterface.py" line="8375" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; není soubor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8598" />
+      <location filename="../UI/UserInterface.py" line="8550" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8551" />
+      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8599" />
-      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
       <source>First time usage</source>
       <translation>Spuštěno poprvé</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8600" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8622" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8790" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8791" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
Binary file src/eric7/i18n/eric7_de.qm has changed
--- a/src/eric7/i18n/eric7_de.ts	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/i18n/eric7_de.ts	Sun Apr 13 14:46:18 2025 +0200
@@ -1706,47 +1706,47 @@
   <context>
     <name>BackgroundService</name>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="168" />
+      <location filename="../Utilities/BackgroundService.py" line="169" />
       <source>{0} not configured.</source>
       <translation>{0} nicht konfiguriert.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="230" />
-      <source>Initialization of Background Service</source>
-      <translation>Initialisierung des Hintergrunddienstes</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>Initialization of Background Service</source>
+      <translation>Initialisierung des Hintergrunddienstes</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="232" />
       <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Initialisierung des Hintergrunddienstes &lt;b&gt;{0}&lt;/b&gt; ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="244" />
-      <source>Restart background client?</source>
-      <translation>Hintergrund Client neu starten?</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="245" />
+      <source>Restart background client?</source>
+      <translation>Hintergrund Client neu starten?</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="246" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Hintergund Client für &lt;b&gt;{0}&lt;/b&gt; wurde durch eine Exception gestoppt. Er wird für verschiedene Plugins, wie z.B. die Checker, verwendet.&lt;/p&gt;&lt;p&gt;Wähle:&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Ja'&lt;/b&gt;, um den Client aber nicht den letzten Job neu zu starten&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Wiederholen'&lt;/b&gt;, um den Client und letzten Job neu zu starten&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Nein'&lt;/b&gt;, um den Client nicht neu zu starten.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Hinweis: Der Client kann immer wieder gestartet werden, indem der Einstellungsdialog mit Ok geschlossen wird oder durch das Neuladen/ Wechseln des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="274" />
+      <location filename="../Utilities/BackgroundService.py" line="275" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation>Ein Fehler im Eric Hintergrunddienst hat den Dienst beendet.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="515" />
+      <location filename="../Utilities/BackgroundService.py" line="516" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation>Die Verbindung zu Erics Hintergund Client wurde aus unbekanntem Grund getrennt.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="524" />
-      <source>Background client disconnected.</source>
-      <translation>Hintergrund Client wurde getrennt.</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="525" />
+      <source>Background client disconnected.</source>
+      <translation>Hintergrund Client wurde getrennt.</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="526" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation>Die Verbindung zum Hintergund Client für &lt;b&gt;{0}&lt;/b&gt; wurde aus unbekanntem Grund getrennt.&lt;br&gt;Soll er neu gestartet werden?</translation>
     </message>
@@ -3738,7 +3738,7 @@
       <translation>Drücken, um die Hostsliste zu löschen</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="526" />
+      <location filename="../Cooperation/ChatWidget.py" line="528" />
       <location filename="../Cooperation/ChatWidget.ui" line="0" />
       <source>Clear</source>
       <translation>Löschen</translation>
@@ -3769,156 +3769,156 @@
       <translation>Zeigt den Status des Servers</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="322" />
+      <location filename="../Cooperation/ChatWidget.py" line="324" />
       <location filename="../Cooperation/ChatWidget.py" line="85" />
       <source>Start Server</source>
       <translation>Server starten</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="153" />
+      <location filename="../Cooperation/ChatWidget.py" line="155" />
       <source>! Unknown command: {0}
 </source>
       <translation>! Unbekannter Befehl: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="176" />
+      <location filename="../Cooperation/ChatWidget.py" line="178" />
       <source>* {0} has joined.
 </source>
       <translation>* {0} ist beigetreten.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="193" />
+      <location filename="../Cooperation/ChatWidget.py" line="195" />
       <source>New User</source>
       <translation>Neuer Nutzer</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="194" />
+      <location filename="../Cooperation/ChatWidget.py" line="196" />
       <source>{0} has joined.</source>
       <translation>{0} ist beigetreten.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="217" />
+      <location filename="../Cooperation/ChatWidget.py" line="219" />
       <source>* {0} has left.
 </source>
       <translation>* {0} hat die Sitzung verlassen.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="226" />
+      <location filename="../Cooperation/ChatWidget.py" line="228" />
       <source>User Left</source>
       <translation>Nutzer abgemeldet</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="227" />
+      <location filename="../Cooperation/ChatWidget.py" line="229" />
       <source>{0} has left.</source>
       <translation>{0} hat die Sitzung verlassen.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="255" />
+      <location filename="../Cooperation/ChatWidget.py" line="257" />
       <source>Message from &lt;{0}&gt;</source>
       <translation>Nachricht von &lt;{0}&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="330" />
+      <location filename="../Cooperation/ChatWidget.py" line="332" />
       <source>Stop Server</source>
       <translation>Server anhalten</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="336" />
+      <location filename="../Cooperation/ChatWidget.py" line="338" />
       <source>! Server Error: {0}
 </source>
       <translation>! Serverfehler: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="347" />
+      <location filename="../Cooperation/ChatWidget.py" line="349" />
       <source>Disconnect</source>
       <translation>Unterbrechen</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="351" />
+      <location filename="../Cooperation/ChatWidget.py" line="353" />
       <source>Connect</source>
       <translation>Verbinden</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="515" />
+      <location filename="../Cooperation/ChatWidget.py" line="517" />
       <source>Copy</source>
       <translation>Kopieren</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="519" />
+      <location filename="../Cooperation/ChatWidget.py" line="521" />
       <source>Cut all</source>
       <translation>Alles ausschneiden</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="522" />
+      <location filename="../Cooperation/ChatWidget.py" line="524" />
       <source>Copy all</source>
       <translation>Alles kopieren</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="530" />
+      <location filename="../Cooperation/ChatWidget.py" line="532" />
       <source>Save</source>
       <translation>Speichern</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="588" />
-      <location filename="../Cooperation/ChatWidget.py" line="573" />
+      <location filename="../Cooperation/ChatWidget.py" line="590" />
+      <location filename="../Cooperation/ChatWidget.py" line="575" />
       <source>Save Chat</source>
       <translation>Chat speichern</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="575" />
+      <location filename="../Cooperation/ChatWidget.py" line="577" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="589" />
+      <location filename="../Cooperation/ChatWidget.py" line="591" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="604" />
+      <location filename="../Cooperation/ChatWidget.py" line="606" />
       <source>Error saving Chat</source>
       <translation>Fehlr beim Speichern</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="605" />
+      <location filename="../Cooperation/ChatWidget.py" line="607" />
       <source>&lt;p&gt;The chat contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Inhalt des Chats konnte nicht nach &lt;b&gt;{0}&lt;/b&gt; geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="644" />
+      <location filename="../Cooperation/ChatWidget.py" line="646" />
       <source>Kick User</source>
       <translation>Nutzer ausschließen</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="648" />
+      <location filename="../Cooperation/ChatWidget.py" line="650" />
       <source>Ban User</source>
       <translation>Nutzer bannen</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="652" />
+      <location filename="../Cooperation/ChatWidget.py" line="654" />
       <source>Ban and Kick User</source>
       <translation>Nutzer bannen und ausschließen</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="683" />
+      <location filename="../Cooperation/ChatWidget.py" line="685" />
       <source>* {0} has been kicked.
 </source>
       <translation>* {0} wurde ausgeschlossen.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="700" />
+      <location filename="../Cooperation/ChatWidget.py" line="702" />
       <source>* {0} has been banned.
 </source>
       <translation>* {0} wurde gebannt.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="717" />
+      <location filename="../Cooperation/ChatWidget.py" line="719" />
       <source>* {0} has been banned and kicked.
 </source>
       <translation>* {0} wurde gebannt und ausgeschlossen.
@@ -4871,32 +4871,32 @@
   <context>
     <name>CodeDocumentationViewer</name>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="220" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="222" />
       <source>Code Info Provider:</source>
       <translation>Code Info Provider:</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="238" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="240" />
       <source>Select the code info provider</source>
       <translation>Wähle den Code Info Provider</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="239" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="241" />
       <source>&lt;disabled&gt;</source>
       <translation>&lt;deaktiviert&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="420" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="422" />
       <source>No documentation available</source>
       <translation>Keine Dokumentation verfügbar</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="441" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="443" />
       <source>No source code documentation provider has been registered. This function has been disabled.</source>
       <translation>Es ist kein Provider für Code Dokumentation registriert. Diese Funktion wurde deaktiviert.</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="449" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="451" />
       <source>This function has been disabled.</source>
       <translation>Diese Funktion wurde deaktiviert.</translation>
     </message>
@@ -8820,10 +8820,10 @@
       <translation>&lt;p&gt;Das Update der Slots Liste schlug fehl da ungültige Daten empfangen wurden.&lt;/p&gt;&lt;p&gt;Fehler: {0}&lt;/p&gt;&lt;p&gt;Daten: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="608" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="505" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="467" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="455" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="604" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="501" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="463" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="451" />
       <location filename="../Project/CreateDialogCodeDialog.py" line="419" />
       <source>Code Generation</source>
       <translation>Codeerzeugung</translation>
@@ -8834,22 +8834,22 @@
       <translation>&lt;p&gt;Codegenerierung für die Projektsprache "{0}" wird nicht unterstützt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="456" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="452" />
       <source>&lt;p&gt;No code template file available for project type "{0}".&lt;/p&gt;</source>
       <translation>&lt;p&gt;Es ist keine Code Vorlagedatei für den Projekttyp "{0}" verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="468" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="464" />
       <source>&lt;p&gt;Could not open the code template file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Codevorlagendatei „{0}“ konnte nicht geöffnet werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="506" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="502" />
       <source>&lt;p&gt;Could not open the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Quelltextdatei „{0}“ konnte nicht geöffnet werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="609" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="605" />
       <source>&lt;p&gt;Could not write the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Quelltextdatei „{0}“ konnte nicht geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -9357,676 +9357,676 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="207" />
+      <location filename="../Debugger/DebugUI.py" line="210" />
       <source>Notification</source>
       <translation>Benachrichtigung</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="234" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="237" />
       <source>Run Script</source>
       <translation>Skript ausführen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="236" />
+      <location filename="../Debugger/DebugUI.py" line="239" />
       <source>&amp;Run Script...</source>
       <translation>&amp;Skript ausführen …</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="242" />
+      <location filename="../Debugger/DebugUI.py" line="245" />
       <source>Run the current Script</source>
       <translation>Das aktuelle Skript ausführen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="244" />
+      <location filename="../Debugger/DebugUI.py" line="247" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Skript ausführen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Skript außerhalb des Debuggers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2386" />
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="255" />
+      <location filename="../Debugger/DebugUI.py" line="2389" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="258" />
       <source>Run Project</source>
       <translation>Projekt ausführen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="257" />
+      <location filename="../Debugger/DebugUI.py" line="260" />
       <source>Run &amp;Project...</source>
       <translation>Projekt &amp;ausführen …</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="263" />
+      <location filename="../Debugger/DebugUI.py" line="266" />
       <source>Run the current Project</source>
       <translation>Das aktuelle Projekt ausführen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="265" />
+      <location filename="../Debugger/DebugUI.py" line="268" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Projekt ausführen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes außerhalb des Debuggers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="277" />
+      <location filename="../Debugger/DebugUI.py" line="280" />
       <source>Coverage run of Script</source>
       <translation>Abdeckungslauf des Skriptes</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="279" />
+      <location filename="../Debugger/DebugUI.py" line="282" />
       <source>Coverage run of Script...</source>
       <translation>Abdeckungslauf des Skriptes …</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="286" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Führe einen Abdeckungslauf des aktuellen Skriptes durch</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Führe einen Abdeckungslauf des aktuellen Skriptes durch</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abdeckungslauf des Skriptes&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle eines Abdeckungsanalysetools aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="300" />
+      <location filename="../Debugger/DebugUI.py" line="303" />
       <source>Coverage run of Project</source>
       <translation>Abdeckungslauf des Projektes</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="302" />
+      <location filename="../Debugger/DebugUI.py" line="305" />
       <source>Coverage run of Project...</source>
       <translation>Abdeckungslauf des Projektes …</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="309" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>Führe einen Abdeckungslauf des aktuellen Projektes durch</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>Führe einen Abdeckungslauf des aktuellen Projektes durch</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abdeckungslauf des Projektes&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle eines Abdeckungsanalysetools aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="324" />
+      <location filename="../Debugger/DebugUI.py" line="327" />
       <source>Profile Script</source>
       <translation>Skriptprofil</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="326" />
+      <location filename="../Debugger/DebugUI.py" line="329" />
       <source>Profile Script...</source>
       <translation>Skriptprofil …</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="332" />
+      <location filename="../Debugger/DebugUI.py" line="335" />
       <source>Profile the current Script</source>
       <translation>Profil des aktuellen Skriptes erstellen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="334" />
+      <location filename="../Debugger/DebugUI.py" line="337" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Skriptprofil&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle des Python-Profilers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="344" />
+      <location filename="../Debugger/DebugUI.py" line="347" />
       <source>Profile Project</source>
       <translation>Projektprofil</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="346" />
+      <location filename="../Debugger/DebugUI.py" line="349" />
       <source>Profile Project...</source>
       <translation>Projektprofil …</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="352" />
+      <location filename="../Debugger/DebugUI.py" line="355" />
       <source>Profile the current Project</source>
       <translation>Profil des aktuellen Projektes erstellen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="354" />
+      <location filename="../Debugger/DebugUI.py" line="357" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Projektprofil&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle des Python-Profilers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="365" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="368" />
       <source>Debug Script</source>
       <translation>Skript debuggen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="367" />
+      <location filename="../Debugger/DebugUI.py" line="370" />
       <source>&amp;Debug Script...</source>
       <translation>Skript &amp;debuggen …</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="373" />
+      <location filename="../Debugger/DebugUI.py" line="376" />
       <source>Debug the current Script</source>
       <translation>Das aktuelle Skript debuggen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="375" />
+      <location filename="../Debugger/DebugUI.py" line="378" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Skript debuggen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des aktuellen Editors als aktuelle Zeile. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2579" />
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="387" />
+      <location filename="../Debugger/DebugUI.py" line="2582" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="390" />
       <source>Debug Project</source>
       <translation>Projekt debuggen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="389" />
+      <location filename="../Debugger/DebugUI.py" line="392" />
       <source>Debug &amp;Project...</source>
       <translation>&amp;Projekt debuggen…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="395" />
+      <location filename="../Debugger/DebugUI.py" line="398" />
       <source>Debug the current Project</source>
       <translation>Das aktuelle Projekt debuggen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="397" />
+      <location filename="../Debugger/DebugUI.py" line="400" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Projekt debuggen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des Hauptskriptes des aktuellen Projektes als aktuelle Zeile. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2895" />
-      <location filename="../Debugger/DebugUI.py" line="411" />
-      <location filename="../Debugger/DebugUI.py" line="409" />
+      <location filename="../Debugger/DebugUI.py" line="2898" />
+      <location filename="../Debugger/DebugUI.py" line="414" />
+      <location filename="../Debugger/DebugUI.py" line="412" />
       <source>Restart</source>
       <translation>Neu starten</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="417" />
+      <location filename="../Debugger/DebugUI.py" line="420" />
       <source>Restart the last debugged script</source>
       <translation>Das zuletzt untersuchte Skript neu starten</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="419" />
+      <location filename="../Debugger/DebugUI.py" line="422" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Neu starten&lt;/b&gt;&lt;p&gt;Setzt die Kommandozeilenparameter und setzt die erste ausführbare Python-Zeile des zuletzt untersuchten Skriptes. Falls ungesicherte Änderungen vorliegen, so werden diese zunächst gesichert.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="628" />
-      <location filename="../Debugger/DebugUI.py" line="433" />
-      <location filename="../Debugger/DebugUI.py" line="431" />
+      <location filename="../Debugger/DebugUI.py" line="631" />
+      <location filename="../Debugger/DebugUI.py" line="436" />
+      <location filename="../Debugger/DebugUI.py" line="434" />
       <source>Stop</source>
       <translation>Anhalten</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="439" />
+      <location filename="../Debugger/DebugUI.py" line="442" />
       <source>Stop the running script.</source>
       <translation>Halte das laufende Skript an.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="441" />
+      <location filename="../Debugger/DebugUI.py" line="444" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Anhalten&lt;/b&gt;&lt;p&gt;Dies hält das Skript, das im Debugger läuft, an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="452" />
+      <location filename="../Debugger/DebugUI.py" line="455" />
       <source>Continue</source>
       <translation>Weiter</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="454" />
+      <location filename="../Debugger/DebugUI.py" line="457" />
       <source>&amp;Continue</source>
       <translation>&amp;Weiter</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="460" />
+      <location filename="../Debugger/DebugUI.py" line="463" />
       <source>Continue running the program from the current line</source>
       <translation>Führe das laufende Programm ab der aktuellen Zeile weiter aus</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="462" />
+      <location filename="../Debugger/DebugUI.py" line="465" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Weiter&lt;/b&gt;&lt;p&gt;Führe das laufende Programm ab der aktuellen Zeile weiter aus. Das Programm wird angehalten, wenn es das Ende oder einen Haltepunkt erreicht.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="473" />
+      <location filename="../Debugger/DebugUI.py" line="476" />
       <source>Continue to Cursor</source>
       <translation>Weiter bis Einfügemarke</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="475" />
+      <location filename="../Debugger/DebugUI.py" line="478" />
       <source>Continue &amp;To Cursor</source>
       <translation>Weiter bis Einfüge&amp;marke</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="482" />
+      <location filename="../Debugger/DebugUI.py" line="485" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="488" />
+      <location filename="../Debugger/DebugUI.py" line="491" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Weiter bis Einfügemarke&lt;/b&gt;&lt;p&gt;Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="498" />
+      <location filename="../Debugger/DebugUI.py" line="501" />
       <source>Continue Until</source>
       <translation>Weiter Bis</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="500" />
+      <location filename="../Debugger/DebugUI.py" line="503" />
       <source>Continue &amp;Until</source>
       <translation>Weiter &amp;Bis</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="507" />
+      <location filename="../Debugger/DebugUI.py" line="510" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke oder dem Verlassen des aktuellen Frame ausführen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="513" />
+      <location filename="../Debugger/DebugUI.py" line="516" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Weiter Bis&lt;/b&gt;&lt;p&gt;Das Programm von der aktuellen Zeile bis zur Einfügemarke /größer als die aktuelle Zeile) oder dem Verlassen des aktuellen Frame ausführen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="524" />
+      <location filename="../Debugger/DebugUI.py" line="527" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation>Instruktionszeiger zur Cursorposition bewegen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="526" />
+      <location filename="../Debugger/DebugUI.py" line="529" />
       <source>&amp;Jump To Cursor</source>
       <translation>Zum Cursor &amp;springen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="533" />
+      <location filename="../Debugger/DebugUI.py" line="536" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation>Überspringe den Programmteil von der aktuellen Zeile bis zur aktuellen Cursorposition</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="539" />
+      <location filename="../Debugger/DebugUI.py" line="542" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Instruktionszeiger zur Cursorposition bewegen&lt;/b&gt;&lt;p&gt;Bewege den Python Instruktionszeiger zur aktuellen Cursorposition, ohne Programmteile dazwischen auszuführen.&lt;/p&gt;&lt;p&gt;Es ist nicht möglich, aus einer Funktion herauszuspringen oder in eine Schleife hinein. In diesem Fall wird eine Fehlermeldung im Log-Fenster ausgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="553" />
+      <location filename="../Debugger/DebugUI.py" line="556" />
       <source>Single Step</source>
       <translation>Einzelschritt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="555" />
+      <location filename="../Debugger/DebugUI.py" line="558" />
       <source>Sin&amp;gle Step</source>
       <translation>&amp;Einzelschritt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="561" />
+      <location filename="../Debugger/DebugUI.py" line="564" />
       <source>Execute a single Python statement</source>
       <translation>Führe eine einzelne Python-Anweisung aus</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="563" />
+      <location filename="../Debugger/DebugUI.py" line="566" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Einzelschritt&lt;/b&gt;&lt;p&gt;Führe eine einzelne Python-Anweisung aus. Ist die Anweisung eine &lt;tt&gt;import&lt;/tt&gt;-Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle bei der nächsten Anweisung an den Debugger zurückgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="575" />
+      <location filename="../Debugger/DebugUI.py" line="578" />
       <source>Step Over</source>
       <translation>Prozedurschritt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="577" />
+      <location filename="../Debugger/DebugUI.py" line="580" />
       <source>Step &amp;Over</source>
       <translation>&amp;Prozedurschritt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="584" />
+      <location filename="../Debugger/DebugUI.py" line="587" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Führe eine einzelne Python-Anweisung aus, bleibe aber in der aktuellen Ebene</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="590" />
+      <location filename="../Debugger/DebugUI.py" line="593" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Prozedurschritt&lt;/b&gt;&lt;p&gt;Führe eine einzelne Python-Anweisung aus, bleibe jedoch in der aktuellen Ebene. Ist die Anweisung eine &lt;tt&gt;import&lt;/tt&gt;-Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle nach Beendigung der Anweisung an den Debugger zurückgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="603" />
+      <location filename="../Debugger/DebugUI.py" line="606" />
       <source>Step Out</source>
       <translation>Rückschritt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="605" />
+      <location filename="../Debugger/DebugUI.py" line="608" />
       <source>Step Ou&amp;t</source>
       <translation>&amp;Rückschritt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="612" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Führe Python-Anweisung bis zum Rücksprung aus</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Führe Python-Anweisung bis zum Rücksprung aus</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Rücksprung&lt;/b&gt;&lt;p&gt;Führe Python-Anweisungen bis zum Rücksprung aus. Sind die Anweisungen innerhalb einer &lt;tt&gt;import&lt;/tt&gt;-Anweisung, eines Klassenkonstruktors oder einer Methode oder Funktionsaufrufes, so wird die Kontrolle nach dem Rücksprung an den Debugger zurückgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="630" />
+      <location filename="../Debugger/DebugUI.py" line="633" />
       <source>&amp;Stop</source>
       <translation>An&amp;halten</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="636" />
+      <location filename="../Debugger/DebugUI.py" line="639" />
       <source>Stop debugging</source>
       <translation>Beende das Debuggen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="638" />
+      <location filename="../Debugger/DebugUI.py" line="641" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Anhalten&lt;/b&gt;&lt;p&gt;Beende das Debuggen des laufenden Programms.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="644" />
+      <location filename="../Debugger/DebugUI.py" line="647" />
       <source>Variables Type Filter</source>
       <translation>Variablentypenfilter</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="645" />
+      <location filename="../Debugger/DebugUI.py" line="648" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>&amp;Variablentypenfilter …</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="651" />
+      <location filename="../Debugger/DebugUI.py" line="654" />
       <source>Configure variables type filter</source>
       <translation>Konfiguriert die Variablentypenfilter</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="653" />
+      <location filename="../Debugger/DebugUI.py" line="656" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Variablenfilter&lt;/b&gt;&lt;p&gt;Konfigurieren der Variablenfilter. Nur Variablen mit einem Typ, der nicht ausgewählt ist, werden im globalen oder lokalen Variablenfenster während einer Debuggingsitzung angezeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="664" />
+      <location filename="../Debugger/DebugUI.py" line="667" />
       <source>Exceptions Filter</source>
       <translation>Ausnahmen Filter</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="665" />
+      <location filename="../Debugger/DebugUI.py" line="668" />
       <source>&amp;Exceptions Filter...</source>
       <translation>&amp;Ausnahmenfilter …</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="671" />
+      <location filename="../Debugger/DebugUI.py" line="674" />
       <source>Configure exceptions filter</source>
       <translation>Konfiguriert den Ausnahmenfilter</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="673" />
+      <location filename="../Debugger/DebugUI.py" line="676" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ausnahmen Filter&lt;/b&gt;&lt;p&gt;Konfiguriert den Ausnahmenfilter. Nur Ausnahmen, deren Typ aufgelistet sind, werden während einer Debug-Sitzung angezeigt.&lt;/p&gt;&lt;p&gt;Bitte beachten Sie, dass alle nicht abgefangenen Ausnahmen unabhängig von der Liste angezeigt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="685" />
+      <location filename="../Debugger/DebugUI.py" line="688" />
       <source>Ignored Exceptions</source>
       <translation>Ignorierte Ausnahmen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="686" />
+      <location filename="../Debugger/DebugUI.py" line="689" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>&amp;Ignorierte Ausnahmen …</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="692" />
+      <location filename="../Debugger/DebugUI.py" line="695" />
       <source>Configure ignored exceptions</source>
       <translation>Konfiguriert ignorierte Ausnahmen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="694" />
+      <location filename="../Debugger/DebugUI.py" line="697" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ignorierte Ausnahmen&lt;/b&gt;&lt;p&gt;Konfiguriert die ignorierten Ausnahmen. Nur Ausnahmen, deren Typ nicht aufgelistet sind, werden während einer Debug-Sitzung angezeigt.&lt;/p&gt;&lt;p&gt;Bitte beachten Sie, dass nicht abgefangenen Ausnahmen nicht ignoriert werden können.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="716" />
-      <location filename="../Debugger/DebugUI.py" line="710" />
-      <location filename="../Debugger/DebugUI.py" line="708" />
+      <location filename="../Debugger/DebugUI.py" line="719" />
+      <location filename="../Debugger/DebugUI.py" line="713" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Toggle Breakpoint</source>
       <translation>Haltepunkt setzen/löschen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="714" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="718" />
+      <location filename="../Debugger/DebugUI.py" line="721" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Haltepunkt setzen/löschen&lt;/b&gt;&lt;p&gt;Setzt/löscht einen Haltepunkt in der aktuellen Zeile des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="736" />
-      <location filename="../Debugger/DebugUI.py" line="728" />
+      <location filename="../Debugger/DebugUI.py" line="739" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Edit Breakpoint</source>
       <translation>Haltepunkt bearbeiten</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="730" />
+      <location filename="../Debugger/DebugUI.py" line="733" />
       <source>Edit Breakpoint...</source>
       <translation>Haltepunkt bearbeiten …</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="734" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="738" />
+      <location filename="../Debugger/DebugUI.py" line="741" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Haltepunkt bearbeiten&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Bearbeiten der Haltepunkteigenschaften. Es wird mit der aktuellen Zeile des aktuellen Editors gearbeitet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="756" />
-      <location filename="../Debugger/DebugUI.py" line="750" />
-      <location filename="../Debugger/DebugUI.py" line="748" />
+      <location filename="../Debugger/DebugUI.py" line="759" />
+      <location filename="../Debugger/DebugUI.py" line="753" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Next Breakpoint</source>
       <translation>Nächster Haltepunkt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="754" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="758" />
+      <location filename="../Debugger/DebugUI.py" line="761" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nächster Haltepunkt&lt;/b&gt;&lt;p&gt;Gehe zum nächsten Haltepunkt des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="775" />
-      <location filename="../Debugger/DebugUI.py" line="769" />
-      <location filename="../Debugger/DebugUI.py" line="767" />
+      <location filename="../Debugger/DebugUI.py" line="778" />
+      <location filename="../Debugger/DebugUI.py" line="772" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Previous Breakpoint</source>
       <translation>Vorheriger Haltepunkt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="773" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="777" />
+      <location filename="../Debugger/DebugUI.py" line="780" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Vorheriger Haltepunkt&lt;/b&gt;&lt;p&gt;Gehe zum vorherigen Haltepunkt des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="793" />
-      <location filename="../Debugger/DebugUI.py" line="787" />
-      <location filename="../Debugger/DebugUI.py" line="786" />
+      <location filename="../Debugger/DebugUI.py" line="796" />
+      <location filename="../Debugger/DebugUI.py" line="790" />
+      <location filename="../Debugger/DebugUI.py" line="789" />
       <source>Clear Breakpoints</source>
       <translation>Haltepunkte löschen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="795" />
+      <location filename="../Debugger/DebugUI.py" line="798" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Haltepunkte löschen&lt;/b&gt;&lt;p&gt;Haltepunkte aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="819" />
+      <location filename="../Debugger/DebugUI.py" line="822" />
       <source>&amp;Debug</source>
       <translation>Debu&amp;g</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="821" />
+      <location filename="../Debugger/DebugUI.py" line="824" />
       <source>Sta&amp;rt</source>
       <translation>Sta&amp;rt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="823" />
+      <location filename="../Debugger/DebugUI.py" line="826" />
       <source>&amp;Breakpoints</source>
       <translation>&amp;Haltepunkte</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="866" />
-      <location filename="../Debugger/DebugUI.py" line="864" />
+      <location filename="../Debugger/DebugUI.py" line="869" />
+      <location filename="../Debugger/DebugUI.py" line="867" />
       <source>Start</source>
       <translation>Start</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="879" />
-      <location filename="../Debugger/DebugUI.py" line="877" />
+      <location filename="../Debugger/DebugUI.py" line="882" />
+      <location filename="../Debugger/DebugUI.py" line="880" />
       <source>Debug</source>
       <translation>Debug</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1342" />
+      <location filename="../Debugger/DebugUI.py" line="1345" />
       <source>Message: {0}</source>
       <translation>Nachricht: {0}</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1348" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Programm wurde mit dem Status {0} beendet.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1353" />
+      <location filename="../Debugger/DebugUI.py" line="1356" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; wurde mit dem Status {1} beendet.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1365" />
+      <location filename="../Debugger/DebugUI.py" line="1368" />
       <source>Program terminated</source>
       <translation>Programm beendet</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1401" />
+      <location filename="../Debugger/DebugUI.py" line="1404" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>Das untersuchte Programm enthält einen unspezifizierten Syntaxfehler.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1421" />
+      <location filename="../Debugger/DebugUI.py" line="1424" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; enthält den Syntaxfehler &lt;b&gt;{1}&lt;/b&gt; in Zeile &lt;b&gt;{2}&lt;/b&gt;, Position &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1449" />
+      <location filename="../Debugger/DebugUI.py" line="1452" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Eine nicht abgefangene Ausnahme ist aufgetreten. Details finden Sie im Shell-Fenster.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1498" />
+      <location filename="../Debugger/DebugUI.py" line="1501" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das untersuchte Programm erzeugte die Ausnahme &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;„&lt;b&gt;{1}&lt;/b&gt;“&lt;br&gt;Datei: &lt;b&gt;{2}&lt;/b&gt;, Zeile: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Anhalten?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1516" />
+      <location filename="../Debugger/DebugUI.py" line="1519" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das untersuchte Programm erzeugte die Ausnahme &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;„&lt;b&gt;{1}&lt;/b&gt;“&lt;br&gt;Datei: &lt;b&gt;{2}&lt;/b&gt;, Zeile: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1532" />
+      <location filename="../Debugger/DebugUI.py" line="1535" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das untersuchte Programm erzeugte die Ausnahme &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;„&lt;b&gt;{1}&lt;/b&gt;“&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1594" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Programm erzeugte das Signal "{0}".&lt;br/&gt;Datei: &lt;b&gt;{1}&lt;/b&gt;, Zeile: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1609" />
+      <location filename="../Debugger/DebugUI.py" line="1612" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>Das untersuchte Programm wurde unerwartet beendet.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1670" />
+      <location filename="../Debugger/DebugUI.py" line="1673" />
       <source>No locals available.</source>
       <translation>Keine lokalen Variablen verfügbar.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1717" />
+      <location filename="../Debugger/DebugUI.py" line="1720" />
       <source>Breakpoint Condition Error</source>
       <translation>Fehler in Haltepunktbedingung</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1718" />
+      <location filename="../Debugger/DebugUI.py" line="1721" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Bedingung des Haltepunktes &lt;b&gt;{0}, {1}&lt;/b&gt; enthält einen Syntaxfehler.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1779" />
+      <location filename="../Debugger/DebugUI.py" line="1782" />
       <source>Watch Expression Error</source>
       <translation>Fehler in Beobachtungsausdruck</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1780" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Beobachtungsausdrucks &lt;b&gt;{0}&lt;/b&gt; enthält einen Syntaxfehler.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1810" />
+      <location filename="../Debugger/DebugUI.py" line="1813" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ existiert bereits.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1815" />
+      <location filename="../Debugger/DebugUI.py" line="1818" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ für die Variable &lt;b&gt;{1}&lt;/b&gt; existiert bereits.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1821" />
+      <location filename="../Debugger/DebugUI.py" line="1824" />
       <source>Watch expression already exists</source>
       <translation>Beobachtungsausdruck existiert bereits</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1986" />
-      <location filename="../Debugger/DebugUI.py" line="1977" />
+      <location filename="../Debugger/DebugUI.py" line="1989" />
+      <location filename="../Debugger/DebugUI.py" line="1980" />
       <source>Coverage Run of Project</source>
       <translation>Abdeckungslauf des Projektes</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1979" />
+      <location filename="../Debugger/DebugUI.py" line="1982" />
       <source>Coverage Run of Script</source>
       <translation>Abdeckungslauf des Skriptes</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2387" />
-      <location filename="../Debugger/DebugUI.py" line="2189" />
-      <location filename="../Debugger/DebugUI.py" line="1987" />
+      <location filename="../Debugger/DebugUI.py" line="2390" />
+      <location filename="../Debugger/DebugUI.py" line="2192" />
+      <location filename="../Debugger/DebugUI.py" line="1990" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2188" />
-      <location filename="../Debugger/DebugUI.py" line="2179" />
+      <location filename="../Debugger/DebugUI.py" line="2191" />
+      <location filename="../Debugger/DebugUI.py" line="2182" />
       <source>Profile Run of Project</source>
       <translation>Profillauf des Projekts</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2181" />
+      <location filename="../Debugger/DebugUI.py" line="2184" />
       <source>Profile Run of Script</source>
       <translation>Profillauf des Skriptes</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2580" />
+      <location filename="../Debugger/DebugUI.py" line="2583" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>Das aktuelle Projekt besitzt kein Hauptskript. Debuggen ist nicht möglich.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3252" />
+      <location filename="../Debugger/DebugUI.py" line="3255" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die ausgewählte Datei &lt;b&gt;{0}&lt;/b&gt; befindet sich auf einem eric-ide Server. Es ist jedoch kein solcher Server verbunden. Abbruch...&lt;/p&gt;</translation>
     </message>
@@ -33477,7 +33477,6 @@
   <context>
     <name>HelpDocumentationPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="64" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="60" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="56" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="52" />
@@ -33604,21 +33603,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>PySide2 Documentation</source>
-      <translation>PySide2-Dokumentation</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>Enter the PySide2 documentation directory</source>
-      <translation>Gib das PySide2-Dokumentationsverzeichnis ein</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
-      <translation>&lt;b&gt;Hinweis&lt;/b&gt;: Leer lassen, um die Umgebungsvariable PYSIDE2DOCDIR zu verwenden, wenn sie gesetzt ist.</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
       <source>PySide6 Documentation</source>
       <translation>PySide6-Dokumentation</translation>
     </message>
@@ -34034,29 +34018,19 @@
       <translation>Lesezeichenliste anzeigen</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
       <source>eric API Documentation</source>
       <translation>eric-API-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>Python 3 Documentation</source>
-      <translation>Python 3-Dokumentation</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>Qt5 Documentation</source>
-      <translation>Qt5 Dokumentation</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
-      <source>Qt6 Documentation</source>
-      <translation>Qt6 Dokumentation</translation>
+      <source>Python 3 Documentation</source>
+      <translation>Python 3-Dokumentation</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
-      <source>PyQt5 Documentation</source>
-      <translation>PyQt5-Dokumentation</translation>
+      <source>Qt6 Documentation</source>
+      <translation>Qt6 Dokumentation</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="453" />
@@ -34065,73 +34039,68 @@
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="454" />
-      <source>PySide2 Documentation</source>
-      <translation>PySide2-Dokumentation</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="455" />
       <source>PySide6 Documentation</source>
       <translation>PySide6-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="512" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>Open HTML File</source>
       <translation>HTML Datei öffnen</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="514" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="513" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation>HTML Dateien (*.htm *.html);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="701" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="700" />
       <source>Help Engine</source>
       <translation>Hilfe</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="725" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="724" />
       <source>Looking for Documentation...</source>
       <translation>Suche nach Dokumentation...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="736" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="735" />
       <source>eric Help Viewer</source>
       <translation>eric Hilfeanzeige</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
       <source>Manage QtHelp Documents</source>
       <translation>QtHelp-Dokumente verwalten</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="764" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="763" />
       <source>Reindex Documentation</source>
       <translation>Dokumentation reindizieren</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="769" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="768" />
       <source>Configure Help Documentation</source>
       <translation>Hilfedokumentation konfigurieren</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="862" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="842" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="861" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="841" />
       <source>Clear History</source>
       <translation>Chronik löschen</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="966" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="965" />
       <source>Updating search index</source>
       <translation>Aktualisiere Suchindex</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1024" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1023" />
       <source>Filtered by: </source>
       <translation>Filter: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1060" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1054" />
       <source>Unfiltered</source>
       <translation>Ungefiltert</translation>
     </message>
@@ -52281,7 +52250,7 @@
       <translation>&lt;p&gt;Die Wörterbuchliste konnte nicht von {0} heruntergeladen werden.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="415" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="416" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="221" />
       <source>No connection to Internet.</source>
       <translation>Keine Verbindung zum Internet.</translation>
@@ -52317,24 +52286,24 @@
       <translation>{0} ({1})</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="435" />
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="411" />
-      <source>Error downloading dictionary file</source>
-      <translation>Fehler beim Herunterladen der Wörterbuchdatei</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="436" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="412" />
+      <source>Error downloading dictionary file</source>
+      <translation>Fehler beim Herunterladen der Wörterbuchdatei</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="437" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="413" />
       <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die angefragte Wörterbuchdatei konnte nicht von {0} heruntergeladen werden.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="450" />
-      <source>Error downloading dictionary</source>
-      <translation>Fehler beim Herunterladen der Wörterbuchdatei</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="451" />
+      <source>Error downloading dictionary</source>
+      <translation>Fehler beim Herunterladen der Wörterbuchdatei</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="452" />
       <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das heruntergeladene Wörterbucharchiv ist fehlerhaft. Überspringe es.&lt;/p&gt;</translation>
     </message>
@@ -54211,7 +54180,7 @@
       <translation>Drücken, um ein Chartfenster zur Darstellung der vom ausgewählten Gerät empfangenen Daten zu öffnen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="459" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="460" />
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
       <source>Press to connect the selected device</source>
       <translation>Drücken, um eine Verbindung mit den ausgewählten Gerät herzustellen</translation>
@@ -54227,7 +54196,7 @@
       <translation>&lt;h3&gt;Das Paket QtSerialPort ist nicht verfügbar.&lt;br/&gt;Die MicroPython Unterstützung wird deaktiviert.&lt;/h3&gt;</translation>
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="192" />
       <source>%n supported serial device(s) detected.</source>
       <translation>
         <numerusform>%n unterstütztes serielles Gerät erkannt.</numerusform>
@@ -54235,18 +54204,18 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="205" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="206" />
       <source>{0} - {1} ({2})</source>
       <comment>board name, description, port name</comment>
       <translation>{0} - {1} ({2})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="228" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="229" />
       <source>No supported serial devices detected.</source>
       <translation>Keine unterstützten seriellen Geräte erkannt.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="233" />
       <source>
 %n unknown device(s) for manual selection.</source>
       <translation>
@@ -54257,17 +54226,17 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="239" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="240" />
       <source>Manual Selection</source>
       <translation>Manuelle Auswahl</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="250" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="251" />
       <source>WebREPL (manual)</source>
       <translation>WebREPL (manuell)</translation>
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="270" />
       <source>
 %n WebREPL connection(s) defined.</source>
       <translation>
@@ -54278,39 +54247,39 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="329" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="300" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
       <source>Unknown MicroPython Device</source>
       <translation>Unbekanntes MicroPython Gerät</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="302" />
       <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href="mailto:{1}"&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Diese ubekannten seriellen Geräte wurden erkannt.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Falls es sich um ein MicroPython Board handelt, melden sie es bitte zusammen mit dem Boardnamen und einer Kurzbeschreibung an &lt;a href="mailto:{1}"&gt; die eric Fehlermitteilungsadresse&lt;/a&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="313" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="314" />
       <source>{0} (0x{1:04x}/0x{2:04x})</source>
       <comment>description, VID, PID</comment>
       <translation>{0} (0x{1:04x}/0x{2:04x})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="331" />
       <source>Would you like to add them to the list of manually configured devices?</source>
       <translation>Sollen sie zur Liste der manuell konfigurierten Geräte hinzugefügt werden?</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="454" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="455" />
       <source>Press to disconnect the current device</source>
       <translation>Drücken, um die Verbindung zum aktuelle Geräte zu trennen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="491" />
-      <source>No device attached</source>
-      <translation>Kein Gerät angeschlossen</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="492" />
+      <source>No device attached</source>
+      <translation>Kein Gerät angeschlossen</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="493" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -54323,353 +54292,353 @@
 Drücke zum Abschluss den Resetknopf des Gerätes und warte ein paar Sekunden vor einem neuen Versuch.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
       <source>Start REPL</source>
       <translation>REPL starten</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="523" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Eingabeaufforderung kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="731" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="718" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
       <source>Serial Device Connect</source>
       <translation>Serielle Verbindung</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="720" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Gerät am seriellen Port &lt;b&gt;{0}&lt;/b&gt; antwortet nicht. Es hat wahrscheinlich keine MicroPython Firmware geflasht.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="726" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Kann keine Verbindung zum Gerät an der seriellen Schnittstelle &lt;b&gt;{0}&lt;/b&gt; herstellen.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Ursache:&lt;/b&gt; {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1198" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1190" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="729" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="730" />
       <source>unknown</source>
       <translation>unbekannt</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="772" />
-      <source>Run Script</source>
-      <translation>Skript ausführen</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
-      <source>There is no editor open. Abort...</source>
-      <translation>Es ist kein Editor offen. Abbruch...</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
-      <source>The current editor does not contain a script. Abort...</source>
-      <translation>Der aktuelle Editortext enthält kein Skript. Abbruch...</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
+      <source>Run Script</source>
+      <translation>Skript ausführen</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="774" />
+      <source>There is no editor open. Abort...</source>
+      <translation>Es ist kein Editor offen. Abbruch...</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="783" />
+      <source>The current editor does not contain a script. Abort...</source>
+      <translation>Der aktuelle Editortext enthält kein Skript. Abbruch...</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="792" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Skript kann nicht ausgeführt werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="827" />
-      <source>Start Chart</source>
-      <translation>Chart starten</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="828" />
+      <source>Start Chart</source>
+      <translation>Chart starten</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="829" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Chart kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="843" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="844" />
       <source>µPy Chart</source>
       <translation>µPy Chart</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="860" />
-      <source>Unsaved Chart Data</source>
-      <translation>Nicht gesicherte Chart Daten</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="861" />
+      <source>Unsaved Chart Data</source>
+      <translation>Nicht gesicherte Chart Daten</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="862" />
       <source>The chart contains unsaved data.</source>
       <translation>Das Chart enthält ungesicherte Daten.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="909" />
-      <source>Start File Manager</source>
-      <translation>Dateimanager starten</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="910" />
+      <source>Start File Manager</source>
+      <translation>Dateimanager starten</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="911" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Dateimanager kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="930" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="931" />
       <source>µPy Files</source>
       <translation>µPy Dateien</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1017" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1018" />
       <source>Downloads</source>
       <translation>Downloads</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
       <source>Show Version</source>
       <translation>Version anzeigen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1067" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Implementation</source>
       <translation>Implementierung anzeigen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1071" />
       <source>Show Board Data</source>
       <translation>Board Daten anzeigen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Synchronize Time</source>
       <translation>Zeit synchronisieren</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1079" />
       <source>Show Device Time</source>
       <translation>Gerätezeit anzeigen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1080" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Local Time</source>
       <translation>Lokale Zeit anzeigen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1083" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1084" />
       <source>Show Time</source>
       <translation>Zeit anzeigen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1087" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1088" />
       <source>Show Builtin Modules</source>
       <translation>Eingebaute Module anzeigen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1691" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1099" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1091" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1092" />
       <source>Install Package</source>
       <translation>Paket installieren</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1730" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1727" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1095" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1096" />
       <source>Install Packages</source>
       <translation>Pakete installieren</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1503" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1105" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1504" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1106" />
       <source>Compile Python File</source>
       <translation>Python Datei übersetzen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1529" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1520" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1109" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1530" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1110" />
       <source>Compile Current Editor</source>
       <translation>Aktuellen Editor übersetzen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1130" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1131" />
       <source>Download Firmware</source>
       <translation>Firmware herunterladen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1137" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Show Documentation</source>
       <translation>Dokumentation anzeigen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1140" />
-      <source>Convert To UF2</source>
-      <translation>Zu UF2 konvertieren</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1141" />
+      <source>Convert To UF2</source>
+      <translation>Zu UF2 konvertieren</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
       <source>Flash UF2 Device</source>
       <translation>UF2 Gerät flashen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
       <source>Manage Unknown Devices</source>
       <translation>Unbekannte Geräte verwalten</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
       <source>Ignored Serial Devices</source>
       <translation>Ignorierte Serielle Geräte</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1150" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Configure</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1153" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1154" />
       <source>Quit</source>
       <translation>Beenden</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1162" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1163" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation>&lt;h3&gt;Versionsinformationen des Gerätes&lt;/h3&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1173" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
-      <source>Device Version Information</source>
-      <translation>Versionsinformationen des Gerätes</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1174" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1170" />
+      <source>Device Version Information</source>
+      <translation>Versionsinformationen des Gerätes</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1175" />
       <source>No version information available.</source>
       <translation>Keine Versionsinformationen verfügbar.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1204" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1205" />
       <source> ({0})</source>
       <translation> ({0})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1220" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1211" />
-      <source>Device Implementation Information</source>
-      <translation>Informationen zur Implementierung</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
-      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation>&lt;h3&gt;Informationen zur Implementierung&lt;/h3&gt;&lt;p&gt;Dieses Gerät enthält &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
+      <source>Device Implementation Information</source>
+      <translation>Informationen zur Implementierung</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1213" />
+      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation>&lt;h3&gt;Informationen zur Implementierung&lt;/h3&gt;&lt;p&gt;Dieses Gerät enthält &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>No device implementation information available.</source>
       <translation>Keine Informationen zur Implementierung verfügbar.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Zeit des angeschlossenen Gerätes wurde mit der lokalen Zeit synchronisiert.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1296" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1297" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Datum und Zeit des Gerätes&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1304" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1305" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Datum und Zeit des Gerätes&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1320" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1321" />
       <source>Device Date and Time</source>
       <translation>Datum und Zeit des Gerätes</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1332" />
-      <source>Local Date and Time</source>
-      <translation>Lokales Datum und Zeit</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1333" />
+      <source>Local Date and Time</source>
+      <translation>Lokales Datum und Zeit</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1334" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Lokales Datum und Zeit&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1374" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1357" />
-      <source>Date and Time</source>
-      <translation>Datum und Zeit</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
-      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-      <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Lokales Datum und Zeit&lt;/th&gt;&lt;th&gt;Datum und Zeit des Gerätes&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1375" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
+      <source>Date and Time</source>
+      <translation>Datum und Zeit</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1359" />
+      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+      <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Lokales Datum und Zeit&lt;/th&gt;&lt;th&gt;Datum und Zeit des Gerätes&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1376" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Lokales Datum und Zeit&lt;/th&gt;&lt;th&gt;Datum und Zeit des Gerätes&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1399" />
-      <source>Error handling device</source>
-      <translation>Fehler bei Gerätekommunikation</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1400" />
+      <source>Error handling device</source>
+      <translation>Fehler bei Gerätekommunikation</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1401" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Es trat ein Fehler bei der Kommunikation mit dem Gerät auf.&lt;/p&gt;&lt;p&gt;Methode: {0}&lt;/p&gt;&lt;p&gt;Nachricht: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1442" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1443" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation>Der MicroPython Crosscompiler &lt;b&gt;mpy-cross&lt;/b&gt; kann nicht gefunden werden. Stelle sicher, dass er im Suchpfad liegt oder konfiguriere ihn auf der MicroPython Konfigurationsseite.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1468" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1469" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation>Python-Dateien (*.py);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1478" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1479" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation>Die Python Datei &lt;b&gt;{0}&lt;/b&gt; existiert nicht. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1488" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1489" />
       <source>'mpy-cross' Output</source>
       <translation>'mpy-cross' Ausgabe</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1522" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation>Der aktuelle Editortext enthält keine Pythondatei. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1613" />
-      <source>Add Unknown Devices</source>
-      <translation>Unbekannte Geräte hinzufügen</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1614" />
+      <source>Add Unknown Devices</source>
+      <translation>Unbekannte Geräte hinzufügen</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
       <source>Select the devices to be added:</source>
       <translation>Wähle die hinzuzufügenden unbekannten Geräte:</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1664" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1665" />
       <source>Plus any modules on the filesystem.</source>
       <translation>Zusätzlich alle Module im Dateisystem.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1716" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1717" />
       <source>Package '{0}' was installed successfully.</source>
       <translation>Paket '{0}' wurde erfolgreich installiert.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation>Gib die zu installierenden Pakete durch Leerzeichen getrennt ein:</translation>
     </message>
@@ -54677,17 +54646,17 @@
   <context>
     <name>MicroPythonWindow</name>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="81" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="83" />
       <source>MicroPython / CircuitPython Devices</source>
       <translation>MicroPython / CircuitPython Geräte</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Open Browser</source>
       <translation>Browser starten</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Could not start a web browser</source>
       <translation>Der System Web Browser konnte nicht gestartet werden</translation>
     </message>
@@ -59837,164 +59806,164 @@
   <context>
     <name>Pip</name>
     <message>
-      <location filename="../PipInterface/Pip.py" line="157" />
+      <location filename="../PipInterface/Pip.py" line="161" />
       <source>python exited with an error ({0}).</source>
       <translation>python endete mit einem Fehler ({0}).</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="166" />
+      <location filename="../PipInterface/Pip.py" line="170" />
       <source>python did not finish within 30 seconds.</source>
       <translation>python endete nicht innerhalb 30 Sekunden.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="168" />
+      <location filename="../PipInterface/Pip.py" line="172" />
       <source>python could not be started.</source>
       <translation>python konnte nicht gestarted werden.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="229" />
+      <location filename="../PipInterface/Pip.py" line="233" />
       <source>&lt;project&gt;</source>
       <translation>&lt;Projekt&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="254" />
+      <location filename="../PipInterface/Pip.py" line="258" />
       <source>Interpreter for Virtual Environment</source>
       <translation>Interpreter für virtuelle Umgebung</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="255" />
+      <location filename="../PipInterface/Pip.py" line="259" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation>Für die gewählte virtuelle Umgebung ist kein Interpreter konfiguriert.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="308" />
+      <location filename="../PipInterface/Pip.py" line="312" />
       <source>Install PIP</source>
       <translation>PIP installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="355" />
+      <location filename="../PipInterface/Pip.py" line="359" />
       <source>Repair PIP</source>
       <translation>PIP reparieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="487" />
-      <location filename="../PipInterface/Pip.py" line="469" />
+      <location filename="../PipInterface/Pip.py" line="491" />
+      <location filename="../PipInterface/Pip.py" line="473" />
       <source>Upgrade Packages</source>
       <translation>Pakete aktualisieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="470" />
+      <location filename="../PipInterface/Pip.py" line="474" />
       <source>There are no packages except 'eric-ide' or 'PyQt6' left for upgrade.</source>
       <translation>Es sind keine Pakete außer 'eric-ide' und 'PyQt6' für eine Aktualisierung übrig.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="533" />
+      <location filename="../PipInterface/Pip.py" line="537" />
       <source>Install Packages</source>
       <translation>Pakete installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="564" />
+      <location filename="../PipInterface/Pip.py" line="568" />
       <source>Install Packages from Requirements</source>
       <translation>Pakete gem. Anforderungen installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="586" />
+      <location filename="../PipInterface/Pip.py" line="590" />
       <source>Install Project</source>
       <translation>Projekt installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="621" />
-      <location filename="../PipInterface/Pip.py" line="611" />
+      <location filename="../PipInterface/Pip.py" line="625" />
+      <location filename="../PipInterface/Pip.py" line="615" />
       <source>Install 'pyproject' Dependencies</source>
       <translation>Abhängigkeiten gem. 'pyproject' installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="612" />
+      <location filename="../PipInterface/Pip.py" line="753" />
+      <location filename="../PipInterface/Pip.py" line="616" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation>Die ausgewählte 'pyproject.toml' Datei enthält keinen 'project.dependencies' Abschnitt. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="622" />
+      <location filename="../PipInterface/Pip.py" line="626" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die ausgewählte 'pyproject.toml' Datei konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="642" />
+      <location filename="../PipInterface/Pip.py" line="646" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation>Pakete gem. 'pyproject.toml' installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="776" />
-      <location filename="../PipInterface/Pip.py" line="702" />
-      <location filename="../PipInterface/Pip.py" line="672" />
-      <location filename="../PipInterface/Pip.py" line="663" />
+      <location filename="../PipInterface/Pip.py" line="780" />
+      <location filename="../PipInterface/Pip.py" line="706" />
+      <location filename="../PipInterface/Pip.py" line="676" />
+      <location filename="../PipInterface/Pip.py" line="667" />
       <source>Uninstall Packages</source>
       <translation>Pakete deinstallieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
-      <location filename="../PipInterface/Pip.py" line="703" />
-      <location filename="../PipInterface/Pip.py" line="664" />
+      <location filename="../PipInterface/Pip.py" line="781" />
+      <location filename="../PipInterface/Pip.py" line="707" />
+      <location filename="../PipInterface/Pip.py" line="668" />
       <source>Do you really want to uninstall these packages?</source>
       <translation>Sollen diese Pakete wirklich deinstalliert werden?</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="720" />
+      <location filename="../PipInterface/Pip.py" line="724" />
       <source>Uninstall Packages from Requirements</source>
       <translation>Pakete gem. Anforderungen deinstallieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="759" />
-      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="763" />
+      <location filename="../PipInterface/Pip.py" line="752" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation>Abhängigkeiten gem. 'pyproject' deinstallieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="760" />
+      <location filename="../PipInterface/Pip.py" line="764" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die ausgewählte 'pyproject.toml' Datei konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="787" />
+      <location filename="../PipInterface/Pip.py" line="791" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation>Pakete gem. 'pyproject.toml' deinstallieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1198" />
+      <location filename="../PipInterface/Pip.py" line="1203" />
       <source>Cache Info</source>
       <translation>Zwischenspeicherinformationen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1224" />
-      <location filename="../PipInterface/Pip.py" line="1215" />
+      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1220" />
       <source>List Cached Files</source>
       <translation>Liste zwischengespeicherte Dateien</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1216" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
       <source>Enter a file pattern (empty for all):</source>
       <translation>Gib ein Dateinamenmuster ein (leer für alle):</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1248" />
-      <location filename="../PipInterface/Pip.py" line="1241" />
+      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1246" />
       <source>Remove Cached Files</source>
       <translation>Zwischengespeicherte Dateien Löschen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1242" />
+      <location filename="../PipInterface/Pip.py" line="1247" />
       <source>Enter a file pattern:</source>
       <translation>Gib ein Dateinamenmuster ein:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1273" />
-      <location filename="../PipInterface/Pip.py" line="1265" />
+      <location filename="../PipInterface/Pip.py" line="1278" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
       <source>Purge Cache</source>
       <translation>Zwischenspeicher Leeren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1266" />
+      <location filename="../PipInterface/Pip.py" line="1271" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation>Soll der pip Zwischenspeicher wirklich geleert werden? Alle Dateien müssen neu heruntergeladen werden.</translation>
     </message>
@@ -60914,205 +60883,205 @@
       <translation>Ermittle veraltete Pakete...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="737" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="731" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
       <source>Cleanup Environment</source>
       <translation>Environment bereinigen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="733" />
       <source>The environment cleanup was successful.</source>
       <translation>Die Bereinigung des Environments war erfolgreich.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="739" />
       <source>Some leftover package directories could not been removed. Delete them manually.</source>
       <translation>Einige übrig gebliebene Paketverzeichnisse konnten nicht entfernt werden. Lösche diese manuell.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="834" />
-      <source>Search PyPI</source>
-      <translation>PyPI durchsuchen</translation>
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="835" />
+      <source>Search PyPI</source>
+      <translation>PyPI durchsuchen</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="836" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Keine detaillierten Paketinformationen für &lt;b&gt;{0}&lt;/b&gt; verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="854" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="855" />
       <source>Pip</source>
       <translation>Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="856" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="857" />
       <source>Install Pip</source>
       <translation>Pip installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="860" />
       <source>Install Pip to User-Site</source>
       <translation>Pip in Nutzerverzeichnis installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="862" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="863" />
       <source>Repair Pip</source>
       <translation>Pip reparieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="869" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="870" />
       <source>Install</source>
       <translation>Installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1048" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="871" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1049" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="872" />
       <source>Install Packages</source>
       <translation>Pakete installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="874" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="875" />
       <source>Install Local Package</source>
       <translation>Lokales Paket installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="877" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="878" />
       <source>Re-Install Selected Packages</source>
       <translation>Ausgewählte Pakete neu installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="884" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="885" />
       <source>Requirements/Constraints</source>
       <translation>Anforderungen/Constraints</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="886" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="887" />
       <source>Install Requirements</source>
       <translation>Anforderungen installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="889" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="890" />
       <source>Uninstall Requirements</source>
       <translation>Anforderungen deinstallieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="892" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="893" />
       <source>Generate Requirements...</source>
       <translation>Anforderungen erzeugen...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="896" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="897" />
       <source>Install from 'pyproject.toml'</source>
       <translation>Pakete gem. 'pyproject.toml' installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="900" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="901" />
       <source>Uninstall from 'pyproject.toml'</source>
       <translation>Pakete gem. 'pyproject.toml' deinstallieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="905" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="906" />
       <source>Generate Constraints...</source>
       <translation>Constraints generieren...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="912" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="913" />
       <source>Cache</source>
       <translation>Zwischenspeicher</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="914" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="915" />
       <source>Show Cache Info...</source>
       <translation>Zwischenspeicherinfo...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="917" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="918" />
       <source>Show Cached Files...</source>
       <translation>Zwischengespeicherte Dateien...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="920" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="921" />
       <source>Remove Cached Files...</source>
       <translation>Zwischengespeicherte Dateien löschen...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="923" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="924" />
       <source>Purge Cache...</source>
       <translation>Zwischenspeicher leeren...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="940" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="941" />
       <source>Show Licenses...</source>
       <translation>Lizenzen anzeigen...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="944" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="945" />
       <source>Check Vulnerabilities</source>
       <translation>Verwundbarkeiten prüfen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="948" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="949" />
       <source>Update Vulnerability Database</source>
       <translation>Verwundbarkeitsdatenbank aktualisieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="952" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="953" />
       <source>Create SBOM file</source>
       <translation>STL Datei erzeugen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="959" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="960" />
       <source>Edit User Configuration...</source>
       <translation>Nutzerkonfiguration bearbeiten...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="962" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="963" />
       <source>Edit Environment Configuration...</source>
       <translation>Umgebungskonfiguration bearbeiten...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="967" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="968" />
       <source>Configure...</source>
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1211" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1198" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1187" />
-      <source>Edit Configuration</source>
-      <translation>Konfiguration bearbeiten</translation>
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1212" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1199" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1188" />
+      <source>Edit Configuration</source>
+      <translation>Konfiguration bearbeiten</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1213" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1200" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1189" />
       <source>No valid configuration path determined. Aborting</source>
       <translation>Es konnte kein gültiger Konfigurationspfad ermittelt werden. Abbruch</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1421" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1422" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation>{0} {1}</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1442" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1443" />
       <source>Affected Version:</source>
       <translation>Betroffene Version:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1445" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1446" />
       <source>Advisory:</source>
       <translation>Advisory:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1585" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1560" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1586" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1561" />
       <source>unknown</source>
       <translation>unbekannt</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1582" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1583" />
       <source>any</source>
       <translation>beliebig</translation>
     </message>
@@ -61120,7 +61089,7 @@
   <context>
     <name>PipPackagesWindow</name>
     <message>
-      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <location filename="../PipInterface/PipPackagesWindow.py" line="60" />
       <source>Manage Packages</source>
       <translation>Paketverwaltung</translation>
     </message>
@@ -61641,52 +61610,52 @@
   <context>
     <name>PluginManager</name>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="230" />
+      <location filename="../PluginManager/PluginManager.py" line="232" />
       <source>Could not create a package for {0}.</source>
       <translation>Konnte kein Package für {0} erzeugen.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="262" />
+      <location filename="../PluginManager/PluginManager.py" line="264" />
       <source>The internal plugin directory &lt;b&gt;{0}&lt;/b&gt; does not exits.</source>
       <translation>Das interne Pluginverzeichnis &lt;b&gt;{0}&lt;/b&gt; existiert nicht.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="439" />
+      <location filename="../PluginManager/PluginManager.py" line="441" />
       <source>Module is missing the 'autoactivate' attribute.</source>
       <translation>Dem Modul fehlt das Attribut „autoactivate“.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="450" />
+      <location filename="../PluginManager/PluginManager.py" line="452" />
       <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source>
       <translation>Dem Modul fehlt das Attribut „pluginType“ und/oder „pluginTypename“.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="478" />
+      <location filename="../PluginManager/PluginManager.py" line="480" />
       <source>Module failed to load. Error: {0}</source>
       <translation>Modul konnte nicht geladen werden. Fehler: {0}</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="661" />
+      <location filename="../PluginManager/PluginManager.py" line="663" />
       <source>Incompatible plugin activation method.</source>
       <translation>Nicht kompatible Plugin-Aktivierungsmethode.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1269" />
+      <location filename="../PluginManager/PluginManager.py" line="1271" />
       <source>Plugin Manager Error</source>
       <translation>Pluginmanager-Fehler</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1270" />
+      <location filename="../PluginManager/PluginManager.py" line="1272" />
       <source>&lt;p&gt;The plugin download directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Please configure it via the configuration dialog.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Downloadverzeichnis für Plugins &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden. Bitte über den Konfigurationsdialog einstellen.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1358" />
+      <location filename="../PluginManager/PluginManager.py" line="1360" />
       <source>Error downloading file</source>
       <translation>Fehler beim Herunterladen der Datei</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1359" />
+      <location filename="../PluginManager/PluginManager.py" line="1361" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die angefragte Datei konnte nicht von {0} gedownloaded werden.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
@@ -62572,18 +62541,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1911" />
+      <location filename="../Preferences/__init__.py" line="1891" />
       <source>Export Preferences</source>
       <translation>Einstellungen exportieren</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1940" />
-      <location filename="../Preferences/__init__.py" line="1913" />
+      <location filename="../Preferences/__init__.py" line="1920" />
+      <location filename="../Preferences/__init__.py" line="1893" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Properties-Dateien (*.ini);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1938" />
+      <location filename="../Preferences/__init__.py" line="1918" />
       <source>Import Preferences</source>
       <translation>Einstellungen importieren</translation>
     </message>
@@ -63107,113 +63076,98 @@
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="204" />
-      <source>Translation Extractor (Python, PySide2)</source>
-      <translation>Übersetzungsextraktor (Python, PySide2)</translation>
+      <source>Translation Extractor (Python, PySide6)</source>
+      <translation>Übersetzungsextraktor (Python, PySide6)</translation>
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="213" />
-      <source>Forms Compiler (Python, PySide2)</source>
-      <translation>Formularcompiler (Python, PySide2)</translation>
+      <source>Forms Compiler (Python, PySide6)</source>
+      <translation>Formularcompiler (Python, PySide6)</translation>
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="222" />
-      <source>Resource Compiler (Python, PySide2)</source>
-      <translation>Ressourcencompiler (Python, PySide2)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="232" />
-      <source>Translation Extractor (Python, PySide6)</source>
-      <translation>Übersetzungsextraktor (Python, PySide6)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="241" />
-      <source>Forms Compiler (Python, PySide6)</source>
-      <translation>Formularcompiler (Python, PySide6)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="250" />
       <source>Resource Compiler (Python, PySide6)</source>
       <translation>Ressourcencompiler (Python, PySide6)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="265" />
+      <location filename="../Preferences/ProgramsDialog.py" line="237" />
       <source>conda Manager</source>
       <translation>Conda Manager</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="275" />
+      <location filename="../Preferences/ProgramsDialog.py" line="247" />
       <source>PyPI Package Management</source>
       <translation>PyPI Paketverwaltung</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="527" />
-      <location filename="../Preferences/ProgramsDialog.py" line="524" />
-      <location filename="../Preferences/ProgramsDialog.py" line="508" />
-      <location filename="../Preferences/ProgramsDialog.py" line="378" />
-      <location filename="../Preferences/ProgramsDialog.py" line="311" />
-      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <location filename="../Preferences/ProgramsDialog.py" line="499" />
+      <location filename="../Preferences/ProgramsDialog.py" line="496" />
+      <location filename="../Preferences/ProgramsDialog.py" line="480" />
+      <location filename="../Preferences/ProgramsDialog.py" line="350" />
+      <location filename="../Preferences/ProgramsDialog.py" line="283" />
+      <location filename="../Preferences/ProgramsDialog.py" line="266" />
       <source>(unknown)</source>
       <translation>(unbekannt)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="298" />
+      <location filename="../Preferences/ProgramsDialog.py" line="270" />
       <source>Spell Checker - PyEnchant</source>
       <translation>Rechtschreibprüfung – PyEnchant</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="315" />
+      <location filename="../Preferences/ProgramsDialog.py" line="287" />
       <source>Source Highlighter - Pygments</source>
       <translation>Quelltextfärber – Pygments</translation>
     </message>
     <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <source>MicroPython - MPY Cross Compiler</source>
+      <translation>MicroPython - MPY Cross Compiler</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="301" />
+      <source>MicroPython - ESP Tool</source>
+      <translation>MicroPython - ESP Werkzeug</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="312" />
+      <source>MicroPython - PyBoard Flasher</source>
+      <translation>MicroPython - PyBoard Flasher</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ProgramsDialog.py" line="322" />
-      <source>MicroPython - MPY Cross Compiler</source>
-      <translation>MicroPython - MPY Cross Compiler</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="329" />
-      <source>MicroPython - ESP Tool</source>
-      <translation>MicroPython - ESP Werkzeug</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="340" />
-      <source>MicroPython - PyBoard Flasher</source>
-      <translation>MicroPython - PyBoard Flasher</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="350" />
       <source>MicroPython - STLink Info</source>
       <translation>MicroPython - STLink Info</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="360" />
+      <location filename="../Preferences/ProgramsDialog.py" line="332" />
       <source>MicroPython - STLink Flasher</source>
       <translation>MicroPython - STLink Flasher</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="382" />
+      <location filename="../Preferences/ProgramsDialog.py" line="354" />
       <source>Code Assistant - Jedi</source>
       <translation>Code Assistent - Jedi</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="462" />
+      <location filename="../Preferences/ProgramsDialog.py" line="434" />
       <source>(not configured)</source>
       <translation>(nicht konfiguriert)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="497" />
+      <location filename="../Preferences/ProgramsDialog.py" line="469" />
       <source>(module not found)</source>
       <translation>(Modul nicht gefunden)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="530" />
+      <location filename="../Preferences/ProgramsDialog.py" line="502" />
       <source>(not executable)</source>
       <translation>(nicht ausführbar)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="576" />
-      <location filename="../Preferences/ProgramsDialog.py" line="544" />
-      <location filename="../Preferences/ProgramsDialog.py" line="542" />
+      <location filename="../Preferences/ProgramsDialog.py" line="548" />
+      <location filename="../Preferences/ProgramsDialog.py" line="516" />
+      <location filename="../Preferences/ProgramsDialog.py" line="514" />
       <source>(not found)</source>
       <translation>(nicht gefunden)</translation>
     </message>
@@ -63272,379 +63226,369 @@
     </message>
     <message>
       <location filename="../Project/Project.py" line="362" />
-      <source>PySide2 GUI</source>
-      <translation>PySide2 Oberfläche</translation>
+      <source>PySide6 GUI</source>
+      <translation>PySide6 Oberfläche</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="363" />
-      <source>PySide2 Console</source>
-      <translation>PySide2 Kommandozeile</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="367" />
-      <source>PySide6 GUI</source>
-      <translation>PySide6 Oberfläche</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation>PySide6 Kommandozeile</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="466" />
-      <location filename="../Project/Project.py" line="454" />
-      <location filename="../Project/Project.py" line="443" />
+      <location filename="../Project/Project.py" line="461" />
+      <location filename="../Project/Project.py" line="449" />
+      <location filename="../Project/Project.py" line="438" />
       <source>Registering Project Type</source>
       <translation>Projekttyp Registrierung</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="444" />
+      <location filename="../Project/Project.py" line="439" />
       <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Programmiersprache &lt;b&gt;{0}&lt;/b&gt; wird nicht unterstützt (Projekttyp: {1}).&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="455" />
+      <location filename="../Project/Project.py" line="450" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Projekttyp &lt;b&gt;{0}&lt;/b&gt; ist bereits für die Programmiersprache &lt;b&gt;{1}&lt;/b&gt; registriert.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="467" />
+      <location filename="../Project/Project.py" line="462" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Projekttyp &lt;b&gt;{0}&lt;/b&gt; ist bereits registriert.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="772" />
+      <location filename="../Project/Project.py" line="767" />
       <source>All Files (*)</source>
       <translation>Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1321" />
       <source>Read Project Session</source>
       <translation>Projektsitzung lesen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1579" />
-      <location filename="../Project/Project.py" line="1553" />
-      <location filename="../Project/Project.py" line="1517" />
-      <location filename="../Project/Project.py" line="1435" />
-      <location filename="../Project/Project.py" line="1396" />
-      <location filename="../Project/Project.py" line="1371" />
-      <location filename="../Project/Project.py" line="1334" />
+      <location filename="../Project/Project.py" line="1567" />
+      <location filename="../Project/Project.py" line="1541" />
+      <location filename="../Project/Project.py" line="1505" />
+      <location filename="../Project/Project.py" line="1423" />
+      <location filename="../Project/Project.py" line="1384" />
+      <location filename="../Project/Project.py" line="1359" />
+      <location filename="../Project/Project.py" line="1322" />
       <source>Please save the project first.</source>
       <translation>Bitte speichern Sie zuerst das Projekt.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1370" />
+      <location filename="../Project/Project.py" line="1358" />
       <source>Save Project Session</source>
       <translation>Projektsitzung speichern</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1412" />
-      <location filename="../Project/Project.py" line="1395" />
+      <location filename="../Project/Project.py" line="1400" />
+      <location filename="../Project/Project.py" line="1383" />
       <source>Delete Project Session</source>
       <translation>Projektsitzung löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1402" />
+      <location filename="../Project/Project.py" line="1390" />
       <source>Delete Remote Project Session</source>
       <translation>Entfernte Projektsitzung löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1421" />
+      <location filename="../Project/Project.py" line="1409" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Projektsitzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1422" />
       <source>Read Tasks</source>
       <translation>Aufgaben lesen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1516" />
+      <location filename="../Project/Project.py" line="1504" />
       <source>Read Debugger Properties</source>
       <translation>Debugger-Eigenschaften lesen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1552" />
+      <location filename="../Project/Project.py" line="1540" />
       <source>Save Debugger Properties</source>
       <translation>Debugger-Eigenschaften speichern</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1595" />
-      <location filename="../Project/Project.py" line="1578" />
+      <location filename="../Project/Project.py" line="1583" />
+      <location filename="../Project/Project.py" line="1566" />
       <source>Delete Debugger Properties</source>
       <translation>Debugger-Eigenschaften löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1585" />
+      <location filename="../Project/Project.py" line="1573" />
       <source>Delete Remote Debugger Properties</source>
       <translation>Entfernte Debuggereigenschaften löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1604" />
+      <location filename="../Project/Project.py" line="1592" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei mit den projektspezifischen Debugger-Eigenschaften &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1777" />
+      <location filename="../Project/Project.py" line="1765" />
       <source>Add Language</source>
       <translation>Sprache hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1778" />
+      <location filename="../Project/Project.py" line="1766" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Sie müssen zuerst ein Übersetzungsmuster festlegen.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1919" />
+      <location filename="../Project/Project.py" line="1905" />
       <source>Delete Translation</source>
       <translation>Übersetzung löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1946" />
-      <location filename="../Project/Project.py" line="1920" />
+      <location filename="../Project/Project.py" line="1932" />
+      <location filename="../Project/Project.py" line="1906" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die ausgewählte Übersetzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1945" />
+      <location filename="../Project/Project.py" line="1931" />
       <source>Delete translation</source>
       <translation>Übersetzung löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2098" />
-      <location filename="../Project/Project.py" line="2081" />
+      <location filename="../Project/Project.py" line="2084" />
+      <location filename="../Project/Project.py" line="2067" />
       <source>Add File</source>
       <translation>Datei hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2200" />
-      <location filename="../Project/Project.py" line="2082" />
+      <location filename="../Project/Project.py" line="2186" />
+      <location filename="../Project/Project.py" line="2068" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2099" />
+      <location filename="../Project/Project.py" line="2085" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die ausgewählte Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht zu &lt;b&gt;{1}&lt;/b&gt; hinzugefügt werden.&lt;/p&gt;&lt;p&gt;Ursache: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2097" />
       <source>Add file</source>
       <translation>Datei hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2296" />
-      <location filename="../Project/Project.py" line="2112" />
+      <location filename="../Project/Project.py" line="2282" />
+      <location filename="../Project/Project.py" line="2098" />
       <source>The target directory must not be empty.</source>
       <translation>Das Zielverzeichnis darf nicht leer sein.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2172" />
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2185" />
+      <location filename="../Project/Project.py" line="2158" />
+      <location filename="../Project/Project.py" line="2138" />
       <source>Add Directory</source>
       <translation>Verzeichnis hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2153" />
+      <location filename="../Project/Project.py" line="2139" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Quellverzeichnis enthält keine Dateien, die zur gewählten Kategorie gehören.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2173" />
+      <location filename="../Project/Project.py" line="2159" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Zielverzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht erstellt werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2307" />
-      <location filename="../Project/Project.py" line="2295" />
+      <location filename="../Project/Project.py" line="2293" />
+      <location filename="../Project/Project.py" line="2281" />
       <source>Add directory</source>
       <translation>Verzeichnis hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2308" />
+      <location filename="../Project/Project.py" line="2294" />
       <source>The source directory must not be empty.</source>
       <translation>Das Quellverzeichnis darf nicht leer sein.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2422" />
-      <location filename="../Project/Project.py" line="2404" />
-      <location filename="../Project/Project.py" line="2388" />
-      <location filename="../Project/Project.py" line="2381" />
+      <location filename="../Project/Project.py" line="2408" />
+      <location filename="../Project/Project.py" line="2390" />
+      <location filename="../Project/Project.py" line="2374" />
+      <location filename="../Project/Project.py" line="2367" />
       <source>Rename File</source>
       <translation>Datei umbenennen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8089" />
-      <location filename="../Project/Project.py" line="3909" />
-      <location filename="../Project/Project.py" line="2405" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2423" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht umbenannt werden.&lt;br /&gt;Ursache: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2690" />
-      <source>Delete File</source>
-      <translation>Datei löschen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2691" />
-      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Die ausgewählte Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2719" />
-      <source>Delete Directory</source>
-      <translation>Verzeichnis löschen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2720" />
-      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Das ausgewählte Verzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2853" />
-      <source>Create project directory</source>
-      <translation>Projektverzeichnis erstellen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2854" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Das Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht erstellt werden.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3682" />
-      <location filename="../Project/Project.py" line="2954" />
-      <source>Create project management directory</source>
-      <translation>Projektverwaltungsverzeichnis erstellen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3683" />
-      <location filename="../Project/Project.py" line="2955" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Das Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; ist nicht beschreibbar.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2995" />
-      <source>Create main script</source>
-      <translation>Hauptskript erzeugen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2996" />
-      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Das Hauptskript &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br/&gt;Ursache: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3463" />
-      <location filename="../Project/Project.py" line="3020" />
-      <source>Create Makefile</source>
-      <translation>Makefile erzeugen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3464" />
-      <location filename="../Project/Project.py" line="3021" />
-      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Die make Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br/&gt;Ursache: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3712" />
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3144" />
-      <location filename="../Project/Project.py" line="3112" />
-      <location filename="../Project/Project.py" line="3094" />
-      <location filename="../Project/Project.py" line="3069" />
-      <location filename="../Project/Project.py" line="3031" />
-      <source>New Project</source>
-      <translation>Neues Projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3032" />
-      <source>Add existing files to the project?</source>
-      <translation>Existierende Dateien dem Projekt hinzufügen?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3713" />
-      <location filename="../Project/Project.py" line="3070" />
-      <source>Select Version Control System</source>
-      <translation>Versionskontrollsystem auswählen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3174" />
-      <location filename="../Project/Project.py" line="3095" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>Möchten Sie die VCS-Befehlsoptionen bearbeiten?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3113" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3150" />
-      <location filename="../Project/Project.py" line="3139" />
-      <source>None</source>
-      <translation>Keines</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3145" />
-      <source>Select version control system for the project</source>
-      <translation>Wähle das Versionskontrollsystem für das Projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3356" />
-      <source>Translation Pattern</source>
-      <translation>Übersetzungsmuster</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3357" />
-      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
-      <translation>Gib das Pfadmuster für Übersetzungsdateien ein (benutze „%language%“ anstelle des Sprachcodes):</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3661" />
-      <source>Open Project</source>
-      <translation>Projekt öffnen</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="8075" />
-      <location filename="../Project/Project.py" line="8069" />
-      <location filename="../Project/Project.py" line="8059" />
-      <location filename="../Project/Project.py" line="3894" />
-      <location filename="../Project/Project.py" line="3884" />
-      <location filename="../Project/Project.py" line="3663" />
+      <location filename="../Project/Project.py" line="3895" />
+      <location filename="../Project/Project.py" line="2391" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2409" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht umbenannt werden.&lt;br /&gt;Ursache: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2676" />
+      <source>Delete File</source>
+      <translation>Datei löschen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2677" />
+      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Die ausgewählte Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2705" />
+      <source>Delete Directory</source>
+      <translation>Verzeichnis löschen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2706" />
+      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Das ausgewählte Verzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2839" />
+      <source>Create project directory</source>
+      <translation>Projektverzeichnis erstellen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2840" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Das Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht erstellt werden.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3668" />
+      <location filename="../Project/Project.py" line="2940" />
+      <source>Create project management directory</source>
+      <translation>Projektverwaltungsverzeichnis erstellen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3669" />
+      <location filename="../Project/Project.py" line="2941" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Das Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; ist nicht beschreibbar.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2981" />
+      <source>Create main script</source>
+      <translation>Hauptskript erzeugen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2982" />
+      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Das Hauptskript &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br/&gt;Ursache: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3449" />
+      <location filename="../Project/Project.py" line="3006" />
+      <source>Create Makefile</source>
+      <translation>Makefile erzeugen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3450" />
+      <location filename="../Project/Project.py" line="3007" />
+      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Die make Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br/&gt;Ursache: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3698" />
+      <location filename="../Project/Project.py" line="3159" />
+      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3098" />
+      <location filename="../Project/Project.py" line="3080" />
+      <location filename="../Project/Project.py" line="3055" />
+      <location filename="../Project/Project.py" line="3017" />
+      <source>New Project</source>
+      <translation>Neues Projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3018" />
+      <source>Add existing files to the project?</source>
+      <translation>Existierende Dateien dem Projekt hinzufügen?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3699" />
+      <location filename="../Project/Project.py" line="3056" />
+      <source>Select Version Control System</source>
+      <translation>Versionskontrollsystem auswählen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3160" />
+      <location filename="../Project/Project.py" line="3081" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>Möchten Sie die VCS-Befehlsoptionen bearbeiten?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3099" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3125" />
+      <source>None</source>
+      <translation>Keines</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3131" />
+      <source>Select version control system for the project</source>
+      <translation>Wähle das Versionskontrollsystem für das Projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3342" />
+      <source>Translation Pattern</source>
+      <translation>Übersetzungsmuster</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3343" />
+      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
+      <translation>Gib das Pfadmuster für Übersetzungsdateien ein (benutze „%language%“ anstelle des Sprachcodes):</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3647" />
+      <source>Open Project</source>
+      <translation>Projekt öffnen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8061" />
+      <location filename="../Project/Project.py" line="8055" />
+      <location filename="../Project/Project.py" line="8045" />
+      <location filename="../Project/Project.py" line="3880" />
+      <location filename="../Project/Project.py" line="3870" />
+      <location filename="../Project/Project.py" line="3649" />
       <source>Project Files (*.epj)</source>
       <translation>Projektdateien (*.epj)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="3892" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3878" />
       <source>Save Project</source>
       <translation>Projekt speichern</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3947" />
+      <location filename="../Project/Project.py" line="3933" />
       <source>Close Project</source>
       <translation>Projekt schließen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3948" />
+      <location filename="../Project/Project.py" line="3934" />
       <source>The current project has unsaved changes.</source>
       <translation>Das aktuelle Projekt hat ungesicherte Änderungen.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4134" />
+      <location filename="../Project/Project.py" line="4098" />
       <source>Syntax Errors Detected</source>
       <translation>Syntaxfehler gefunden</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4149" />
-      <location filename="../Project/Project.py" line="4113" />
+      <location filename="../Project/Project.py" line="4135" />
+      <location filename="../Project/Project.py" line="4099" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Das Projekt beinhaltet eine Datei mit Syntaxfehlern.</numerusform>
@@ -63652,1268 +63596,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4793" />
       <source>New project</source>
       <translation>Neues Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4809" />
+      <location filename="../Project/Project.py" line="4795" />
       <source>&amp;New...</source>
       <translation>&amp;Neu...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4801" />
+      <source>Generate a new project</source>
+      <translation>Erstelle ein neues Projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4803" />
+      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Neu...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Projektes.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4813" />
+      <source>Open project</source>
+      <translation>Projekt öffnen</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4815" />
-      <source>Generate a new project</source>
-      <translation>Erstelle ein neues Projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4817" />
-      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Neu...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Projektes.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4827" />
-      <source>Open project</source>
-      <translation>Projekt öffnen</translation>
+      <source>&amp;Open...</source>
+      <translation>&amp;Öffnen...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4821" />
+      <source>Open an existing project</source>
+      <translation>Öffnet ein bestehendes Projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4823" />
+      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Öffnen...&lt;/b&gt;&lt;p&gt;Dies öffnet ein bestehendes Projekt.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4829" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Öffnen...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4835" />
-      <source>Open an existing project</source>
-      <translation>Öffnet ein bestehendes Projekt</translation>
+      <source>Open remote project</source>
+      <translation>Entferntes Projekt öffnen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4831" />
+      <source>Open (Remote)...</source>
+      <translation>Öffnen (entfernt)...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4837" />
-      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Öffnen...&lt;/b&gt;&lt;p&gt;Dies öffnet ein bestehendes Projekt.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4843" />
-      <source>Open remote project</source>
-      <translation>Entferntes Projekt öffnen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4845" />
-      <source>Open (Remote)...</source>
-      <translation>Öffnen (entfernt)...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation>Öffne ein bestehendes entferntes Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4853" />
+      <location filename="../Project/Project.py" line="4839" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Öffnen (entfernt)...&lt;/b&gt;&lt;p&gt;Dies öffnet ein bestehendes entferntes Projekt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4862" />
+      <location filename="../Project/Project.py" line="4848" />
       <source>Reload project</source>
       <translation>Projekt erneut laden</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4850" />
+      <source>Re&amp;load</source>
+      <translation>Erneut &amp;laden</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4856" />
+      <source>Reload the current project</source>
+      <translation>Das aktuelle Projekt erneut laden</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4858" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Erneut laden&lt;/b&gt;&lt;p&gt;Dies lädt das Projekt erneut.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4864" />
-      <source>Re&amp;load</source>
-      <translation>Erneut &amp;laden</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4870" />
-      <source>Reload the current project</source>
-      <translation>Das aktuelle Projekt erneut laden</translation>
+      <source>Close project</source>
+      <translation>Projekt schließen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4866" />
+      <source>&amp;Close</source>
+      <translation>Schl&amp;ießen</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4872" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Erneut laden&lt;/b&gt;&lt;p&gt;Dies lädt das Projekt erneut.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4878" />
-      <source>Close project</source>
-      <translation>Projekt schließen</translation>
+      <source>Close the current project</source>
+      <translation>Schließt das aktuelle Projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4874" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Schließen&lt;/b&gt;&lt;p&gt;Dies schließt das aktuelle Projekt.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4880" />
-      <source>&amp;Close</source>
-      <translation>Schl&amp;ießen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4886" />
-      <source>Close the current project</source>
-      <translation>Schließt das aktuelle Projekt</translation>
+      <source>Save project</source>
+      <translation>Projekt speichern</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5177" />
+      <location filename="../Project/Project.py" line="4882" />
+      <source>&amp;Save</source>
+      <translation>&amp;Speichern</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4888" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Schließen&lt;/b&gt;&lt;p&gt;Dies schließt das aktuelle Projekt.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4894" />
-      <source>Save project</source>
-      <translation>Projekt speichern</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5191" />
-      <location filename="../Project/Project.py" line="4896" />
-      <source>&amp;Save</source>
-      <translation>&amp;Speichern</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Speichert das aktuelle Projekt</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4890" />
+      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Speichern&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Projekt.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
+      <source>Save project as</source>
+      <translation>Projekt speichern unter</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4898" />
+      <source>Save &amp;as...</source>
+      <translation>Speichern &amp;unter...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4904" />
-      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Speichern&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Projekt.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4910" />
-      <source>Save project as</source>
-      <translation>Projekt speichern unter</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4912" />
-      <source>Save &amp;as...</source>
-      <translation>Speichern &amp;unter...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation>Speichert das aktuelle Projekt in eine neue Datei</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4920" />
+      <location filename="../Project/Project.py" line="4906" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Speichern unter&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Projekt in eine neue Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4929" />
+      <location filename="../Project/Project.py" line="4915" />
       <source>Save project as (Remote)</source>
       <translation>Projekt speichern unter (entfernt)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4931" />
+      <location filename="../Project/Project.py" line="4917" />
       <source>Save as (Remote)...</source>
       <translation>Speichern unter (entfernt)...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4938" />
+      <location filename="../Project/Project.py" line="4924" />
       <source>Save the current project to a new remote file</source>
       <translation>Speichert das aktuelle Projekt in eine neue entfernte Datei</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4927" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Speichern unter (entfernt)&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Projekt in eine neue entfernte Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4957" />
+      <location filename="../Project/Project.py" line="4943" />
       <source>Add files to project</source>
       <translation>Dateien zum Projekt hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4959" />
+      <location filename="../Project/Project.py" line="4945" />
       <source>Add &amp;files...</source>
       <translation>&amp;Dateien hinzufügen...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4965" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>Add files to the current project</source>
       <translation>Fügt Dateien zum aktuellen Projekt hinzu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4967" />
+      <location filename="../Project/Project.py" line="4953" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dateien hinzufügen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4978" />
+      <location filename="../Project/Project.py" line="4964" />
       <source>Add directory to project</source>
       <translation>Verzeichnis zum Projekt hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4980" />
+      <location filename="../Project/Project.py" line="4966" />
       <source>Add directory...</source>
       <translation>Verzeichnis hinzufügen...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4987" />
+      <location filename="../Project/Project.py" line="4973" />
       <source>Add a directory to the current project</source>
       <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4990" />
+      <location filename="../Project/Project.py" line="4976" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Verzeichnis hinzufügen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem ein Verzeichnis bzw. der Inhalt eines Verzeichnisses zum aktuellen Projekt hinzugefügt werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5000" />
+      <location filename="../Project/Project.py" line="4986" />
       <source>Add translation to project</source>
       <translation>Übersetzung zum Projekt hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5002" />
+      <location filename="../Project/Project.py" line="4988" />
       <source>Add &amp;translation...</source>
       <translation>&amp;Übersetzung hinzufügen...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4995" />
+      <source>Add a translation to the current project</source>
+      <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4998" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Übersetzung hinzufügen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem eine Übersetzung zum aktuellen Projekt hinzugefügt werden kann.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5008" />
+      <source>Search new files</source>
+      <translation>Neue Dateien suchen</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5009" />
-      <source>Add a translation to the current project</source>
-      <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5012" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Übersetzung hinzufügen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem eine Übersetzung zum aktuellen Projekt hinzugefügt werden kann.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5022" />
-      <source>Search new files</source>
-      <translation>Neue Dateien suchen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>Neue &amp;Dateien suchen...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5015" />
+      <source>Search new files in the project directory.</source>
+      <translation>Sucht neue Dateien im Projektverzeichnis.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5017" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Neue Dateien suchen...&lt;/b&gt;&lt;p&gt;Dies sucht im Projektverzeichnis und in registrierten Unterverzeichnissen nach neuen Dateien (Quellen, Formulare, ...).&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5027" />
+      <source>Search Project File</source>
+      <translation>Projektdatei suchen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5028" />
+      <source>Search Project File...</source>
+      <translation>Projektdatei suchen...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5029" />
-      <source>Search new files in the project directory.</source>
-      <translation>Sucht neue Dateien im Projektverzeichnis.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5031" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Neue Dateien suchen...&lt;/b&gt;&lt;p&gt;Dies sucht im Projektverzeichnis und in registrierten Unterverzeichnissen nach neuen Dateien (Quellen, Formulare, ...).&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File</source>
-      <translation>Projektdatei suchen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5042" />
-      <source>Search Project File...</source>
-      <translation>Projektdatei suchen...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5048" />
+      <location filename="../Project/Project.py" line="5034" />
       <source>Search for a file in the project list of files.</source>
       <translation>Suche nach einer Datei in der Liste der Projektdateien.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5050" />
+      <location filename="../Project/Project.py" line="5036" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Projektdatei suchen&lt;/b&gt;&lt;p&gt;Dies sucht nach einer Datei in der Liste der Projektdateien.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5059" />
+      <location filename="../Project/Project.py" line="5045" />
       <source>Project properties</source>
       <translation>Projekteigenschaften</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5061" />
+      <location filename="../Project/Project.py" line="5047" />
       <source>&amp;Properties...</source>
       <translation>&amp;Eigenschaften...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5067" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Show the project properties</source>
       <translation>Zeigt die Projekteigenschaften an</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5069" />
+      <location filename="../Project/Project.py" line="5055" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eigenschaften...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, mit dem die Projekteigenschaften bearbeitet werden können.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5078" />
+      <location filename="../Project/Project.py" line="5064" />
       <source>User project properties</source>
       <translation>Nutzer bezogene Projektdaten</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5080" />
+      <location filename="../Project/Project.py" line="5066" />
       <source>&amp;User Properties...</source>
       <translation>&amp;Nutzer bezogene Projektdaten...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5073" />
+      <source>Show the user specific project properties</source>
+      <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5076" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Nutzer bezogene Projektdaten...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, um Nutzer bezogene Projektdaten zu bearbeiten.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5086" />
+      <source>Filetype Associations</source>
+      <translation>Dateitypzuordnungen</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5087" />
-      <source>Show the user specific project properties</source>
-      <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5090" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Nutzer bezogene Projektdaten...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, um Nutzer bezogene Projektdaten zu bearbeiten.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5100" />
-      <source>Filetype Associations</source>
-      <translation>Dateitypzuordnungen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation>Dateitypzuordnungen...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5108" />
+      <location filename="../Project/Project.py" line="5094" />
       <source>Show the project file type associations</source>
       <translation>Zeigt die Dateitypzuordnungen des Projektes</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5097" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Dateitypzuordnungen...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Eingabe der Dateitypzuordnungen des Projektes. Diese Zuordnungen bestimmen den Typ (Quellen, Formulare, Schnittstellen, Protokolle oder Sonstige) über ein Dateinamenmuster. Sie werden genutzt, wenn eine Datei zum Projekt hinzugefügt oder wenn nach neuen Dateien gesucht wird.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5110" />
+      <source>Lexer Associations</source>
+      <translation>Lexerzuordnungen</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5111" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Dateitypzuordnungen...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Eingabe der Dateitypzuordnungen des Projektes. Diese Zuordnungen bestimmen den Typ (Quellen, Formulare, Schnittstellen, Protokolle oder Sonstige) über ein Dateinamenmuster. Sie werden genutzt, wenn eine Datei zum Projekt hinzugefügt oder wenn nach neuen Dateien gesucht wird.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5124" />
-      <source>Lexer Associations</source>
-      <translation>Lexerzuordnungen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation>Lexerzuordnungen...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5132" />
+      <location filename="../Project/Project.py" line="5118" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5135" />
+      <location filename="../Project/Project.py" line="5121" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lexerzuordnungen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, um die projektspezifischen Lexerzuordnungen zu bearbeiten. Diese Zuordnungen überschreiben die globalen Lexerzuordnungen. Lexer werden verwendet, um den Editortext einzufärben.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5153" />
+      <location filename="../Project/Project.py" line="5139" />
       <source>Debugger Properties</source>
       <translation>Debugger-Eigenschaften</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5154" />
+      <location filename="../Project/Project.py" line="5140" />
       <source>Debugger &amp;Properties...</source>
       <translation>Debugger-&amp;Eigenschaften...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5160" />
+      <location filename="../Project/Project.py" line="5146" />
       <source>Show the debugger properties</source>
       <translation>Debugger-Eigenschaften anzeigen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5162" />
+      <location filename="../Project/Project.py" line="5148" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debugger-Eigenschaften...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, um die projektspezifischen Debugger-Einstellungen zu bearbeiten.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5158" />
       <source>Load</source>
       <translation>Laden</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5173" />
+      <location filename="../Project/Project.py" line="5159" />
       <source>&amp;Load</source>
       <translation>&amp;Laden</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5179" />
+      <location filename="../Project/Project.py" line="5165" />
       <source>Load the debugger properties</source>
       <translation>Debugger-Eigenschaften laden</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5181" />
+      <location filename="../Project/Project.py" line="5167" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debugger-Eigenschaften laden&lt;/b&gt;&lt;p&gt;Dies lädt die projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
+      <location filename="../Project/Project.py" line="5176" />
       <source>Save</source>
       <translation>Speichern</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5197" />
+      <location filename="../Project/Project.py" line="5183" />
       <source>Save the debugger properties</source>
       <translation>Debugger-Eigenschaften speichern</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5199" />
+      <location filename="../Project/Project.py" line="5185" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debugger-Eigenschaften speichern&lt;/b&gt;&lt;p&gt;Dies speichert die projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5208" />
+      <location filename="../Project/Project.py" line="5194" />
       <source>Delete</source>
       <translation>Löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5209" />
+      <location filename="../Project/Project.py" line="5195" />
       <source>&amp;Delete</source>
       <translation>&amp;Löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5215" />
+      <location filename="../Project/Project.py" line="5201" />
       <source>Delete the debugger properties</source>
       <translation>Debugger-Eigenschaften löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5217" />
+      <location filename="../Project/Project.py" line="5203" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debugger-Eigenschaften löschen&lt;/b&gt;&lt;p&gt;Dies löscht die Datei mit den projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5227" />
+      <location filename="../Project/Project.py" line="5213" />
       <source>Reset</source>
       <translation>Zurücksetzen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5228" />
+      <location filename="../Project/Project.py" line="5214" />
       <source>&amp;Reset</source>
       <translation>&amp;Zurücksetzen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5234" />
+      <location filename="../Project/Project.py" line="5220" />
       <source>Reset the debugger properties</source>
       <translation>Debugger-Eigenschaften zurücksetzen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5236" />
+      <location filename="../Project/Project.py" line="5222" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debugger-Eigenschaften zurücksetzen&lt;/b&gt;&lt;p&gt;Dies setzt die projektspezifischen Debugger-Einstellungen zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5252" />
-      <location filename="../Project/Project.py" line="5251" />
+      <location filename="../Project/Project.py" line="5238" />
+      <location filename="../Project/Project.py" line="5237" />
       <source>Load session</source>
       <translation>Sitzung laden</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5258" />
+      <location filename="../Project/Project.py" line="5244" />
       <source>Load the projects session file.</source>
       <translation>Laden der Projektsitzung.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5260" />
+      <location filename="../Project/Project.py" line="5246" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sitzung laden&lt;/b&gt;&lt;p&gt;Dies lädt eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.&lt;br&gt;- alle offenen Quelltextdateien&lt;br&gt;- alle Haltepunkte&lt;br&gt;- die Kommandozeilenparameter&lt;br&gt;- das Arbeitsverzeichnis&lt;br&gt;- das Ausnahmemeldungsflag&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5276" />
-      <location filename="../Project/Project.py" line="5275" />
+      <location filename="../Project/Project.py" line="5262" />
+      <location filename="../Project/Project.py" line="5261" />
       <source>Save session</source>
       <translation>Sitzung speichern</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5282" />
+      <location filename="../Project/Project.py" line="5268" />
       <source>Save the projects session file.</source>
       <translation>Speichern der Projektsitzung.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5284" />
+      <location filename="../Project/Project.py" line="5270" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sitzung speichern&lt;/b&gt;&lt;p&gt;Dies speichert eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.&lt;br&gt;- alle offenen Quelltextdateien&lt;br&gt;- alle Haltepunkte&lt;br&gt;- die Kommandozeilenparameter&lt;br&gt;- das Arbeitsverzeichnis&lt;br&gt;- das Ausnahmemeldungsflag&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5300" />
-      <location filename="../Project/Project.py" line="5299" />
+      <location filename="../Project/Project.py" line="5286" />
+      <location filename="../Project/Project.py" line="5285" />
       <source>Delete session</source>
       <translation>Sitzung löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5306" />
+      <location filename="../Project/Project.py" line="5292" />
       <source>Delete the projects session file.</source>
       <translation>Löscht die Projektsitzungsdatei.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5308" />
+      <location filename="../Project/Project.py" line="5294" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sitzung löschen&lt;/b&gt;&lt;p&gt;Dies löscht die Sitzungsdatei des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5323" />
+      <location filename="../Project/Project.py" line="5309" />
       <source>Code Metrics</source>
       <translation>Quelltextmetriken</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5324" />
+      <location filename="../Project/Project.py" line="5310" />
       <source>&amp;Code Metrics...</source>
       <translation>&amp;Quelltextmetriken...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5317" />
+      <source>Show some code metrics for the project.</source>
+      <translation>Zeige einige Quelltextmetriken für das Projekt.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5320" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Quelltextmetriken...&lt;/b&gt;&lt;p&gt;Dies zeigt einige Quelltextmetriken für alle Python-Dateien des Projektes.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5330" />
+      <source>Python Code Coverage</source>
+      <translation>Python-Quelltext-Abdeckung</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5331" />
-      <source>Show some code metrics for the project.</source>
-      <translation>Zeige einige Quelltextmetriken für das Projekt.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5334" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Quelltextmetriken...&lt;/b&gt;&lt;p&gt;Dies zeigt einige Quelltextmetriken für alle Python-Dateien des Projektes.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5344" />
-      <source>Python Code Coverage</source>
-      <translation>Python-Quelltext-Abdeckung</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation>&amp;Quelltext Abdeckung...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5338" />
+      <source>Show code coverage information for the project.</source>
+      <translation>Zeige die Quelltextabdeckung für das Projekt.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5341" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Quelltext Abdeckung...&lt;/b&gt;&lt;p&gt;Dies zeigt die Quelltextabdeckung für alle Python-Dateien des Projektes an.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6775" />
+      <location filename="../Project/Project.py" line="6762" />
+      <location filename="../Project/Project.py" line="5351" />
+      <source>Profile Data</source>
+      <translation>Profildaten</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5352" />
-      <source>Show code coverage information for the project.</source>
-      <translation>Zeige die Quelltextabdeckung für das Projekt.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5355" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Quelltext Abdeckung...&lt;/b&gt;&lt;p&gt;Dies zeigt die Quelltextabdeckung für alle Python-Dateien des Projektes an.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6789" />
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="5365" />
-      <source>Profile Data</source>
-      <translation>Profildaten</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Profildaten...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5373" />
+      <location filename="../Project/Project.py" line="5359" />
       <source>Show profiling data for the project.</source>
       <translation>Zeige Profildaten des aktuellen Projektes.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5376" />
+      <location filename="../Project/Project.py" line="5362" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profildaten...&lt;/b&gt;&lt;p&gt;Dies zeigt die Profildaten des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="6827" />
+      <location filename="../Project/Project.py" line="5377" />
       <source>Application Diagram</source>
       <translation>Applikations-Diagramm</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5392" />
+      <location filename="../Project/Project.py" line="5378" />
       <source>&amp;Application Diagram...</source>
       <translation>&amp;Applikations-Diagramm...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5399" />
+      <location filename="../Project/Project.py" line="5385" />
       <source>Show a diagram of the project.</source>
       <translation>Zeigt ein Diagramm des Projektes.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5402" />
+      <location filename="../Project/Project.py" line="5388" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Applikations-Diagramm...&lt;/b&gt;&lt;p&gt;Dies zeigt ein Diagramm des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5411" />
+      <location filename="../Project/Project.py" line="5397" />
       <source>Load Diagram</source>
       <translation>Diagramm laden</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5412" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Load Diagram...</source>
       <translation>Diagramm &amp;laden...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5418" />
+      <location filename="../Project/Project.py" line="5404" />
       <source>Load a diagram from file.</source>
       <translation>Lade ein Diagramm aus einer Datei.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5420" />
+      <location filename="../Project/Project.py" line="5406" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diagramm laden...&lt;/b&gt;&lt;p&gt;Dies lädt ein Diagramm aus einer Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
-      <location filename="../Project/Project.py" line="6954" />
-      <location filename="../Project/Project.py" line="5435" />
+      <location filename="../Project/Project.py" line="6995" />
+      <location filename="../Project/Project.py" line="6940" />
+      <location filename="../Project/Project.py" line="5421" />
       <source>Create Package List</source>
       <translation>Erzeuge Paketliste</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5437" />
+      <location filename="../Project/Project.py" line="5423" />
       <source>Create &amp;Package List</source>
       <translation>Erzeuge &amp;Paketliste</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5444" />
+      <location filename="../Project/Project.py" line="5430" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation>Erzeugt eine erste PKGLIST-Datei für ein eric Plugin.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="5433" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Erzeuge Paketliste&lt;/b&gt;&lt;p&gt;Dies erzeugt eine erste Liste von Dateien, die in ein eric Pluginarchive einbezogen werden sollen. Die Liste wird aus der Projektdatei erzeugt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7080" />
-      <location filename="../Project/Project.py" line="5458" />
+      <location filename="../Project/Project.py" line="7066" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create Plugin Archives</source>
       <translation>Erzeuge Plugin Archive</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5460" />
+      <location filename="../Project/Project.py" line="5446" />
       <source>Create Plugin &amp;Archives</source>
       <translation>Erzeuge Plugin &amp;Archive</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5452" />
+      <source>Create eric plugin archive files.</source>
+      <translation>Erzeugt eric Plugin Archivdateien.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5454" />
+      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Erzeuge Plugin Archive&lt;/b&gt;&lt;p&gt;Dies erzeugt eric Plugin Archivdateien mit den Dateien, die in einer PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5466" />
-      <source>Create eric plugin archive files.</source>
-      <translation>Erzeugt eric Plugin Archivdateien.</translation>
+      <source>Create Plugin Archives (Snapshot)</source>
+      <translation>Erzeuge Plugin Archive (Snapshot)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5468" />
-      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Erzeuge Plugin Archive&lt;/b&gt;&lt;p&gt;Dies erzeugt eric Plugin Archivdateien mit den Dateien, die in einer PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5480" />
-      <source>Create Plugin Archives (Snapshot)</source>
-      <translation>Erzeuge Plugin Archive (Snapshot)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation>Erzeuge Plugin Archive (&amp;Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5489" />
+      <location filename="../Project/Project.py" line="5475" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation>Erzeugt eric Plugin Archivdateien (Snapshot Releases).</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5492" />
+      <location filename="../Project/Project.py" line="5478" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Erzeuge Plugin Archive (Snapshot)&lt;/b&gt;&lt;p&gt;Dies erzeugt eric Plugin Archivdateien mit den Dateien, die in der PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7536" />
-      <location filename="../Project/Project.py" line="7507" />
-      <location filename="../Project/Project.py" line="7461" />
-      <location filename="../Project/Project.py" line="7413" />
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="5497" />
       <source>Execute Make</source>
       <translation>Make ausführen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5512" />
+      <location filename="../Project/Project.py" line="5498" />
       <source>&amp;Execute Make</source>
       <translation>&amp;Make ausführen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5518" />
+      <location filename="../Project/Project.py" line="5504" />
       <source>Perform a 'make' run.</source>
       <translation>Führt eine 'make' Lauf aus.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5520" />
+      <location filename="../Project/Project.py" line="5506" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Make ausführen&lt;/b&gt;&lt;p&gt;Die führt einen 'make' Lauf aus, um das konfigurierte Ziel zu bauen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7513" />
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="7499" />
+      <location filename="../Project/Project.py" line="5516" />
       <source>Test for Changes</source>
       <translation>Auf Änderungen prüfen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5531" />
+      <location filename="../Project/Project.py" line="5517" />
       <source>&amp;Test for Changes</source>
       <translation>Auf Änderungen &amp;prüfen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5524" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation>Fragt 'make', ob ein Neubau erforderlich ist.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5541" />
+      <location filename="../Project/Project.py" line="5527" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Auf Änderungen prüfen&lt;/b&gt;&lt;p&gt;Dies fragt 'make', ob ein Neubau des konfigurierten Zieles erforderlich ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5559" />
+      <location filename="../Project/Project.py" line="5545" />
       <source>Create SBOM File</source>
       <translation>STL Datei erzeugen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5560" />
+      <location filename="../Project/Project.py" line="5546" />
       <source>Create &amp;SBOM File</source>
       <translation>&amp;STL Datei erzeugen</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5553" />
+      <source>Create a SBOM file of the project dependencies.</source>
+      <translation>Erzeuge eine STL Datei der Projektabhängigkeiten.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5556" />
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;STL Datei erzeugen&lt;/b&gt;&lt;p&gt;Dies erlaubt die Erstellung einer STL Datei der Projektabhängigkeiten. Dies kann auf verschiedenen Eingaben aufgebaut werden und wird in eine CycloneDX STL Datei gesichert.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5567" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation>Erzeuge eine STL Datei der Projektabhängigkeiten.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5570" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;STL Datei erzeugen&lt;/b&gt;&lt;p&gt;Dies erlaubt die Erstellung einer STL Datei der Projektabhängigkeiten. Dies kann auf verschiedenen Eingaben aufgebaut werden und wird in eine CycloneDX STL Datei gesichert.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5581" />
       <source>Clear Byte Code Caches</source>
       <translation>Byte Code Caches löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5582" />
+      <location filename="../Project/Project.py" line="5568" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation>Byte Code &amp;Caches löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5589" />
+      <location filename="../Project/Project.py" line="5575" />
       <source>Clear the byte code caches of the project.</source>
       <translation>Löscht die Byte Code Caches des Projektes.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5592" />
+      <location filename="../Project/Project.py" line="5578" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Byte Code Caches löschen&lt;/b&gt;&lt;p&gt;Dies löscht alle Verzeichnisse mit Byte Code Cachedateien.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5608" />
+      <location filename="../Project/Project.py" line="5594" />
       <source>About Black</source>
       <translation>Über Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5609" />
+      <location filename="../Project/Project.py" line="5595" />
       <source>&amp;Black</source>
       <translation>&amp;Black</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5601" />
+      <source>Show some information about 'Black'.</source>
+      <translation>Gibt ein paar Informationen zu 'Black' aus.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5603" />
+      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;Dies gibt ein paar Informationen zum installierten 'Black' Werkzeug aus.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5615" />
-      <source>Show some information about 'Black'.</source>
-      <translation>Gibt ein paar Informationen zu 'Black' aus.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5617" />
-      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;Dies gibt ein paar Informationen zum installierten 'Black' Werkzeug aus.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5629" />
       <source>Format Code</source>
       <translation>Code formatieren</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5630" />
+      <location filename="../Project/Project.py" line="5616" />
       <source>&amp;Format Code</source>
       <translation>Code &amp;formatieren</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5637" />
+      <location filename="../Project/Project.py" line="5623" />
       <source>Format the project sources with 'Black'.</source>
       <translation>Formatiert die Projektquellen mit 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5640" />
+      <location filename="../Project/Project.py" line="5626" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Code formatieren&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Konfiguration eines Formatierungslaufes an und formatiert die Quellen mit 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5652" />
+      <location filename="../Project/Project.py" line="5638" />
       <source>Check Code Formatting</source>
       <translation>Code Umformatierung prüfen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5653" />
+      <location filename="../Project/Project.py" line="5639" />
       <source>&amp;Check Code Formatting</source>
       <translation>&amp;Code Umformatierung prüfen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5660" />
+      <location filename="../Project/Project.py" line="5646" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation>Prüft, ob die Projektquellen mit 'Black' umformatiert werden müssen.</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5651" />
+      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Code Umformatierung prüfen&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Konfiguration eines Formatierungsprüflaufes an und prüft, ob die Projektquellen mit 'Black' umformatiert werden müssen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5664" />
+      <source>Code Formatting Diff</source>
+      <translation>Diff Code Umformatierung</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5665" />
-      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Code Umformatierung prüfen&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Konfiguration eines Formatierungsprüflaufes an und prüft, ob die Projektquellen mit 'Black' umformatiert werden müssen.&lt;/p&gt;</translation>
+      <source>Code Formatting &amp;Diff</source>
+      <translation>&amp;Diff Code Umformatierung</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5672" />
+      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
+      <translation>Erzeugt ein Unified Diff potentieller Umformatierungen der Projektquellen mit 'Black'.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5678" />
-      <source>Code Formatting Diff</source>
-      <translation>Diff Code Umformatierung</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5679" />
-      <source>Code Formatting &amp;Diff</source>
-      <translation>&amp;Diff Code Umformatierung</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5686" />
-      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
-      <translation>Erzeugt ein Unified Diff potentieller Umformatierungen der Projektquellen mit 'Black'.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diff Code Umformatierung&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Konfiguration der Erstellung eines Formatierungsdiff an und erstellt ein Unified Diff potentieller Umformatierungen der Projektquellen mit 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <location filename="../Project/Project.py" line="5807" />
-      <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5706" />
-      <location filename="../Project/Project.py" line="5705" />
+      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5792" />
+      <location filename="../Project/Project.py" line="5692" />
+      <location filename="../Project/Project.py" line="5691" />
       <source>Configure</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5713" />
+      <location filename="../Project/Project.py" line="5699" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation>Gib die Parameter zur Formatierung der Projektquellen mit 'Black' ein.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5718" />
+      <location filename="../Project/Project.py" line="5704" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Parameter für Formatierung der Projektquellen mit 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5734" />
+      <location filename="../Project/Project.py" line="5720" />
       <source>About isort</source>
       <translation>Über isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5735" />
+      <location filename="../Project/Project.py" line="5721" />
       <source>&amp;isort</source>
       <translation>&amp;isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5741" />
+      <location filename="../Project/Project.py" line="5727" />
       <source>Show some information about 'isort'.</source>
       <translation>Gibt ein paar Informationen zu 'isort' aus.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5743" />
+      <location filename="../Project/Project.py" line="5729" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;Dies gibt ein paar Informationen zum installierten 'isort' Werkzeug aus.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5756" />
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Sort Imports</source>
       <translation>Imports Sortieren</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5763" />
+      <location filename="../Project/Project.py" line="5749" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation>Sortiert die Importanweisungen der Projektquellen mit 'isort'.</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5752" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Imports Sortieren&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Eingabe der Parameter eines Sortierungslaufes an und sortiert die Importanweisungen der Projektquellen mit 'isort'.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5766" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Imports Sortieren&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Eingabe der Parameter eines Sortierungslaufes an und sortiert die Importanweisungen der Projektquellen mit 'isort'.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5780" />
-      <location filename="../Project/Project.py" line="5779" />
+      <location filename="../Project/Project.py" line="5765" />
       <source>Imports Sorting Diff</source>
       <translation>Diff der Imports Sortierung</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5787" />
+      <location filename="../Project/Project.py" line="5773" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation>Erzeugt ein Unified Diff potentieller Umsortierungen der Importanweisungen der Projektquellen mit 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diff der Imports Sortierung&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Eingabe der Parameter eines Sortierungslaufes an und erzeugt ein Unified Diff potentieller Umsortierungen der Importanweisungen der Projektquellen mit 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5814" />
+      <location filename="../Project/Project.py" line="5800" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation>Gib die Parameter für die Umsortierung der Importanweisungen der Projektquellen mit 'isort' ein.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5820" />
+      <location filename="../Project/Project.py" line="5806" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Eingabe der Parameter für die Umsortierung der Importanweisungen der Projektquellen mit 'isort' an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5836" />
+      <location filename="../Project/Project.py" line="5822" />
       <source>Install Project</source>
       <translation>Projekt installieren</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5823" />
       <source>&amp;Install Project</source>
       <translation>Projekt &amp;installieren</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5830" />
+      <source>Install the project into the embedded environment.</source>
+      <translation>Installiert das Projekt in die eingebettete Umgebung.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5833" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Projekt insttallieren&lt;/b&gt;&lt;p&gt;Die installiert das Projekt im editierbaren Modus (d.h. Entwicklungsmodus) in die eingebettete Umgebung.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5844" />
-      <source>Install the project into the embedded environment.</source>
-      <translation>Installiert das Projekt in die eingebettete Umgebung.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Projekt insttallieren&lt;/b&gt;&lt;p&gt;Die installiert das Projekt im editierbaren Modus (d.h. Entwicklungsmodus) in die eingebettete Umgebung.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation>&amp;Einstellungen</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5851" />
+      <source>Configure the embedded environment.</source>
+      <translation>Konfiguriert die eingebettete Umgebung.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5854" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Konfiguration der einebetteten virtuellen Umgebung des Projektes.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5864" />
+      <source>Upgrade</source>
+      <translation>Aktualisieren</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5865" />
-      <source>Configure the embedded environment.</source>
-      <translation>Konfiguriert die eingebettete Umgebung.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5868" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Konfiguration der einebetteten virtuellen Umgebung des Projektes.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5878" />
-      <source>Upgrade</source>
-      <translation>Aktualisieren</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation>&amp;Aktualisieren</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5871" />
+      <source>Upgrade the embedded environment.</source>
+      <translation>Aktualisiert die eingebettete Umgebung.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5873" />
+      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Aktualisieren&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Parameter für die Aktualisierung der einebetteten virtuellen Umgebung des Projektes.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5885" />
-      <source>Upgrade the embedded environment.</source>
-      <translation>Aktualisiert die eingebettete Umgebung.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5887" />
-      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Aktualisieren&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Parameter für die Aktualisierung der einebetteten virtuellen Umgebung des Projektes.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation>Neu erzeugen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5900" />
+      <location filename="../Project/Project.py" line="5886" />
       <source>&amp;Recreate</source>
       <translation>&amp;Neu erzeugen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5906" />
+      <location filename="../Project/Project.py" line="5892" />
       <source>Recreate the embedded environment.</source>
       <translation>Erzeugt die eingebettete Umgebung neu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5908" />
+      <location filename="../Project/Project.py" line="5894" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Neu erzeugen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Parameter für die Neuerzeugung der einebetteten virtuellen Umgebung des Projektes. Die existierende Umgebung wird zunächst gelöscht.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5926" />
+      <source>&amp;Project</source>
+      <translation>&amp;Projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5927" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Zu&amp;letzt geöffnete Projekte</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5929" />
+      <source>Session</source>
+      <translation>Sitzung</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5930" />
+      <source>Debugger</source>
+      <translation>Debugger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5931" />
+      <source>Embedded Environment</source>
+      <translation>Eingebettete Umgebung</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5933" />
+      <source>Project-T&amp;ools</source>
+      <translation>Projekt&amp;werkzeuge</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5934" />
+      <source>&amp;Version Control</source>
+      <translation>&amp;Versionskontrolle</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5938" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Prüfen</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5940" />
-      <source>&amp;Project</source>
-      <translation>&amp;Projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5941" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Zu&amp;letzt geöffnete Projekte</translation>
+      <source>Code &amp;Formatting</source>
+      <translation>Code &amp;Formatierung</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5942" />
+      <source>Sho&amp;w</source>
+      <translation>&amp;Zeige</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Session</source>
-      <translation>Sitzung</translation>
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagramme</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
-      <source>Debugger</source>
-      <translation>Debugger</translation>
+      <source>Pac&amp;kagers</source>
+      <translation>Pa&amp;ketierer</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Embedded Environment</source>
-      <translation>Eingebettete Umgebung</translation>
+      <source>Source &amp;Documentation</source>
+      <translation>&amp;Quelltextdokumentation</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Project-T&amp;ools</source>
-      <translation>Projekt&amp;werkzeuge</translation>
+      <source>Make</source>
+      <translation>Make</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
-      <source>&amp;Version Control</source>
-      <translation>&amp;Versionskontrolle</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5952" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Prüfen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5954" />
-      <source>Code &amp;Formatting</source>
-      <translation>Code &amp;Formatierung</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5956" />
-      <source>Sho&amp;w</source>
-      <translation>&amp;Zeige</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5957" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagramme</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5958" />
-      <source>Pac&amp;kagers</source>
-      <translation>Pa&amp;ketierer</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5959" />
-      <source>Source &amp;Documentation</source>
-      <translation>&amp;Quelltextdokumentation</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5961" />
-      <source>Make</source>
-      <translation>Make</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation>Weitere Werkzeuge</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6124" />
-      <location filename="../Project/Project.py" line="6122" />
+      <location filename="../Project/Project.py" line="6110" />
+      <location filename="../Project/Project.py" line="6108" />
       <source>Project</source>
       <translation>Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6206" />
+      <location filename="../Project/Project.py" line="6192" />
       <source>&amp;Clear</source>
       <translation>&amp;Löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6403" />
+      <location filename="../Project/Project.py" line="6389" />
       <source>Search New Files</source>
       <translation>Neue Dateien suchen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6404" />
+      <location filename="../Project/Project.py" line="6390" />
       <source>There were no new files found to be added.</source>
       <translation>Es wurden keine neuen Dateien gefunden.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6565" />
-      <location filename="../Project/Project.py" line="6552" />
+      <location filename="../Project/Project.py" line="6551" />
+      <location filename="../Project/Project.py" line="6538" />
       <source>Version Control System</source>
       <translation>Versionskontrollsystem</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6553" />
+      <location filename="../Project/Project.py" line="6539" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das ausgewählte Versionskontrollsystem &lt;b&gt;{0}&lt;/b&gt; konnte nicht gefunden werden.&lt;br/&gt;Ignoriere Übersteuerung.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6566" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das ausgewählte Versionskontrollsystem &lt;b&gt;{0}&lt;/b&gt; konnte nicht gefunden werden.&lt;br/&gt;Versionskontrolle nicht möglich.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="6709" />
+      <source>Coverage Data</source>
+      <translation>Quelltext Abdeckungsdaten</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6763" />
+      <location filename="../Project/Project.py" line="6710" />
+      <source>There is no main script defined for the current project. Aborting</source>
+      <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6722" />
+      <source>Code Coverage</source>
+      <translation>Quelltext Abdeckung</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="6723" />
-      <source>Coverage Data</source>
-      <translation>Quelltext Abdeckungsdaten</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6777" />
-      <location filename="../Project/Project.py" line="6724" />
-      <source>There is no main script defined for the current project. Aborting</source>
-      <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6736" />
-      <source>Code Coverage</source>
-      <translation>Quelltext Abdeckung</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6790" />
+      <location filename="../Project/Project.py" line="6776" />
       <source>Please select a profile file</source>
       <translation>Bitte wählen Sie eine Datei mit Profildaten</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6842" />
+      <location filename="../Project/Project.py" line="6828" />
       <source>Include module names?</source>
       <translation>Modulnamen anzeigen?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6955" />
+      <location filename="../Project/Project.py" line="6941" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;PKGLIST&lt;/b&gt; existiert bereits.&lt;/p&gt;&lt;p&gt;Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7010" />
+      <location filename="../Project/Project.py" line="6996" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;PKGLIST&lt;/b&gt; konnte nicht erzeugt werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7321" />
-      <location filename="../Project/Project.py" line="7277" />
-      <location filename="../Project/Project.py" line="7227" />
-      <location filename="../Project/Project.py" line="7216" />
-      <location filename="../Project/Project.py" line="7198" />
-      <location filename="../Project/Project.py" line="7151" />
-      <location filename="../Project/Project.py" line="7121" />
-      <location filename="../Project/Project.py" line="7093" />
-      <location filename="../Project/Project.py" line="7063" />
-      <location filename="../Project/Project.py" line="7048" />
-      <location filename="../Project/Project.py" line="7031" />
+      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7137" />
+      <location filename="../Project/Project.py" line="7107" />
+      <location filename="../Project/Project.py" line="7079" />
+      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7034" />
+      <location filename="../Project/Project.py" line="7017" />
       <source>Create Plugin Archive</source>
       <translation>Erzeuge Plugin Archiv</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7032" />
+      <location filename="../Project/Project.py" line="7018" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>Für das Projekt wurde kein Hauptskript angegeben. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7035" />
       <source>Select package lists:</source>
       <translation>Wähle Paketlisten:</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7064" />
+      <location filename="../Project/Project.py" line="7050" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Keine Paketlistendateien (PKGLIST*) verfügbar oder ausgewählt. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7072" />
+      <location filename="../Project/Project.py" line="7058" />
       <source>Creating plugin archives...</source>
       <translation>Erzeuge Plugin Archive...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7073" />
+      <location filename="../Project/Project.py" line="7059" />
       <source>Abort</source>
       <translation>Abbruch</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7076" />
+      <location filename="../Project/Project.py" line="7062" />
       <source>%v/%m Archives</source>
       <translation>%v/%m Archive</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7094" />
+      <location filename="../Project/Project.py" line="7080" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geladen werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7122" />
+      <location filename="../Project/Project.py" line="7108" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; ist noch nicht bereit.&lt;/p&gt;&lt;p&gt;Bitte überarbeite sie und löschen die Zeile '; initial_list' des Dateikopfes.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7152" />
+      <location filename="../Project/Project.py" line="7138" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die eric Plugin Archivdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7199" />
+      <location filename="../Project/Project.py" line="7185" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht im Archiv gespeichert werde. Sie wird ignoriert.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7217" />
+      <location filename="../Project/Project.py" line="7203" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die eric Plugin Archivdateien wurden mit einigen Fehlern erzeugt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7228" />
+      <location filename="../Project/Project.py" line="7214" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die eric Plugin Archivdateien wurden erfolgreich erzeugt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7278" />
+      <location filename="../Project/Project.py" line="7264" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Plugindatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;br&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7322" />
+      <location filename="../Project/Project.py" line="7308" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Plugindatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;br&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7414" />
+      <location filename="../Project/Project.py" line="7400" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation>'Make' wird für entfernte Projekte nicht unterstützt. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7462" />
+      <location filename="../Project/Project.py" line="7448" />
       <source>The make process did not start.</source>
       <translation>Der make Prozess ist nicht gestartet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7508" />
+      <location filename="../Project/Project.py" line="7494" />
       <source>The make process crashed.</source>
       <translation>Der make Prozess ist abgestürzt.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7516" />
+      <location filename="../Project/Project.py" line="7502" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Es gibt Änderungen, die einen Neubau des konfigurierten Zieles &lt;b&gt;{0}&lt;/b&gt; erfordern.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
+      <location filename="../Project/Project.py" line="7507" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Es gibt Änderungen, die einen Neubau des Standardzieles erfordern.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7537" />
+      <location filename="../Project/Project.py" line="7523" />
       <source>The makefile contains errors.</source>
       <translation>Die make Datei enthält Fehler.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7975" />
+      <location filename="../Project/Project.py" line="7961" />
       <source>Interpreter Missing</source>
       <translation>Interpreter fehlt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7976" />
+      <location filename="../Project/Project.py" line="7962" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation>Der konfigurierte Interpreter der eingebetteten Umgebung ist nicht mehr vorhanden. Soll die Umgebung aktualisiert werden?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8057" />
+      <location filename="../Project/Project.py" line="8043" />
       <source>Open Remote Project</source>
       <translation>Entferntes Projekt öffnen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8088" />
-      <location filename="../Project/Project.py" line="8073" />
+      <location filename="../Project/Project.py" line="8074" />
+      <location filename="../Project/Project.py" line="8059" />
       <source>Save Remote Project</source>
       <translation>Entferntes Projekt speichern</translation>
     </message>
@@ -65162,9 +65106,9 @@
   <context>
     <name>ProjectFormsBrowser</name>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1141" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1092" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1055" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1131" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
       <location filename="../Project/ProjectFormsBrowser.py" line="142" />
       <location filename="../Project/ProjectFormsBrowser.py" line="77" />
       <source>Forms</source>
@@ -65437,102 +65381,102 @@
       <translation>Formulare übersetzen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="701" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="732" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="719" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="700" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="683" />
       <source>New Form</source>
       <translation>Neues Formular</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="685" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
       <source>Select a form type:</source>
       <translation>Wähle einen Formulartyp:</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="703" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="702" />
       <source>Qt User-Interface Files (*.ui);;All Files (*)</source>
       <translation>Qt-Formulare (*.ui);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="721" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Die Datei existiert bereits. Überschreiben?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="734" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
       <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die neue Formulardatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br&gt;Problem: {1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectFormsBrowser.py" line="759" />
+      <source>Delete forms</source>
+      <translation>Formulare löschen</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFormsBrowser.py" line="760" />
-      <source>Delete forms</source>
-      <translation>Formulare löschen</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="761" />
       <source>Do you really want to delete these forms from the project?</source>
       <translation>Wollen Sie wirklich diese Formulare aus dem Projekt löschen?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="893" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="882" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="875" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="888" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="877" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="870" />
       <source>Form Compilation</source>
       <translation>Formular übersetzen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="876" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="871" />
       <source>The compilation of the form file was successful.</source>
       <translation>Die Übersetzung des Formulars war erfolgreich.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="883" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="878" />
       <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Übersetzung des Formulars ist fehlgeschlagen.&lt;/p&lt;p&gt;Grund: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="894" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="889" />
       <source>The compilation of the form file failed.</source>
       <translation>Die Übersetzung des Formulars ist fehlgeschlagen.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="986" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="977" />
       <source>Process Generation Error</source>
       <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="987" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="978" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>{0} konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1074" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1037" />
       <source>Compiling forms...</source>
       <translation>Formular übersetzen...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1134" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1084" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1047" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1075" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1038" />
       <source>Abort</source>
       <translation>Abbrechen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1137" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1087" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1050" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1127" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1078" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1041" />
       <source>%v/%m Forms</source>
       <translation>%v/%m Formulare</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1133" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1123" />
       <source>Determining changed forms...</source>
       <translation>Ermittle veränderte Formulare...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1163" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1153" />
       <source>Compiling changed forms...</source>
       <translation>Übersetze veränderte Formulare...</translation>
     </message>
@@ -65984,9 +65928,9 @@
   <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="956" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="880" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="844" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="940" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="864" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="828" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="87" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="68" />
       <source>Resources</source>
@@ -66013,219 +65957,219 @@
       <translation>Ressourcenbrowser</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="165" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="163" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="150" />
       <source>Compile resource</source>
       <translation>Ressourcendatei übersetzen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="396" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="385" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="344" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="333" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="247" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="235" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="172" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="154" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="384" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="373" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="334" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="323" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="241" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="229" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="170" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
       <source>Compile all resources</source>
       <translation>Alle Ressourcendateien übersetzen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="389" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="337" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="296" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="239" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="158" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="377" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="327" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="288" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="233" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="156" />
       <source>Configure rcc Compiler</source>
       <translation>rcc Compiler konfigurieren</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="308" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="300" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="179" />
       <source>Open</source>
       <translation>Öffnen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
       <source>Rename file</source>
       <translation>Datei umbenennen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="349" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="310" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="339" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="302" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
       <source>Remove from project</source>
       <translation>Aus dem Projekt entfernen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="351" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="187" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="341" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="304" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
       <source>Delete</source>
       <translation>Löschen</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="345" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="249" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="236" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="200" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="195" />
+      <source>New resource...</source>
+      <translation>Neue Ressource...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="390" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="346" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="254" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
+      <source>Add resources...</source>
+      <translation>Ressourcen hinzufügen...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="393" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="348" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="257" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="206" />
+      <source>Add resources directory...</source>
+      <translation>Ressourcenverzeichnis hinzufügen...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="353" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="211" />
+      <source>Show in File Manager</source>
+      <translation>In Dateimanager anzeigen</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectResourcesBrowser.py" line="355" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="255" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="242" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="199" />
-      <source>New resource...</source>
-      <translation>Neue Ressource...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="402" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="356" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="260" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="208" />
-      <source>Add resources...</source>
-      <translation>Ressourcen hinzufügen...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="405" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="358" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="210" />
-      <source>Add resources directory...</source>
-      <translation>Ressourcenverzeichnis hinzufügen...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="363" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="269" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
-      <source>Show in File Manager</source>
-      <translation>In Dateimanager anzeigen</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="365" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="217" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="213" />
       <source>Copy Path to Clipboard</source>
       <translation>Pfad in die Zwischenablage kopieren</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="410" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="367" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="315" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="272" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="219" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="398" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="357" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="307" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="266" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
       <source>Expand all directories</source>
       <translation>Alle Verzeichnisse aufklappen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="413" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="369" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="317" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="274" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="220" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="401" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="359" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="309" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="268" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="216" />
       <source>Collapse all directories</source>
       <translation>Alle Verzeichnisse einklappen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="416" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="372" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="320" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="277" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="222" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="404" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="362" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="271" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="218" />
       <source>Configure...</source>
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="303" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="292" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="295" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="284" />
       <source>Compile resources</source>
       <translation>Ressourcendateien übersetzen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="595" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="574" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="555" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="583" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="562" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="543" />
       <source>New Resource</source>
       <translation>Neue Ressource</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="557" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="545" />
       <source>Qt Resource Files (*.qrc)</source>
       <translation>Qt-Ressourcendateien (*.qrc)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="575" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="563" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Die Datei existiert bereits. Überschreiben?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="596" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="584" />
       <source>&lt;p&gt;The new resource file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die neue Ressourcendatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br&gt;Problem: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="622" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="610" />
       <source>Delete resources</source>
       <translation>Ressourcen löschen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="623" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="611" />
       <source>Do you really want to delete these resources from the project?</source>
       <translation>Wollen Sie wirklich diese Ressourcendateien aus dem Projekt löschen?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="717" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="708" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="701" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="705" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="696" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="689" />
       <source>Resource Compilation</source>
       <translation>Ressourcenübersetzung</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="702" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="690" />
       <source>The compilation of the resource file was successful.</source>
       <translation>Die Übersetzung der Ressourcendatei war erfolgreich.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="709" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="697" />
       <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Übersetzung der Ressourcendatei ist fehlgeschlagen.&lt;/p&lt;p&gt;Grund: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="718" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="706" />
       <source>The compilation of the resource file failed.</source>
       <translation>Die Übersetzung der Ressourcendatei ist fehlgeschlagen.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="805" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="789" />
       <source>Process Generation Error</source>
       <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="806" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="790" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>{0} konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="871" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="835" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="855" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="819" />
       <source>Compiling resources...</source>
       <translation>Übersetze Ressourcendateien...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="949" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="872" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="836" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="933" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="856" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="820" />
       <source>Abort</source>
       <translation>Abbrechen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="952" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="875" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="839" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="936" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="859" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="823" />
       <source>%v/%m Resources</source>
       <translation>%v/%m Resourcen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="948" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="932" />
       <source>Determining changed resources...</source>
       <translation>Ermittle veränderte Ressourcen...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="986" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="970" />
       <source>Compiling changed resources...</source>
       <translation>Übersetze veränderte Ressourcen...</translation>
     </message>
@@ -66761,250 +66705,250 @@
       <translation>Übersetzungenbrowser</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="514" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="456" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="296" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="238" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="213" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="182" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="508" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="236" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="180" />
       <source>Open in Editor</source>
       <translation>Mit Editor öffnen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="255" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="253" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation</source>
       <translation>Übersetzung erzeugen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="193" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="263" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="191" />
       <source>Generate translation (with obsolete)</source>
       <translation>Übersetzung erzeugen (mit überholten Texten)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="580" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="551" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="274" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="199" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="572" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="543" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="378" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="272" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="197" />
       <source>Generate all translations</source>
       <translation>Alle Übersetzungen erzeugen</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="581" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="281" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
+      <source>Generate all translations (with obsolete)</source>
+      <translation>Alle Übersetzungen erzeugen (mit überholten Texten)</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="446" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="207" />
+      <source>Open in Qt-Linguist</source>
+      <translation>Mit Qt Linguist öffnen</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="301" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <source>Release translation</source>
+      <translation>Übersetzung freigeben</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="589" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="391" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="283" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
-      <source>Generate all translations (with obsolete)</source>
-      <translation>Alle Übersetzungen erzeugen (mit überholten Texten)</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="452" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
-      <source>Open in Qt-Linguist</source>
-      <translation>Mit Qt Linguist öffnen</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
-      <source>Release translation</source>
-      <translation>Übersetzung freigeben</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="597" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="560" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="399" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="363" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="552" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="395" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="359" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Release all translations</source>
       <translation>Alle Übersetzungen freigeben</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="226" />
       <source>Preview translation</source>
       <translation>Übersetzungsvorschau</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="368" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="232" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="557" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="364" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
       <source>Preview all translations</source>
       <translation>Übersetzungsvorschau (alle)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="481" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="374" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="246" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="475" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="370" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="244" />
       <source>Extract messages</source>
       <translation>Texte extrahieren</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="291" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="289" />
       <source>Open</source>
       <translation>Öffnen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="319" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Remove from project</source>
       <translation>Aus dem Projekt entfernen</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="595" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="526" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="320" />
+      <source>Delete</source>
+      <translation>Löschen</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="600" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="402" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="324" />
+      <source>New translation...</source>
+      <translation>Neue Übersetzung...</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="603" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="532" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="322" />
-      <source>Delete</source>
-      <translation>Löschen</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="608" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="406" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="326" />
-      <source>New translation...</source>
-      <translation>Neue Übersetzung...</translation>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="327" />
+      <source>Add translation files...</source>
+      <translation>Übersetzungsdateien hinzufügen...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="607" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
+      <source>Show in File Manager</source>
+      <translation>In Dateimanager anzeigen</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="609" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Pfad in die Zwischenablage kopieren</translation>
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="611" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="329" />
-      <source>Add translation files...</source>
-      <translation>Übersetzungsdateien hinzufügen...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="615" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="413" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
-      <source>Show in File Manager</source>
-      <translation>In Dateimanager anzeigen</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="617" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Pfad in die Zwischenablage kopieren</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="619" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="535" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="416" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="338" />
       <source>Configure...</source>
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="490" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="440" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="484" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
       <source>Generate translations</source>
       <translation>Übersetzungen erzeugen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="500" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="445" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
       <source>Generate translations (with obsolete)</source>
       <translation>Übersetzungen erzeugen (mit überholten Texten)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="515" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="455" />
       <source>Release translations</source>
       <translation>Übersetzungen freigeben</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
       <source>Preview translations</source>
       <translation>Übersetzungsvorschau</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="882" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="866" />
       <source>Delete translation files</source>
       <translation>Übersetzungsdateien löschen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="883" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="867" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation>Wollen Sie wirklich diese Übersetzungsdateien aus dem Projekt löschen?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1582" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1051" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1011" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1560" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1035" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="995" />
       <source>Write temporary project file</source>
       <translation>Temporäre Projektdatei schreiben</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1583" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1307" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1012" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1561" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1287" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="996" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Keine Überstzungsdateien (*.ts) ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1052" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1036" />
       <source>&lt;p&gt;The temporary project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die temporäre Projektdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1306" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1189" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1177" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1286" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1173" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1161" />
       <source>Translation file generation</source>
       <translation>Übersetzungsdatei erzeugen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1178" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1162" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation>Das Erzeugen der Übersetzungsdateien (*.ts) war erfolgreich.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1184" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1168" />
       <source> The process has crashed.</source>
       <translation> Der Prouess ist abgestürzt.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1190" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1174" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation>Das Erzeugen der Übersetzungsdateien (*.ts) ist fehlgeschlagen.{0}</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1612" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1360" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1590" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1388" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1340" />
       <source>Process Generation Error</source>
       <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1361" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1389" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1341" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>{0} konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1497" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1479" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1477" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1459" />
       <source>Translation file release</source>
       <translation>Übersetzungsdatei freigeben</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1480" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1460" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation>Die Freigabe der Übersetzungsdatei (*.qm) war erfolgreich.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1498" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1478" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation>Die Freigabe der Übersetzungsdatei (*.qm) ist fehlgeschlagen.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1613" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1591" />
       <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;lrelease konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
@@ -69587,38 +69531,38 @@
       <translation>Qelltextbereich</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="214" />
+      <location filename="../UI/PythonAstViewer.py" line="216" />
       <source>No editor has been opened.</source>
       <translation>Es wurde kein Editor geöffnet.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="224" />
+      <location filename="../UI/PythonAstViewer.py" line="226" />
       <source>The current editor does not contain any source code.</source>
       <translation>Der aktuelle Editor enthält keinen Quelltext.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="230" />
+      <location filename="../UI/PythonAstViewer.py" line="232" />
       <source>The current editor does not contain Python source code.</source>
       <translation>Der aktuelle Editor enthält keinen Python Quelltext.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="248" />
+      <location filename="../UI/PythonAstViewer.py" line="250" />
       <source>Module</source>
       <translation>Modul</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="280" />
+      <location filename="../UI/PythonAstViewer.py" line="282" />
       <source>{0}: {1}</source>
       <translation>{0}: {1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="297" />
-      <location filename="../UI/PythonAstViewer.py" line="287" />
+      <location filename="../UI/PythonAstViewer.py" line="299" />
+      <location filename="../UI/PythonAstViewer.py" line="289" />
       <source>{0},{1}</source>
       <translation>{0},{1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="304" />
+      <location filename="../UI/PythonAstViewer.py" line="306" />
       <source>{0}  -  {1}</source>
       <translation>{0}  -  {1}</translation>
     </message>
@@ -71779,7 +71723,7 @@
   <context>
     <name>QtPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="154" />
+      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="139" />
       <source>Sample: {0}designer{1}</source>
       <translation>Beispiel: {0}designer{1}</translation>
     </message>
@@ -71823,7 +71767,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Tools Directory:</source>
       <translation>Verzeichnis:</translation>
     </message>
@@ -71910,7 +71853,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Virtual Environment:</source>
       <translation>Virtuelle Umgebung:</translation>
     </message>
@@ -71918,7 +71860,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Select the virtual environment to be used</source>
       <translation>Wähle die zu verwendende virtuelle Umgebung</translation>
     </message>
@@ -71926,7 +71867,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to open the virtual environment manager dialog</source>
       <translation>Drücken, um den Dialog zur Verwaltung der virtuellen Umgebungen zu öffnen</translation>
     </message>
@@ -71934,7 +71874,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to refresh the list of vitual environments</source>
       <translation>Drücken, um die Liste der Virtuellen Umgebungen zu aktualisieren</translation>
     </message>
@@ -71963,7 +71902,6 @@
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Generate imports relative to '.'</source>
       <translation>Erzeuge Imports relativ zu '.'</translation>
     </message>
@@ -71996,26 +71934,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide</source>
-      <translation>PySide</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide2</source>
-      <translation>PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
-      <translation>Gib den Pfad des Verzeichnisses mit den PySide2-Werkzeugen ein, falls sie nicht automatisch gefunden werden.</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>pyside2-uic Options</source>
-      <translation>pyside2-uic Optionen</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>PySide6</source>
       <translation>PySide6</translation>
     </message>
@@ -87933,64 +87851,64 @@
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="575" />
+      <location filename="../Templates/TemplateViewer.py" line="577" />
       <source>Remove Template</source>
       <translation>Vorlage löschen</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="576" />
+      <location filename="../Templates/TemplateViewer.py" line="578" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soll &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="604" />
+      <location filename="../Templates/TemplateViewer.py" line="606" />
       <source>Import Templates</source>
       <translation>Vorlagen importieren</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="621" />
-      <location filename="../Templates/TemplateViewer.py" line="606" />
+      <location filename="../Templates/TemplateViewer.py" line="623" />
+      <location filename="../Templates/TemplateViewer.py" line="608" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation>Vorlagendateien (*.ecj);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
-      <location filename="../Templates/TemplateViewer.py" line="619" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
+      <location filename="../Templates/TemplateViewer.py" line="621" />
       <source>Export Templates</source>
       <translation>Vorlagen exportieren</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Vorlagendatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="654" />
+      <location filename="../Templates/TemplateViewer.py" line="656" />
       <source>Reload Templates</source>
       <translation>Vorlagen neu laden</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="655" />
+      <location filename="../Templates/TemplateViewer.py" line="657" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation>Die Vorlagen enthalten ungesicherte Änderungen. Sollen diese verworfen werden?</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="675" />
+      <location filename="../Templates/TemplateViewer.py" line="677" />
       <source>Template Help</source>
       <translation>Hilfe zu Vorlagen</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="676" />
+      <location filename="../Templates/TemplateViewer.py" line="678" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Vorlagengruppen&lt;/b&gt; sind ein Mittel, um einzelne Vorlagen zusammenzufassen. Gruppen haben ein Attribut, das angibt, für welche Programmiersprache sie gültig sind. Um Vorlagen hinzuzufügen, muss mindestens eine Vorlagengruppe angelegt werden.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Vorlageneinträge&lt;/b&gt; sind die eigentlichen Vorlagen. Sie werden durch Vorlagengruppen zusammengefaßt. Zusätzliche Hilfe zu Vorlagen sind im Editierdialog verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="938" />
+      <location filename="../Templates/TemplateViewer.py" line="940" />
       <source>Edit Template Group</source>
       <translation>Vorlagengruppe editieren</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="939" />
+      <location filename="../Templates/TemplateViewer.py" line="941" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Eine Vorlagengruppe mit dem Namen &lt;b&gt;{0}&lt;/b&gt; existiert bereits.&lt;/p&gt;</translation>
     </message>
@@ -91471,2227 +91389,2211 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="263" />
+      <location filename="../UI/UserInterface.py" line="265" />
       <source>Initializing Basic Services...</source>
       <translation>Initialisiere Basisdienste...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="319" />
+      <location filename="../UI/UserInterface.py" line="321" />
       <source>Initializing Plugin Manager...</source>
       <translation>Initialisiere Plugin-Manager...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="327" />
+      <location filename="../UI/UserInterface.py" line="329" />
       <source>Generating Main User Interface...</source>
       <translation>Erzeuge das Hauptfenster...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="386" />
       <location filename="../UI/UserInterface.py" line="384" />
-      <location filename="../UI/UserInterface.py" line="382" />
       <source>Setting up signal/slot-connections...</source>
       <translation>Erstelle Signal/Slot-Verbindungen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="593" />
+      <location filename="../UI/UserInterface.py" line="595" />
       <source>Initializing Tools...</source>
       <translation>Initialisiere Werkzeuge...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="605" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Registering Objects...</source>
       <translation>Registriere Objekte...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="640" />
+      <location filename="../UI/UserInterface.py" line="642" />
       <source>Initializing Actions...</source>
       <translation>Initialisiere Aktionen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="643" />
+      <location filename="../UI/UserInterface.py" line="645" />
       <source>Initializing Menus...</source>
       <translation>Initialisiere Menüs...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="648" />
       <source>Initializing Toolbars...</source>
       <translation>Initialisiere Werkzeugleisten...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Statusbar...</source>
       <translation>Initialisiere Statuszeile...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="676" />
       <location filename="../UI/UserInterface.py" line="674" />
-      <location filename="../UI/UserInterface.py" line="672" />
       <source>Initializing Single Application Server...</source>
       <translation>Initialisiere Applikationsserver...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="683" />
       <source>Initializing Plugins...</source>
       <translation>Initialisiere Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Activating Plugins...</source>
       <translation>Aktiviere Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="688" />
+      <location filename="../UI/UserInterface.py" line="690" />
       <source>Generating Plugins Toolbars...</source>
       <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="692" />
+      <location filename="../UI/UserInterface.py" line="694" />
       <source>Cleaning Plugins Download Area...</source>
       <translation>Bereinige den Plugins Downloadbereich...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
+      <location filename="../UI/UserInterface.py" line="705" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Lade Toolbarmanager...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="714" />
       <source>Setting View Profile...</source>
       <translation>Stelle Ansichtenprofil ein...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="726" />
+      <location filename="../UI/UserInterface.py" line="728" />
       <source>Reading Tasks...</source>
       <translation>Lese Aufgaben...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="732" />
+      <location filename="../UI/UserInterface.py" line="734" />
       <source>Reading Templates...</source>
       <translation>Lese Vorlagen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="738" />
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation>Starte Debugger...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2212" />
-      <location filename="../UI/UserInterface.py" line="1099" />
+      <location filename="../UI/UserInterface.py" line="2214" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Left Toolbox</source>
       <translation>Linke Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2258" />
-      <location filename="../UI/UserInterface.py" line="1109" />
+      <location filename="../UI/UserInterface.py" line="2260" />
+      <location filename="../UI/UserInterface.py" line="1111" />
       <source>Horizontal Toolbox</source>
       <translation>Horizontale Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2235" />
-      <location filename="../UI/UserInterface.py" line="1120" />
+      <location filename="../UI/UserInterface.py" line="2237" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Right Toolbox</source>
       <translation>Rechte Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2054" />
-      <location filename="../UI/UserInterface.py" line="1316" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1132" />
       <source>Multiproject-Viewer</source>
       <translation>Mehrfachprojektanzeige</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2032" />
-      <location filename="../UI/UserInterface.py" line="1322" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>Project-Viewer</source>
-      <translation>Projektanzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2594" />
-      <location filename="../UI/UserInterface.py" line="2593" />
-      <location filename="../UI/UserInterface.py" line="1329" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Find/Replace In Files</source>
-      <translation>Suchen/Ersetzen in Dateien</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
-      <location filename="../UI/UserInterface.py" line="2616" />
-      <location filename="../UI/UserInterface.py" line="1336" />
-      <location filename="../UI/UserInterface.py" line="1150" />
-      <source>Find File</source>
-      <translation>Datei suchen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1156" />
-      <source>VCS Status</source>
-      <translation>VCS-Status</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2187" />
-      <location filename="../UI/UserInterface.py" line="1349" />
-      <location filename="../UI/UserInterface.py" line="1163" />
-      <source>Template-Viewer</source>
-      <translation>Vorlagen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2120" />
-      <location filename="../UI/UserInterface.py" line="1356" />
-      <location filename="../UI/UserInterface.py" line="1170" />
-      <source>File-Browser</source>
-      <translation>Dateibrowser</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1177" />
-      <source>Symbols</source>
-      <translation>Symbole</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2076" />
-      <location filename="../UI/UserInterface.py" line="1385" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1187" />
-      <source>Debug-Viewer</source>
-      <translation>Debuganzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <location filename="../UI/UserInterface.py" line="2447" />
-      <location filename="../UI/UserInterface.py" line="1392" />
-      <location filename="../UI/UserInterface.py" line="1194" />
-      <source>Code Documentation Viewer</source>
-      <translation>Dokumentationsanzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2663" />
-      <location filename="../UI/UserInterface.py" line="2662" />
-      <location filename="../UI/UserInterface.py" line="1399" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>Help Viewer</source>
-      <translation>Hilfeanzeiger</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3611" />
-      <location filename="../UI/UserInterface.py" line="2543" />
-      <location filename="../UI/UserInterface.py" line="2542" />
-      <location filename="../UI/UserInterface.py" line="1405" />
-      <location filename="../UI/UserInterface.py" line="1207" />
-      <source>Plugin Repository</source>
-      <translation>Plugin-Repository</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
-      <location filename="../UI/UserInterface.py" line="2566" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1213" />
-      <source>Virtual Environments</source>
-      <translation>Virtuelle Umgebungen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2475" />
-      <location filename="../UI/UserInterface.py" line="2474" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>PyPI Package Management</source>
-      <translation>PyPI Paketverwaltung</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2497" />
-      <location filename="../UI/UserInterface.py" line="2496" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1225" />
-      <source>Conda</source>
-      <translation>Conda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1232" />
-      <source>Cooperation</source>
-      <translation>Zusammenarbeit</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2375" />
-      <location filename="../UI/UserInterface.py" line="1436" />
-      <location filename="../UI/UserInterface.py" line="1237" />
-      <source>IRC</source>
-      <translation>IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
-      <location filename="../UI/UserInterface.py" line="2518" />
-      <location filename="../UI/UserInterface.py" line="1442" />
-      <location filename="../UI/UserInterface.py" line="1244" />
-      <source>MicroPython</source>
-      <translation>MicroPython</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2098" />
-      <location filename="../UI/UserInterface.py" line="1450" />
-      <location filename="../UI/UserInterface.py" line="1252" />
-      <source>Shell</source>
-      <translation>Shell</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <location filename="../UI/UserInterface.py" line="1456" />
-      <location filename="../UI/UserInterface.py" line="1256" />
-      <source>Task-Viewer</source>
-      <translation>Aufgabenanzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2142" />
-      <location filename="../UI/UserInterface.py" line="1462" />
-      <location filename="../UI/UserInterface.py" line="1260" />
-      <source>Log-Viewer</source>
-      <translation>Ausgabefenster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1469" />
-      <location filename="../UI/UserInterface.py" line="1267" />
-      <source>Numbers</source>
-      <translation>Zahlen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1844" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} – Passiver Modus</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <location filename="../UI/UserInterface.py" line="1847" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} – {1} – Passiver Modus</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} . {1} – {2} – Passiver Modus</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1885" />
-      <source>Quit</source>
-      <translation>Beenden</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1887" />
-      <source>&amp;Quit</source>
-      <translation>B&amp;eenden</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1888" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Quit the IDE</source>
-      <translation>Beenden der Entwicklungsumgebung</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Die Entwicklungsumgebung beenden&lt;/b&gt;&lt;p&gt;Dies beendet die Entwicklungsumgebung. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python-Programm, das gerade debuggt wird, wird beendet und sämtliche Einstellungen werden gespeichert.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1909" />
-      <location filename="../UI/UserInterface.py" line="1907" />
-      <source>Restart</source>
-      <translation>Neu starten</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1910" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Shift+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1915" />
-      <source>Restart the IDE</source>
-      <translation>Neustart der Entwicklungsumgebung</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1917" />
-      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Neustart der Entwicklungsumgebung&lt;/b&gt;&lt;p&gt;Dies startet die Entwicklungsumgebung neu. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python-Programm, das gerade debuggt wird, wird beendet und sämtliche Einstellungen werden gespeichert.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <location filename="../UI/UserInterface.py" line="1928" />
-      <source>Save session</source>
-      <translation>Sitzung speichern</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Save session...</source>
-      <translation>Sitzung speichern...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Sitzung speichern...&lt;/b&gt;&lt;p&gt;Dies speichert die aktuelle Sitzung in eine Datei. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7892" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <location filename="../UI/UserInterface.py" line="1947" />
-      <source>Load session</source>
-      <translation>Sitzung laden</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
-      <source>Load session...</source>
-      <translation>Sitzung laden...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
-      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Sitzung laden...&lt;/b&gt;&lt;p&gt;Dies lädt eine zuvor gesicherte Sitzung. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1966" />
-      <source>New Window</source>
-      <translation>Neues Fenster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1968" />
-      <source>New &amp;Window</source>
-      <translation>Neues &amp;Fenster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1969" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1974" />
-      <source>Open a new eric instance</source>
-      <translation>Öffnet eine neue eric Instanz</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Neues Fenster&lt;/b&gt;&lt;p&gt;Dies öffnet eine neue Instanz der eric IDE.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1990" />
-      <location filename="../UI/UserInterface.py" line="1988" />
-      <source>Edit Profile</source>
-      <translation>Editieren-Profil</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1997" />
-      <source>Activate the edit view profile</source>
-      <translation>Aktiviert das Editieren-Ansichtsprofil</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1999" />
-      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Editieren-Profil&lt;/b&gt;&lt;p&gt;Aktiviert das „Editieren-Ansichtsprofil“. Fenster, die in diesem Profil angezeigt werden sollen, können im „Ansichtenprofile konfigurieren“-Dialog ausgewählt werden.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2012" />
-      <location filename="../UI/UserInterface.py" line="2010" />
-      <source>Debug Profile</source>
-      <translation>Debuggen-Profil</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2019" />
-      <source>Activate the debug view profile</source>
-      <translation>Aktiviert das Debuggen-Ansichtsprofil</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2021" />
-      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Debuggen-Profil&lt;/b&gt;&lt;p&gt;Aktiviert das „Debuggen Ansichtsprofil“. Fenster, die in diesem Profil angezeigt werden sollen, können im „Ansichtenprofile konfigurieren“-Dialog ausgewählt werden.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2033" />
-      <source>&amp;Project-Viewer</source>
-      <translation>&amp;Projektanzeige</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2034" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2040" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation>Schalte den Eingabefokus auf das Projektanzeigerfenster um.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2043" />
-      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Projektanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Projektanzeigerfenster um.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2055" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>&amp;Mehrfachprojektanzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2056" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2062" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation>Schalte den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Mehrfachprojektanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2077" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>&amp;Debuganzeige</translation>
+      <location filename="../UI/UserInterface.py" line="1324" />
+      <location filename="../UI/UserInterface.py" line="1138" />
+      <source>Project-Viewer</source>
+      <translation>Projektanzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2596" />
+      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="1331" />
+      <location filename="../UI/UserInterface.py" line="1145" />
+      <source>Find/Replace In Files</source>
+      <translation>Suchen/Ersetzen in Dateien</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2619" />
+      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="1338" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Find File</source>
+      <translation>Datei suchen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1344" />
+      <location filename="../UI/UserInterface.py" line="1158" />
+      <source>VCS Status</source>
+      <translation>VCS-Status</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="1351" />
+      <location filename="../UI/UserInterface.py" line="1165" />
+      <source>Template-Viewer</source>
+      <translation>Vorlagen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="1358" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>File-Browser</source>
+      <translation>Dateibrowser</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1365" />
+      <location filename="../UI/UserInterface.py" line="1179" />
+      <source>Symbols</source>
+      <translation>Symbole</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2078" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2084" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation>Schalte den Eingabefokus auf das Debuganzeigefenster um.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Debuganzeige aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Debuganzeigefenster um.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2099" />
-      <source>&amp;Shell</source>
-      <translation>&amp;Shell</translation>
+      <location filename="../UI/UserInterface.py" line="1387" />
+      <location filename="../UI/UserInterface.py" line="1381" />
+      <location filename="../UI/UserInterface.py" line="1189" />
+      <source>Debug-Viewer</source>
+      <translation>Debuganzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="1394" />
+      <location filename="../UI/UserInterface.py" line="1196" />
+      <source>Code Documentation Viewer</source>
+      <translation>Dokumentationsanzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2665" />
+      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="1401" />
+      <location filename="../UI/UserInterface.py" line="1203" />
+      <source>Help Viewer</source>
+      <translation>Hilfeanzeiger</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1209" />
+      <source>Plugin Repository</source>
+      <translation>Plugin-Repository</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2569" />
+      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Virtual Environments</source>
+      <translation>Virtuelle Umgebungen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2477" />
+      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
+      <source>PyPI Package Management</source>
+      <translation>PyPI Paketverwaltung</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2499" />
+      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="1427" />
+      <location filename="../UI/UserInterface.py" line="1227" />
+      <source>Conda</source>
+      <translation>Conda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1434" />
+      <location filename="../UI/UserInterface.py" line="1234" />
+      <source>Cooperation</source>
+      <translation>Zusammenarbeit</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1239" />
+      <source>IRC</source>
+      <translation>IRC</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2521" />
+      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
+      <source>MicroPython</source>
+      <translation>MicroPython</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2100" />
-      <source>Alt+Shift+S</source>
-      <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2106" />
-      <source>Switch the input focus to the Shell window.</source>
-      <translation>Schalte den Eingabefokus auf das Shell-Fenster um.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2109" />
-      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Shell aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Shell-Fenster um.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2121" />
-      <source>&amp;File-Browser</source>
-      <translation>Datei&amp;browser</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2122" />
-      <source>Alt+Shift+F</source>
-      <translation>Alt+Shift+F</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2128" />
-      <source>Switch the input focus to the File-Browser window.</source>
-      <translation>Schalte den Eingabefokus auf das Dateibrowserfenster um.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Dateibrowser aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Dateibrowserfenster um.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2143" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation>&amp;Ausgabefenster</translation>
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1254" />
+      <source>Shell</source>
+      <translation>Shell</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
+      <source>Task-Viewer</source>
+      <translation>Aufgabenanzeige</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="1464" />
+      <location filename="../UI/UserInterface.py" line="1262" />
+      <source>Log-Viewer</source>
+      <translation>Ausgabefenster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1471" />
+      <location filename="../UI/UserInterface.py" line="1269" />
+      <source>Numbers</source>
+      <translation>Zahlen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1846" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} – Passiver Modus</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1855" />
+      <location filename="../UI/UserInterface.py" line="1849" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} – {1} – Passiver Modus</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1861" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} . {1} – {2} – Passiver Modus</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1887" />
+      <source>Quit</source>
+      <translation>Beenden</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1889" />
+      <source>&amp;Quit</source>
+      <translation>B&amp;eenden</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1890" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1895" />
+      <source>Quit the IDE</source>
+      <translation>Beenden der Entwicklungsumgebung</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Die Entwicklungsumgebung beenden&lt;/b&gt;&lt;p&gt;Dies beendet die Entwicklungsumgebung. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python-Programm, das gerade debuggt wird, wird beendet und sämtliche Einstellungen werden gespeichert.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1909" />
+      <source>Restart</source>
+      <translation>Neu starten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Shift+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1917" />
+      <source>Restart the IDE</source>
+      <translation>Neustart der Entwicklungsumgebung</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Neustart der Entwicklungsumgebung&lt;/b&gt;&lt;p&gt;Dies startet die Entwicklungsumgebung neu. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python-Programm, das gerade debuggt wird, wird beendet und sämtliche Einstellungen werden gespeichert.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1937" />
+      <location filename="../UI/UserInterface.py" line="1930" />
+      <source>Save session</source>
+      <translation>Sitzung speichern</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1931" />
+      <source>Save session...</source>
+      <translation>Sitzung speichern...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Sitzung speichern...&lt;/b&gt;&lt;p&gt;Dies speichert die aktuelle Sitzung in eine Datei. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7866" />
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1949" />
+      <source>Load session</source>
+      <translation>Sitzung laden</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1950" />
+      <source>Load session...</source>
+      <translation>Sitzung laden...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1958" />
+      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Sitzung laden...&lt;/b&gt;&lt;p&gt;Dies lädt eine zuvor gesicherte Sitzung. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1968" />
+      <source>New Window</source>
+      <translation>Neues Fenster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1970" />
+      <source>New &amp;Window</source>
+      <translation>Neues &amp;Fenster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1971" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1976" />
+      <source>Open a new eric instance</source>
+      <translation>Öffnet eine neue eric Instanz</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Neues Fenster&lt;/b&gt;&lt;p&gt;Dies öffnet eine neue Instanz der eric IDE.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1992" />
+      <location filename="../UI/UserInterface.py" line="1990" />
+      <source>Edit Profile</source>
+      <translation>Editieren-Profil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Activate the edit view profile</source>
+      <translation>Aktiviert das Editieren-Ansichtsprofil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2001" />
+      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Editieren-Profil&lt;/b&gt;&lt;p&gt;Aktiviert das „Editieren-Ansichtsprofil“. Fenster, die in diesem Profil angezeigt werden sollen, können im „Ansichtenprofile konfigurieren“-Dialog ausgewählt werden.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2014" />
+      <location filename="../UI/UserInterface.py" line="2012" />
+      <source>Debug Profile</source>
+      <translation>Debuggen-Profil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Activate the debug view profile</source>
+      <translation>Aktiviert das Debuggen-Ansichtsprofil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
+      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Debuggen-Profil&lt;/b&gt;&lt;p&gt;Aktiviert das „Debuggen Ansichtsprofil“. Fenster, die in diesem Profil angezeigt werden sollen, können im „Ansichtenprofile konfigurieren“-Dialog ausgewählt werden.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2035" />
+      <source>&amp;Project-Viewer</source>
+      <translation>&amp;Projektanzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2036" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation>Schalte den Eingabefokus auf das Projektanzeigerfenster um.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2045" />
+      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Projektanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Projektanzeigerfenster um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2057" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>&amp;Mehrfachprojektanzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2058" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation>Schalte den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2067" />
+      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Mehrfachprojektanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2079" />
+      <source>&amp;Debug-Viewer</source>
+      <translation>&amp;Debuganzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2080" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation>Schalte den Eingabefokus auf das Debuganzeigefenster um.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2089" />
+      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Debuganzeige aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Debuganzeigefenster um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2101" />
+      <source>&amp;Shell</source>
+      <translation>&amp;Shell</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2102" />
+      <source>Alt+Shift+S</source>
+      <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <source>Switch the input focus to the Shell window.</source>
+      <translation>Schalte den Eingabefokus auf das Shell-Fenster um.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2111" />
+      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Shell aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Shell-Fenster um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2123" />
+      <source>&amp;File-Browser</source>
+      <translation>Datei&amp;browser</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2124" />
+      <source>Alt+Shift+F</source>
+      <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <source>Switch the input focus to the File-Browser window.</source>
+      <translation>Schalte den Eingabefokus auf das Dateibrowserfenster um.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2133" />
+      <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Dateibrowser aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Dateibrowserfenster um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2145" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation>&amp;Ausgabefenster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2146" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2150" />
+      <location filename="../UI/UserInterface.py" line="2152" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation>Schalte den Eingabefokus auf das Ausgabefenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="2155" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ausgabefenster aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Ausgabefenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2165" />
+      <location filename="../UI/UserInterface.py" line="2167" />
       <source>&amp;Task-Viewer</source>
       <translation>&amp;Aufgabenanzeige</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="2168" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2174" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation>Schalte den Eingabefokus auf das Aufgabenanzeigefenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aufgabenanzeige aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Aufgabenanzeigefenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2190" />
       <source>Templ&amp;ate-Viewer</source>
       <translation>&amp;Vorlagen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="2191" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2197" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation>Schalte den Eingabefokus auf das Vorlagenfenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2198" />
+      <location filename="../UI/UserInterface.py" line="2200" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Vorlagen aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Vorlagenfenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2213" />
+      <location filename="../UI/UserInterface.py" line="2215" />
       <source>&amp;Left Toolbox</source>
       <translation>&amp;Linke Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2220" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation>Schalte das Fenster der linken Werkzeugbox um</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2222" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation>Schalte das Fenster der linken Werkzeugbox um</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Schalte das Fenster der linken Werkzeugbox um&lt;/b&gt;&lt;p&gt;Falls das Fenster der linken Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2236" />
+      <location filename="../UI/UserInterface.py" line="2238" />
       <source>&amp;Right Toolbox</source>
       <translation>&amp;Rechte Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2243" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation>Schalte das Fenster der rechten Werkzeugbox um</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2245" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation>Schalte das Fenster der rechten Werkzeugbox um</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Schalte das Fenster der rechten Werkzeugbox um&lt;/b&gt;&lt;p&gt;Falls das Fenster der rechten Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2259" />
+      <location filename="../UI/UserInterface.py" line="2261" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>&amp;Horizontale Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2266" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2268" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Schalte das Fenster der Horizontalen Werkzeugbox um&lt;/b&gt;&lt;p&gt;Falls das Fenster der Horizontalen Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2281" />
+      <location filename="../UI/UserInterface.py" line="2283" />
       <source>Left Sidebar</source>
       <translation>Linke Seitenleiste</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2282" />
+      <location filename="../UI/UserInterface.py" line="2284" />
       <source>&amp;Left Sidebar</source>
       <translation>&amp;Linke Seitenleiste</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2289" />
-      <source>Toggle the left sidebar window</source>
-      <translation>Schalte das Fenster der linken Seitenleiste um</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2291" />
+      <source>Toggle the left sidebar window</source>
+      <translation>Schalte das Fenster der linken Seitenleiste um</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Schalte das Fenster der linken Seitenleiste um&lt;/b&gt;&lt;p&gt;Falls das Fenster der linken Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2304" />
+      <location filename="../UI/UserInterface.py" line="2306" />
       <source>Right Sidebar</source>
       <translation>Rechte Seitenleiste</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2305" />
+      <location filename="../UI/UserInterface.py" line="2307" />
       <source>&amp;Right Sidebar</source>
       <translation>&amp;Rechte Seitenleiste</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2312" />
-      <source>Toggle the right sidebar window</source>
-      <translation>Schalte das Fenster der rechten Seitenleiste um</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2314" />
+      <source>Toggle the right sidebar window</source>
+      <translation>Schalte das Fenster der rechten Seitenleiste um</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Schalte das Fenster der rechten Seitenleiste um&lt;/b&gt;&lt;p&gt;Falls das Fenster der rechten Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2329" />
       <source>Bottom Sidebar</source>
       <translation>Untere Seitenleiste</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2328" />
+      <location filename="../UI/UserInterface.py" line="2330" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Untere Seitenleiste</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation>Schalte das Fenster der unteren Seitenleiste um</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2337" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation>Schalte das Fenster der unteren Seitenleiste um</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Schalte das Fenster der unteren Seitenleiste um&lt;/b&gt;&lt;p&gt;Falls das Fenster der unteren Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2350" />
-      <source>Cooperation-Viewer</source>
-      <translation>Zusammenarbeit</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2351" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation>&amp;Zusammenarbeit</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2352" />
+      <source>Cooperation-Viewer</source>
+      <translation>Zusammenarbeit</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2353" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation>&amp;Zusammenarbeit</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2354" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
+      <location filename="../UI/UserInterface.py" line="2360" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation>Schalte den Eingabefokus auf das Fenster zur Zusammenarbeit um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2361" />
+      <location filename="../UI/UserInterface.py" line="2363" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zusammenarbeitsfenster aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Fenster zur Zusammenarbeit um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2376" />
+      <location filename="../UI/UserInterface.py" line="2378" />
       <source>&amp;IRC</source>
       <translation>&amp;IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="2379" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2383" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Switch the input focus to the IRC window.</source>
       <translation>Schalte den Eingabefokus auf das IRC-Fenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2386" />
+      <location filename="../UI/UserInterface.py" line="2388" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;IRC aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das IRC-Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2397" />
-      <source>Symbols-Viewer</source>
-      <translation>Symbolanzeiger</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2398" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>S&amp;ymbolanzeiger</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2399" />
+      <source>Symbols-Viewer</source>
+      <translation>Symbolanzeiger</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2400" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>S&amp;ymbolanzeiger</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2401" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2407" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation>Schalte den Eingabefokus auf das Symbolanzeigerfenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2408" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Symbolanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Symbolanzeigerfenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2422" />
-      <source>Numbers-Viewer</source>
-      <translation>Zahlenanzeiger</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2423" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>Za&amp;hlenanzeiger</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2424" />
+      <source>Numbers-Viewer</source>
+      <translation>Zahlenanzeiger</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation>Za&amp;hlenanzeiger</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2426" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
+      <location filename="../UI/UserInterface.py" line="2432" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation>Schalte den Eingabefokus auf das Zahlenanzeigerfenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2433" />
+      <location filename="../UI/UserInterface.py" line="2435" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zahlenanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Zahlenanzeigerfenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="2451" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2455" />
+      <location filename="../UI/UserInterface.py" line="2457" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation>Schalte den Eingabefokus auf die Codedokumentationsanzeige um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2460" />
+      <location filename="../UI/UserInterface.py" line="2462" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Codedokumentationsanzeige&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf die Codedokumentationsanzeige um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="2478" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2482" />
+      <location filename="../UI/UserInterface.py" line="2484" />
       <source>Switch the input focus to the PyPI Package Management window.</source>
       <translation>Schalte den Eingabefokus auf die PyPI Paketverwaltung um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2487" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das PyPI-Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="2500" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2504" />
+      <location filename="../UI/UserInterface.py" line="2506" />
       <source>Switch the input focus to the Conda window.</source>
       <translation>Schalte den Eingabefokus auf das Conda-Fenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Conda-Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="2522" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2528" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation>Schalte den Eingabefokus auf das MicroPython-Fenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2529" />
+      <location filename="../UI/UserInterface.py" line="2531" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das MicroPython-Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="2546" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation>Ctrl+Alt+Shift+R</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2552" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation>Schalte den Eingabefokus auf das Plugin Repository Fenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2553" />
+      <location filename="../UI/UserInterface.py" line="2555" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Plugin-Repository&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Plugin Repository Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="2570" />
       <source>Ctrl+Alt+V</source>
       <translation>Ctrl+Alt+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2574" />
+      <location filename="../UI/UserInterface.py" line="2576" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation>Schalte den Eingabefokus auf den Manager für Virtuelle Umgebungen um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2579" />
+      <location filename="../UI/UserInterface.py" line="2581" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Virtuelle Umgebungen&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf den Manager für Virtuelle Umgebungen um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="2597" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation>Ctrl+Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2603" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation>Schalte den Eingabefokus auf das 'Suchen/Ersetzen in Dateien' Fenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Suchen/Ersetzen in Dateien&lt;b&gt;&lt;p&gt;Dies schalte den Eingabefokus auf das 'Suchen/Ersetzen in Dateien' Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="2620" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation>Ctrl+Alt+Shift+L</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2626" />
       <source>Switch the input focus to the Find File window.</source>
       <translation>Schalte den Eingabefokus auf das 'Datei Suchen' Fenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Datei Suchen&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das 'Datei Suchen' Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2641" />
-      <location filename="../UI/UserInterface.py" line="2640" />
+      <location filename="../UI/UserInterface.py" line="2643" />
+      <location filename="../UI/UserInterface.py" line="2642" />
       <source>VCS Status List</source>
       <translation>VCS Statusliste</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2642" />
+      <location filename="../UI/UserInterface.py" line="2644" />
       <source>Alt+Shift+V</source>
       <translation>Alt+Shift+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2648" />
+      <location filename="../UI/UserInterface.py" line="2650" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation>Schalte den Eingabefokus auf die VCS Statusliste um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2653" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;VCS Statusliste&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf die VCS Statusliste um.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="2666" />
       <source>Alt+Shift+H</source>
       <translation>Alt+Shift+H</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
+      <location filename="../UI/UserInterface.py" line="2672" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation>Schalte den Eingabefokus auf die integrierte Hilfeanzeige.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2673" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hilfeanzeiger&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf die integrierte Hilfeanzeige. Sie zeigt HTML Hilfedateien und Hilfedateien von Qt-Hilfesammlungen an.&lt;/p&gt;&lt;p&gt;Falls sie mit einem selektierten Wort aufgerufen wird, so wird diese Wort in der Qt-Hilfesammlung gesucht.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2686" />
-      <source>What's This?</source>
-      <translation>Was ist das?</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2688" />
+      <source>What's This?</source>
+      <translation>Was ist das?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2690" />
       <source>&amp;What's This?</source>
       <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2689" />
+      <location filename="../UI/UserInterface.py" line="2691" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>Context sensitive help</source>
-      <translation>Kontextsensitive Hilfe</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2696" />
+      <source>Context sensitive help</source>
+      <translation>Kontextsensitive Hilfe</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zeige kontextsensitive Hilfe an&lt;b&gt;&lt;/p&gt;Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2709" />
-      <source>Helpviewer</source>
-      <translation>Hilfe</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2711" />
+      <source>Helpviewer</source>
+      <translation>Hilfe</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2713" />
       <source>&amp;Helpviewer...</source>
       <translation>&amp;Hilfe...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2714" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2717" />
-      <source>Open the helpviewer window</source>
-      <translation>Öffnet das Hilfe-Fenster</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2719" />
+      <source>Open the helpviewer window</source>
+      <translation>Öffnet das Hilfe-Fenster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hilfe-Fenster&lt;/b&gt;&lt;p&gt;Zeige den eric Web Browser an. Dieses Fenster zeigt Hilfedateien im HTML-Format und Qt-Hilfesammlungen an. In ihm kann über Hyperlinks navigiert, Lesezeichen gesetzt und neben anderen Funktionen die dargestellte Seite ausgedruckt werden. Er kann auch zum Surfen im Internet benutzt werden.&lt;/p&gt;&lt;p&gt;Wenn es mit einem selektierten Wort aufgerufen wird, so wird dieses Wort in der Qt-Hilfesammlung gesucht.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2739" />
+      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Versions</source>
       <translation>Zeige Versionen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2740" />
+      <location filename="../UI/UserInterface.py" line="2742" />
       <source>Show &amp;Versions</source>
       <translation>Zeige &amp;Versionen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <source>Display version information</source>
-      <translation>Zeigt Versionsinformationen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2748" />
+      <source>Display version information</source>
+      <translation>Zeigt Versionsinformationen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zeige Versionen&lt;/b&gt;&lt;p&gt;Zeigt Versionsinformationen an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2754" />
+      <location filename="../UI/UserInterface.py" line="2756" />
       <source>Copy Versions</source>
       <translation>Versionen kopieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2757" />
       <source>&amp;Copy Versions</source>
       <translation>Versionen &amp;kopieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2764" />
       <source>Copy version information to the clipboard</source>
       <translation>Kopiere Versionsinformationen in die Zwischenablage</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2765" />
+      <location filename="../UI/UserInterface.py" line="2767" />
       <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Versionen kopieren&lt;/b&gt;&lt;p&gt;Dies erzeugt Versionsinformationen und kopiert diese in die Zwischenablage.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2781" />
-      <location filename="../UI/UserInterface.py" line="2774" />
-      <source>Show Error Log</source>
-      <translation>Zeige Fehlerbericht</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Show Error &amp;Log...</source>
-      <translation>Zeige Fehler&amp;bericht...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2783" />
+      <location filename="../UI/UserInterface.py" line="2776" />
+      <source>Show Error Log</source>
+      <translation>Zeige Fehlerbericht</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2777" />
+      <source>Show Error &amp;Log...</source>
+      <translation>Zeige Fehler&amp;bericht...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2785" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zeige Fehlerbericht...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Anzeige des aktuellsten Fehlerberichtes.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
+      <location filename="../UI/UserInterface.py" line="2794" />
       <source>Show Install Info</source>
       <translation>Installationsinformation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2795" />
       <source>Show Install &amp;Info...</source>
       <translation>&amp;Installationsinformation...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
-      <source>Show Installation Information</source>
-      <translation>Installationsinformation</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Show Installation Information</source>
+      <translation>Installationsinformation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Installationsinformation&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Anzeige von Informationen über den Installationsprozess.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4738" />
-      <location filename="../UI/UserInterface.py" line="2811" />
+      <location filename="../UI/UserInterface.py" line="4712" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>Report Bug</source>
       <translation>Fehler berichten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2811" />
-      <source>Report &amp;Bug...</source>
-      <translation>&amp;Fehler berichten...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2813" />
-      <source>Report a bug</source>
-      <translation>Einen Fehler berichten</translation>
+      <source>Report &amp;Bug...</source>
+      <translation>&amp;Fehler berichten...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2815" />
+      <source>Report a bug</source>
+      <translation>Einen Fehler berichten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fehler berichten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Senden eines Fehlerberichtes.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2821" />
+      <location filename="../UI/UserInterface.py" line="2823" />
       <source>Request Feature</source>
       <translation>Neue Funktion anfragen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2824" />
       <source>Request &amp;Feature...</source>
       <translation>Neue &amp;Funktion anfragen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2828" />
-      <source>Send a feature request</source>
-      <translation>Sende eine Anfrage für eine neue Funktion</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2830" />
+      <source>Send a feature request</source>
+      <translation>Sende eine Anfrage für eine neue Funktion</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Neue Funktion anfragen...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog, um eine Anfrage für eine neue Funktion zu senden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4174" />
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="4148" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <source>Testing</source>
       <translation>Modultest</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2843" />
+      <location filename="../UI/UserInterface.py" line="2845" />
       <source>&amp;Testing...</source>
       <translation>Modul&amp;test...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2849" />
-      <source>Start the testing dialog</source>
-      <translation>Starte den Modultest Dialog</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2851" />
+      <source>Start the testing dialog</source>
+      <translation>Starte den Modultest Dialog</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Modultests&lt;/b&gt;&lt;p&gt;Führe Modultests durch. Der Dialog bietet die Möglichkeit eine Zusammenstellung von Modultests auszuwählen und auszuführen oder sie automatisch zu ermitteln.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
-      <source>Restart Last Test</source>
-      <translation>Letzten Test neu starten</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2864" />
+      <source>Restart Last Test</source>
+      <translation>Letzten Test neu starten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2866" />
       <source>&amp;Restart Last Test...</source>
       <translation>Letzten Test &amp;neu starten...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2870" />
-      <source>Restarts the last test</source>
-      <translation>Startet den letzten Test erneut</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2872" />
+      <source>Restarts the last test</source>
+      <translation>Startet den letzten Test erneut</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Letzten Test neu starten&lt;/b&gt;&lt;p&gt;Startet den letzten Test erneut.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2882" />
-      <source>Rerun Failed Tests</source>
-      <translation>Fehlerhafte Tests wiederholen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2884" />
+      <source>Rerun Failed Tests</source>
+      <translation>Fehlerhafte Tests wiederholen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2886" />
       <source>Rerun Failed Tests...</source>
       <translation>Fehlerhafte Tests wiederholen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Rerun failed tests of the last run</source>
       <translation>Fehlerhafte Tests des letzten Laufes wiederholen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
+      <location filename="../UI/UserInterface.py" line="2896" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fehlerhafte Tests wiederholen&lt;/b&gt;&lt;p&gt;Alle Tests wiederholen, die während des letzten Testlaufes fehlgeschlagen sind.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Test Script</source>
-      <translation>Test (Skript)</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2906" />
+      <source>Test Script</source>
+      <translation>Test (Skript)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2908" />
       <source>Test &amp;Script...</source>
       <translation>Test (&amp;Skript)...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>Run tests of the current script</source>
-      <translation>Tests des aktuelles Skripts ausführen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2914" />
+      <source>Run tests of the current script</source>
+      <translation>Tests des aktuelles Skripts ausführen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2916" />
       <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Test (Skript)&lt;/b&gt;&lt;p&gt;Tests des aktuelles Skripts ausführen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Test Project</source>
-      <translation>Test (Projekt)</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2923" />
+      <source>Test Project</source>
+      <translation>Test (Projekt)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2925" />
       <source>Test &amp;Project...</source>
       <translation>Test (&amp;Projekt)...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Run tests of the current project</source>
-      <translation>Tests des aktuellen Projektes ausführen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2931" />
+      <source>Run tests of the current project</source>
+      <translation>Tests des aktuellen Projektes ausführen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2933" />
       <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Test (Projekt)&lt;/b&gt;&lt;p&gt;Tests des aktuellen Projektes ausführen&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
-      <source>Qt-Designer</source>
-      <translation>Qt Designer</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2942" />
+      <source>Qt-Designer</source>
+      <translation>Qt Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2944" />
       <source>Qt-&amp;Designer...</source>
       <translation>Qt &amp;Designer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start Qt-Designer</source>
-      <translation>Starte Qt Designer</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2950" />
+      <source>Start Qt-Designer</source>
+      <translation>Starte Qt Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt Designer&lt;/b&gt;&lt;p&gt;Starte Qt Designer.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2959" />
-      <source>Qt-Linguist</source>
-      <translation>Qt Linguist</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2961" />
+      <source>Qt-Linguist</source>
+      <translation>Qt Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2963" />
       <source>Qt-&amp;Linguist...</source>
       <translation>Qt &amp;Linguist...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2967" />
-      <source>Start Qt-Linguist</source>
-      <translation>Starte Qt Linguist</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2969" />
+      <source>Start Qt-Linguist</source>
+      <translation>Starte Qt Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2971" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt Linguist&lt;/b&gt;&lt;p&gt;Starte Qt Linguist (Übersetzungsprogramm).&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>UI Previewer</source>
-      <translation>UI-Vorschau</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2979" />
+      <source>UI Previewer</source>
+      <translation>UI-Vorschau</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
       <source>&amp;UI Previewer...</source>
       <translation>&amp;UI-Vorschau...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
-      <source>Start the UI Previewer</source>
-      <translation>Starte die UI-Vorschau</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2987" />
+      <source>Start the UI Previewer</source>
+      <translation>Starte die UI-Vorschau</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;UI-Vorschau&lt;/b&gt;&lt;p&gt;Starte die UI-Vorschau.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2993" />
-      <source>Translations Previewer</source>
-      <translation>Übersetzungsvorschau</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2995" />
+      <source>Translations Previewer</source>
+      <translation>Übersetzungsvorschau</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2997" />
       <source>&amp;Translations Previewer...</source>
       <translation>&amp;Übersetzungsvorschau...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <source>Start the Translations Previewer</source>
-      <translation>Die Übersetzungsvorschau starten</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3003" />
+      <source>Start the Translations Previewer</source>
+      <translation>Die Übersetzungsvorschau starten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3005" />
       <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Übersetzungsvorschau&lt;/b&gt;&lt;p&gt;Dies startet das Programm zur Vorschau von Übersetzungen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3012" />
-      <source>Compare Files</source>
-      <translation>Dateien vergleichen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3014" />
+      <source>Compare Files</source>
+      <translation>Dateien vergleichen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3016" />
       <source>&amp;Compare Files...</source>
       <translation>Dateien &amp;vergleichen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
-      <location filename="../UI/UserInterface.py" line="3020" />
+      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3022" />
       <source>Compare two files</source>
       <translation>Zwei Dateien vergleichen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3024" />
       <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dateien vergleichen&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Vergleich zweier Dateien.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3031" />
-      <source>Compare Files side by side</source>
-      <translation>Dateien Seite an Seite vergleichen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3033" />
+      <source>Compare Files side by side</source>
+      <translation>Dateien Seite an Seite vergleichen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3035" />
       <source>Compare &amp;Files side by side...</source>
       <translation>Dateien &amp;Seite an Seite vergleichen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3043" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dateien Seite an Seite vergleichen&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Vergleich zweier Dateien und zur Anzeige des Ergebnisse Seite an Seite.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>SQL Browser</source>
-      <translation>SQL-Browser</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3053" />
+      <source>SQL Browser</source>
+      <translation>SQL-Browser</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3055" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL-&amp;Browser...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>Browse a SQL database</source>
-      <translation>Erforsche eine SQL-Datenbank</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3061" />
+      <source>Browse a SQL database</source>
+      <translation>Erforsche eine SQL-Datenbank</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
       <translation>&lt;b&gt;SQL-Browser&lt;/b&gt;&lt;p&gt;Erforsche eine SQL-Datenbank.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3075" />
-      <location filename="../UI/UserInterface.py" line="3067" />
-      <source>Mini Editor</source>
-      <translation>Mini-Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini-&amp;Editor...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <location filename="../UI/UserInterface.py" line="3069" />
+      <source>Mini Editor</source>
+      <translation>Mini-Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3071" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini-&amp;Editor...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3079" />
       <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mini-Editor&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog mit einem vereinfachten Editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3086" />
-      <source>Hex Editor</source>
-      <translation>Hex-Editor</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3088" />
+      <source>Hex Editor</source>
+      <translation>Hex-Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3090" />
       <source>&amp;Hex Editor...</source>
       <translation>&amp;Hex Editor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3094" />
-      <source>Start the eric Hex Editor</source>
-      <translation>Starte den eric Hex-Editor</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>Start the eric Hex Editor</source>
+      <translation>Starte den eric Hex-Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hex-Editor&lt;/b&gt;&lt;p&gt;Startet den eric Hex-Editor zum Ansehen oder Bearbeiten von Binärdateien.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3106" />
-      <source>eric Web Browser</source>
-      <translation>eric Web Browser</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3108" />
+      <source>eric Web Browser</source>
+      <translation>eric Web Browser</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3110" />
       <source>eric &amp;Web Browser...</source>
       <translation>eric &amp;Web Browser...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3114" />
-      <source>Start the eric Web Browser</source>
-      <translation>Startet den eric Web Browser</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3116" />
+      <source>Start the eric Web Browser</source>
+      <translation>Startet den eric Web Browser</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3118" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Durchforste das Internet mit dem eric Web Browser.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3126" />
-      <source>FIDO2 Security Key Management</source>
-      <translation>Verwaltung von FIDO2 Sicherheitsschlüsseln</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3128" />
+      <source>FIDO2 Security Key Management</source>
+      <translation>Verwaltung von FIDO2 Sicherheitsschlüsseln</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3130" />
       <source>FIDO2 Security Key Management...</source>
       <translation>Verwaltung von FIDO2 Sicherheitsschlüsseln...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3135" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>Start the FIDO2 Security Key Management tool</source>
       <translation>Startet die Verwaltung von FIDO2 Sicherheitsschlüsseln</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
+      <location filename="../UI/UserInterface.py" line="3140" />
       <source>&lt;b&gt;FIDO2 Security Key Management&lt;/b&gt;&lt;p&gt;Start a tool to manage FIDO2 securit y keys.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Verwaltung von FIDO2 Sicherheitsschlüsseln&lt;/b&gt;&lt;p&gt;Startet ein Werkzeug zur Verwaltung von FIDO2 Sicherheitsschlüsseln.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Icon Editor</source>
-      <translation>Symbol-Editor</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3151" />
+      <source>Icon Editor</source>
+      <translation>Symbol-Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3153" />
       <source>&amp;Icon Editor...</source>
       <translation>&amp;Symbol-Editor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
-      <source>Start the eric Icon Editor</source>
-      <translation>Starte den eric Symbol-Editor</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3159" />
+      <source>Start the eric Icon Editor</source>
+      <translation>Starte den eric Symbol-Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3161" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Symbol-Editor&lt;/b&gt;&lt;p&gt;Startet den eric Symbol-Editor zum Editieren einfacher Icons.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6631" />
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="6605" />
+      <location filename="../UI/UserInterface.py" line="3173" />
       <source>Snapshot</source>
       <translation>Bildschirmfoto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3173" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>&amp;Snapshot...</source>
       <translation>&amp;Bildschirmfoto...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <source>Take snapshots of a screen region</source>
-      <translation>Bildschirmfoto aufnehmen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3181" />
+      <source>Take snapshots of a screen region</source>
+      <translation>Bildschirmfoto aufnehmen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Bildschirmfoto&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, um ein Bildschirmfoto aufzunehmen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>eric PDF Viewer</source>
-      <translation>eric PDF Anzeige</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3193" />
+      <source>eric PDF Viewer</source>
+      <translation>eric PDF Anzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>eric PDF &amp;Viewer...</source>
       <translation>eric PDF &amp;Anzeige...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3199" />
-      <source>Start the eric PDF Viewer</source>
-      <translation>Startet die eric PDF Anzeige</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3201" />
+      <source>Start the eric PDF Viewer</source>
+      <translation>Startet die eric PDF Anzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;eric PDF Anzeige&lt;/b&gt;&lt;p&gt;Startet die eric PDF Anzeige zur Ansicht von PDF Dateien.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
-      <source>Preferences</source>
-      <translation>Einstellungen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3212" />
+      <source>Preferences</source>
+      <translation>Einstellungen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Set the prefered configuration</source>
-      <translation>Konfiguriert die Einstellungen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3220" />
+      <source>Set the prefered configuration</source>
+      <translation>Konfiguriert die Einstellungen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3222" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Konfiguriert die einstellbaren Parameter der Applikation nach Ihren Wünschen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Export Preferences</source>
-      <translation>Einstellungen exportieren</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3233" />
+      <source>Export Preferences</source>
+      <translation>Einstellungen exportieren</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>E&amp;xport Preferences...</source>
       <translation>Einstellungen e&amp;xportieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
-      <source>Export the current configuration</source>
-      <translation>Exportiert die aktuelle Konfiguration</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3241" />
+      <source>Export the current configuration</source>
+      <translation>Exportiert die aktuelle Konfiguration</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Einstellungen exportieren&lt;/b&gt;&lt;p&gt;Exportiert die aktuelle Konfiguration in eine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
-      <source>Import Preferences</source>
-      <translation>Einstellungen importieren</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3252" />
+      <source>Import Preferences</source>
+      <translation>Einstellungen importieren</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
       <source>I&amp;mport Preferences...</source>
       <translation>Einstellungen i&amp;mportieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3261" />
       <source>Import a previously exported configuration</source>
       <translation>Importiert eine zuvor exportierte Konfiguration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3262" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Einstellungen importieren&lt;/b&gt;&lt;p&gt;Importiert eine zuvor exportierte Konfiguration.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
-      <source>Export Theme</source>
-      <translation>Schema exportieren</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3273" />
+      <source>Export Theme</source>
+      <translation>Schema exportieren</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Export Theme...</source>
       <translation>Schema exportieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
-      <source>Export the current theme</source>
-      <translation>Exportiert das aktuelle Schema</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3281" />
+      <source>Export the current theme</source>
+      <translation>Exportiert das aktuelle Schema</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Schema exportieren&lt;/b&gt;&lt;p&gt;Exportiert das aktuelle Schema in eine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3290" />
-      <source>Import Theme</source>
-      <translation>Schema importieren</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3292" />
+      <source>Import Theme</source>
+      <translation>Schema importieren</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
       <source>Import Theme...</source>
       <translation>Schema importieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
-      <source>Import a previously exported theme</source>
-      <translation>Importiert ein vorher exportiertes Schema</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3300" />
+      <source>Import a previously exported theme</source>
+      <translation>Importiert ein vorher exportiertes Schema</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3302" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Schema importieren&lt;/b&gt;&lt;p&gt;Importiert ein vorher exportiertes Schema.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload APIs</source>
-      <translation>APIs neu laden</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload &amp;APIs</source>
-      <translation>APIs &amp;neu laden</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3311" />
-      <source>Reload the API information</source>
-      <translation>Die API-Informationen neu laden</translation>
+      <source>Reload APIs</source>
+      <translation>APIs neu laden</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3311" />
+      <source>Reload &amp;APIs</source>
+      <translation>APIs &amp;neu laden</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Reload the API information</source>
+      <translation>Die API-Informationen neu laden</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;APIs neu laden&lt;/b&gt;&lt;p&gt;Lädt die API-Informationen neu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <location filename="../UI/UserInterface.py" line="3319" />
-      <source>Show external tools</source>
-      <translation>Zeige externe Werkzeuge</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Show external &amp;tools</source>
-      <translation>Zeige externe &amp;Werkzeuge</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3329" />
+      <location filename="../UI/UserInterface.py" line="3321" />
+      <source>Show external tools</source>
+      <translation>Zeige externe Werkzeuge</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3323" />
+      <source>Show external &amp;tools</source>
+      <translation>Zeige externe &amp;Werkzeuge</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3331" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zeige externe Werkzeuge&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog, der die Pfade und Versionen der von eric genutzten externen Werkzeuge anzeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>View Profiles</source>
-      <translation>Ansichtenprofile</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3341" />
+      <source>View Profiles</source>
+      <translation>Ansichtenprofile</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3343" />
       <source>&amp;View Profiles...</source>
       <translation>&amp;Ansichtenprofile...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Configure view profiles</source>
-      <translation>Ansichtenprofile konfigurieren</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Configure view profiles</source>
+      <translation>Ansichtenprofile konfigurieren</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ansichtenprofile&lt;/b&gt;&lt;p&gt;Ansichtenprofile konfigurieren. Mit diesem Dialog kann die Sichtbarkeit der verschiedenen Fenster für die vorbestimmten Ansichtenprofile eingestellt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
-      <source>Toolbars</source>
-      <translation>Werkzeugleisten</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3362" />
+      <source>Toolbars</source>
+      <translation>Werkzeugleisten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3364" />
       <source>Tool&amp;bars...</source>
       <translation>Werkzeug&amp;leisten...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
-      <source>Configure toolbars</source>
-      <translation>Werkzeugleisten einrichten</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3370" />
+      <source>Configure toolbars</source>
+      <translation>Werkzeugleisten einrichten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3372" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Werkzeugleisten&lt;/b&gt;&lt;p&gt;Werkzeugleisten konfigurieren. Mit diesem Dialog können die auf den Werkzeugleisten gezeigten Aktionen geändert  und neue Werkzeugleisten definiert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
-      <source>Keyboard Shortcuts</source>
-      <translation>Tastaturkurzbefehle</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3383" />
+      <source>Keyboard Shortcuts</source>
+      <translation>Tastaturkurzbefehle</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>&amp;Tastaturkurzbefehle...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3389" />
-      <source>Set the keyboard shortcuts</source>
-      <translation>Setze die Tastaturkurzbefehle</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3391" />
+      <source>Set the keyboard shortcuts</source>
+      <translation>Setze die Tastaturkurzbefehle</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Tastaturkurzbefehle&lt;/b&gt;&lt;p&gt;Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7600" />
-      <location filename="../UI/UserInterface.py" line="7581" />
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7555" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Tastaturkurzbefehle exportieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>Tastaturkurzbefehle &amp;exportieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Exportiert die Tastaturkurzbefehle</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3411" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Exportiert die Tastaturkurzbefehle</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3413" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Tastaturkurzbefehle exportieren&lt;/b&gt;&lt;p&gt;Exportiert die Tastaturkurzbefehle der Applikation.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7619" />
-      <location filename="../UI/UserInterface.py" line="3420" />
+      <location filename="../UI/UserInterface.py" line="7593" />
+      <location filename="../UI/UserInterface.py" line="3422" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Tastaturkurzbefehle importieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>Tastaturkurzbefehle &amp;importieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3428" />
-      <source>Import the keyboard shortcuts</source>
-      <translation>Importiert die Tastaturkurzbefehle</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3430" />
+      <source>Import the keyboard shortcuts</source>
+      <translation>Importiert die Tastaturkurzbefehle</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3432" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Tastaturkurzbefehle importieren&lt;/b&gt;&lt;p&gt;Importiert die Tastaturkurzbefehle der Applikation.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3440" />
-      <source>Manage SSL Certificates</source>
-      <translation>SSL-Zertifikate verwalten</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3442" />
+      <source>Manage SSL Certificates</source>
+      <translation>SSL-Zertifikate verwalten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3444" />
       <source>Manage SSL Certificates...</source>
       <translation>SSL-Zertifikate verwalten...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Manage the saved SSL certificates</source>
       <translation>Verwalten der gespeicherten SSL-Zertifikate</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3454" />
       <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
       <translation>&lt;b&gt;SSL-Zertifikate verwalten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Verwaltung gespeicherter SSL-Zertifikate.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3462" />
-      <source>Edit Message Filters</source>
-      <translation>Meldungsfilter bearbeiten</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3464" />
+      <source>Edit Message Filters</source>
+      <translation>Meldungsfilter bearbeiten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3466" />
       <source>Edit Message Filters...</source>
       <translation>Meldungsfilter bearbeiten...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation>Bearbeite die Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3474" />
+      <location filename="../UI/UserInterface.py" line="3476" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Meldungsfilter bearbeiten&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Bearbeitung der Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <location filename="../UI/UserInterface.py" line="3487" />
-      <location filename="../UI/UserInterface.py" line="3485" />
-      <source>Clear private data</source>
-      <translation>Private Daten löschen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3489" />
+      <location filename="../UI/UserInterface.py" line="3487" />
+      <source>Clear private data</source>
+      <translation>Private Daten löschen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Private Daten löschen&lt;/b&gt;&lt;p&gt;Löscht private Daten wie die Listen der zuletzt geöffneten Dateien, Projekte oder Mehrfachprojekte.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3506" />
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3508" />
+      <location filename="../UI/UserInterface.py" line="3507" />
       <source>Activate current editor</source>
       <translation>Aktiviere aktuellen Editor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3507" />
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3518" />
-      <location filename="../UI/UserInterface.py" line="3517" />
+      <location filename="../UI/UserInterface.py" line="3520" />
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>Show next</source>
       <translation>Zeige nächste</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3519" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3530" />
-      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <source>Show previous</source>
       <translation>Zeige vorherige</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3533" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3542" />
-      <location filename="../UI/UserInterface.py" line="3541" />
+      <location filename="../UI/UserInterface.py" line="3544" />
+      <location filename="../UI/UserInterface.py" line="3543" />
       <source>Switch between tabs</source>
       <translation>Zwischen Tabs umschalten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3543" />
+      <location filename="../UI/UserInterface.py" line="3545" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3553" />
-      <source>Plugin Infos</source>
-      <translation>Plugininformationen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3555" />
+      <source>Plugin Infos</source>
+      <translation>Plugininformationen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>&amp;Plugin Infos...</source>
       <translation>&amp;Plugininformationen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3561" />
-      <source>Show Plugin Infos</source>
-      <translation>Zeigt Plugininformationen</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3563" />
+      <source>Show Plugin Infos</source>
+      <translation>Zeigt Plugininformationen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3565" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Plugininformationen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, der einige Informationen über die geladenen Plugins anzeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3581" />
-      <location filename="../UI/UserInterface.py" line="3573" />
-      <source>Install Plugins</source>
-      <translation>Plugins installieren</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3575" />
-      <source>&amp;Install Plugins...</source>
-      <translation>Plugins &amp;installieren...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <source>Install Plugins</source>
+      <translation>Plugins installieren</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>&amp;Install Plugins...</source>
+      <translation>Plugins &amp;installieren...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Plugins installieren...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Installation oder Update von Plugins.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3600" />
-      <location filename="../UI/UserInterface.py" line="3592" />
-      <source>Uninstall Plugin</source>
-      <translation>Plugin deinstallieren</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>Plugin &amp;deinstallieren...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3602" />
+      <location filename="../UI/UserInterface.py" line="3594" />
+      <source>Uninstall Plugin</source>
+      <translation>Plugin deinstallieren</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3596" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>Plugin &amp;deinstallieren...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Plugin deinstallieren...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Deinstallation eines Plugins.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3615" />
       <source>Plugin &amp;Repository...</source>
       <translation>Plugin-&amp;Repository...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3619" />
-      <source>Show Plugins available for download</source>
-      <translation>Zeige  zum Download verfügbare Plugins an</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3621" />
+      <source>Show Plugins available for download</source>
+      <translation>Zeige  zum Download verfügbare Plugins an</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3623" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Plugin-Repository...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, der eine Liste der im Internet verfügbaren Plugins anzeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3651" />
-      <location filename="../UI/UserInterface.py" line="3650" />
+      <location filename="../UI/UserInterface.py" line="3653" />
+      <location filename="../UI/UserInterface.py" line="3652" />
       <source>Qt5 Documentation</source>
       <translation>Qt5 Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>Open Qt5 Documentation</source>
-      <translation>Öffne die Qt5 Dokumentation</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3659" />
+      <source>Open Qt5 Documentation</source>
+      <translation>Öffne die Qt5 Dokumentation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt5-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die Qt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3672" />
-      <location filename="../UI/UserInterface.py" line="3671" />
+      <location filename="../UI/UserInterface.py" line="3674" />
+      <location filename="../UI/UserInterface.py" line="3673" />
       <source>Qt6 Documentation</source>
       <translation>Qt6 Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3678" />
-      <source>Open Qt6 Documentation</source>
-      <translation>Öffne die Qt6 Dokumentation</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3680" />
+      <source>Open Qt6 Documentation</source>
+      <translation>Öffne die Qt6 Dokumentation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3682" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt6-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die Qt6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3693" />
-      <location filename="../UI/UserInterface.py" line="3692" />
+      <location filename="../UI/UserInterface.py" line="3695" />
+      <location filename="../UI/UserInterface.py" line="3694" />
       <source>PyQt5 Documentation</source>
       <translation>PyQt5-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3699" />
-      <source>Open PyQt5 Documentation</source>
-      <translation>Öffne die PyQt5-Dokumentation</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Open PyQt5 Documentation</source>
+      <translation>Öffne die PyQt5-Dokumentation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;PyQt5-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die PyQt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3714" />
-      <location filename="../UI/UserInterface.py" line="3713" />
+      <location filename="../UI/UserInterface.py" line="3716" />
+      <location filename="../UI/UserInterface.py" line="3715" />
       <source>PyQt6 Documentation</source>
       <translation>PyQt6-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3720" />
-      <source>Open PyQt6 Documentation</source>
-      <translation>Öffne die PyQt6-Dokumentation</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3722" />
+      <source>Open PyQt6 Documentation</source>
+      <translation>Öffne die PyQt6-Dokumentation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3724" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;PyQt6-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die PyQt6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3740" />
-      <location filename="../UI/UserInterface.py" line="3739" />
+      <location filename="../UI/UserInterface.py" line="3742" />
+      <location filename="../UI/UserInterface.py" line="3741" />
       <source>Python 3 Documentation</source>
       <translation>Python 3-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3746" />
-      <source>Open Python 3 Documentation</source>
-      <translation>Öffne die Python 3-Dokumentation</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3748" />
+      <source>Open Python 3 Documentation</source>
+      <translation>Öffne die Python 3-Dokumentation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3750" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Python 3-Dokumentation&lt;/b&gt;&lt;p&gt;Zeigt die Python 3-Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 3-Dokumentation gesucht wird, unter Windows das Verzeichnis &lt;i&gt;doc&lt;/i&gt; unter dem Verzeichnis, in dem der Python 3-Interpreter installiert ist, und unter Unix das Verzeichnis &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt;. Um dies zu überschreiben, können Sie die Umgebungsvariable PYTHON3DOCDIR setzen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3767" />
-      <location filename="../UI/UserInterface.py" line="3766" />
+      <location filename="../UI/UserInterface.py" line="3769" />
+      <location filename="../UI/UserInterface.py" line="3768" />
       <source>eric API Documentation</source>
       <translation>eric-API-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3773" />
-      <source>Open eric API Documentation</source>
-      <translation>Öffne die eric-API-Dokumentation</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3775" />
+      <source>Open eric API Documentation</source>
+      <translation>Öffne die eric-API-Dokumentation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3777" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation>&lt;b&gt;eric API Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die eric API Dokumentation an. Der Pfad für die Dokumentation ist das Unterverzeichnis Documentation/Source im eric Installationverzeichnis.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3793" />
-      <location filename="../UI/UserInterface.py" line="3792" />
-      <source>PySide2 Documentation</source>
-      <translation>PySide2-Dokumentation</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3799" />
-      <source>Open PySide2 Documentation</source>
-      <translation>Öffne die PySide2-Dokumentation</translation>
+      <location filename="../UI/UserInterface.py" line="3795" />
+      <location filename="../UI/UserInterface.py" line="3794" />
+      <source>PySide6 Documentation</source>
+      <translation>PySide6-Dokumentation</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3801" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation>&lt;b&gt;PySide2-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die PySide2-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3819" />
-      <location filename="../UI/UserInterface.py" line="3818" />
-      <source>PySide6 Documentation</source>
-      <translation>PySide6-Dokumentation</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3825" />
       <source>Open PySide6 Documentation</source>
       <translation>Öffne die PySide6-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3827" />
+      <location filename="../UI/UserInterface.py" line="3803" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;PySide6-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die PySide6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3863" />
+      <location filename="../UI/UserInterface.py" line="3839" />
       <source>Sessions</source>
       <translation>Sitzungen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3944" />
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtras</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3954" />
+      <location filename="../UI/UserInterface.py" line="3930" />
       <source>Wi&amp;zards</source>
       <translation>&amp;Assistenten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3948" />
       <source>P&amp;lugins</source>
       <translation>Plugi&amp;ns</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="3957" />
       <source>Configure...</source>
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3990" />
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>&amp;Testing</source>
       <translation>Modul&amp;tests</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="3983" />
       <source>Select Tool Group</source>
       <translation>Werkzeuggruppe wählen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4018" />
+      <location filename="../UI/UserInterface.py" line="3994" />
       <source>Se&amp;ttings</source>
       <translation>&amp;Einstellungen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4051" />
+      <location filename="../UI/UserInterface.py" line="4027" />
       <source>&amp;Window</source>
       <translation>&amp;Fenster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4060" />
+      <location filename="../UI/UserInterface.py" line="4036" />
       <source>&amp;Windows</source>
       <translation>&amp;Fenster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4064" />
+      <location filename="../UI/UserInterface.py" line="4040" />
       <source>Central Park</source>
       <translation>Mittelbereich</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4068" />
+      <location filename="../UI/UserInterface.py" line="4044" />
       <source>Left Side</source>
       <translation>Linke Seite</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4087" />
+      <location filename="../UI/UserInterface.py" line="4063" />
       <source>Right Side</source>
       <translation>Rechte Seite</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4106" />
+      <location filename="../UI/UserInterface.py" line="4082" />
       <source>Bottom Side</source>
       <translation>Unterer Rand</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4090" />
       <source>Plug-ins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="4096" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Werkzeugleisten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4133" />
+      <location filename="../UI/UserInterface.py" line="4109" />
       <source>&amp;Help</source>
       <translation>&amp;Hilfe</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4190" />
-      <location filename="../UI/UserInterface.py" line="4173" />
+      <location filename="../UI/UserInterface.py" line="4164" />
+      <location filename="../UI/UserInterface.py" line="4147" />
       <source>Tools</source>
       <translation>Werkzeuge</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4192" />
-      <location filename="../UI/UserInterface.py" line="4177" />
+      <location filename="../UI/UserInterface.py" line="4166" />
+      <location filename="../UI/UserInterface.py" line="4151" />
       <source>Settings</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6361" />
-      <location filename="../UI/UserInterface.py" line="4193" />
-      <location filename="../UI/UserInterface.py" line="4178" />
+      <location filename="../UI/UserInterface.py" line="6335" />
+      <location filename="../UI/UserInterface.py" line="4167" />
+      <location filename="../UI/UserInterface.py" line="4152" />
       <source>Help</source>
       <translation>Hilfe</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4194" />
-      <location filename="../UI/UserInterface.py" line="4179" />
+      <location filename="../UI/UserInterface.py" line="4168" />
+      <location filename="../UI/UserInterface.py" line="4153" />
       <source>Profiles</source>
       <translation>Profile</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4195" />
-      <location filename="../UI/UserInterface.py" line="4180" />
+      <location filename="../UI/UserInterface.py" line="4169" />
+      <location filename="../UI/UserInterface.py" line="4154" />
       <source>Plugins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4191" />
+      <location filename="../UI/UserInterface.py" line="4165" />
       <source>Unittest</source>
       <translation>Modultests</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4368" />
+      <location filename="../UI/UserInterface.py" line="4342" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Sprache des aktuellen Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4377" />
+      <location filename="../UI/UserInterface.py" line="4351" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Zeichenkodierung des aktuellen Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4386" />
+      <location filename="../UI/UserInterface.py" line="4360" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Zeilenendekodierung des aktuellen Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4395" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt an, ob die aktuelle Datei geschrieben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4404" />
+      <location filename="../UI/UserInterface.py" line="4378" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Zeilennummer des aktuellen Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
+      <location filename="../UI/UserInterface.py" line="4387" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Cursorposition des aktuellen Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4427" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste erlaubt das Zoomen des aktuellen Editors oder der Shell.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4501" />
-      <location filename="../UI/UserInterface.py" line="4460" />
+      <location filename="../UI/UserInterface.py" line="4475" />
+      <location filename="../UI/UserInterface.py" line="4434" />
       <source>External Tools/{0}</source>
       <translation>Externe Werkzeuge/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4609" />
+      <location filename="../UI/UserInterface.py" line="4583" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation>&lt;h2&gt;Versionsnummern&lt;/h2&gt;&lt;table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4679" />
+      <location filename="../UI/UserInterface.py" line="4653" />
       <source>Desktop</source>
       <translation>Arbeitsumgebung</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4683" />
+      <location filename="../UI/UserInterface.py" line="4657" />
       <source>Session Type</source>
       <translation>Sitzungstyp</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4739" />
+      <location filename="../UI/UserInterface.py" line="4713" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>E-Mail-Adresse oder Mailserver-Adresse sind leer. Bitte konfiguriere die E-Mail-Einstellungen im Einstellungsdialog.</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5048" />
+      <source>Restart application</source>
+      <translation>Anwendung neu starten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5049" />
+      <source>The application needs to be restarted. Do it now?</source>
+      <translation>Die Anwendung muss neu gestartet werden. Jetzt durchführen?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5073" />
+      <source>Upgrade PyQt</source>
+      <translation>PyQt aktualisieren</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5074" />
-      <source>Restart application</source>
-      <translation>Anwendung neu starten</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5075" />
-      <source>The application needs to be restarted. Do it now?</source>
-      <translation>Die Anwendung muss neu gestartet werden. Jetzt durchführen?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5099" />
-      <source>Upgrade PyQt</source>
-      <translation>PyQt aktualisieren</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5100" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -93700,12 +93602,12 @@
 Soll die Aktualisierung jetzt durchgeführt werden?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5098" />
       <source>Upgrade Eric</source>
       <translation>Eric aktualisieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5125" />
+      <location filename="../UI/UserInterface.py" line="5099" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -93714,12 +93616,12 @@
 Soll die Aktualisierung jetzt durchgeführt werden?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5150" />
+      <location filename="../UI/UserInterface.py" line="5124" />
       <source>Upgrade Eric and PyQt6</source>
       <translation>Eric und PyQt6 aktualisieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5151" />
+      <location filename="../UI/UserInterface.py" line="5125" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
@@ -93728,336 +93630,336 @@
 Soll die Aktualisierung jetzt durchgeführt werden?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5213" />
+      <location filename="../UI/UserInterface.py" line="5187" />
       <source>&amp;Builtin Tools</source>
       <translation>&amp;Eingebaute Werkzeuge</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5233" />
+      <location filename="../UI/UserInterface.py" line="5207" />
       <source>&amp;Plugin Tools</source>
       <translation>&amp;Pluginwerkzeuge</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5210" />
+      <source>&amp;User Tools</source>
+      <translation>&amp;Benutzerwerkzeuge</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5236" />
-      <source>&amp;User Tools</source>
-      <translation>&amp;Benutzerwerkzeuge</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5262" />
       <source>Configure Tool Groups ...</source>
       <translation>Konfiguriere Werkzeuggruppen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5266" />
+      <location filename="../UI/UserInterface.py" line="5240" />
       <source>Configure current Tool Group ...</source>
       <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5305" />
-      <location filename="../UI/UserInterface.py" line="5285" />
+      <location filename="../UI/UserInterface.py" line="5279" />
+      <location filename="../UI/UserInterface.py" line="5259" />
       <source>No User Tools Configured</source>
       <translation>Keine Benutzerwerkzeuge konfiguriert</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5381" />
+      <location filename="../UI/UserInterface.py" line="5355" />
       <source>&amp;Show all</source>
       <translation>Alle an&amp;zeigen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5383" />
+      <location filename="../UI/UserInterface.py" line="5357" />
       <source>&amp;Hide all</source>
       <translation>Alle &amp;ausblenden</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6498" />
-      <location filename="../UI/UserInterface.py" line="6487" />
-      <location filename="../UI/UserInterface.py" line="6439" />
-      <location filename="../UI/UserInterface.py" line="6429" />
-      <location filename="../UI/UserInterface.py" line="6252" />
-      <location filename="../UI/UserInterface.py" line="6242" />
-      <location filename="../UI/UserInterface.py" line="6184" />
-      <location filename="../UI/UserInterface.py" line="6174" />
+      <location filename="../UI/UserInterface.py" line="6472" />
+      <location filename="../UI/UserInterface.py" line="6461" />
+      <location filename="../UI/UserInterface.py" line="6413" />
+      <location filename="../UI/UserInterface.py" line="6403" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6216" />
+      <location filename="../UI/UserInterface.py" line="6158" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <source>Problem</source>
       <translation>Problem</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6499" />
-      <location filename="../UI/UserInterface.py" line="6488" />
-      <location filename="../UI/UserInterface.py" line="6440" />
-      <location filename="../UI/UserInterface.py" line="6430" />
-      <location filename="../UI/UserInterface.py" line="6253" />
-      <location filename="../UI/UserInterface.py" line="6243" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6175" />
+      <location filename="../UI/UserInterface.py" line="6473" />
+      <location filename="../UI/UserInterface.py" line="6462" />
+      <location filename="../UI/UserInterface.py" line="6414" />
+      <location filename="../UI/UserInterface.py" line="6404" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert nicht oder hat die Größe Null.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6740" />
-      <location filename="../UI/UserInterface.py" line="6651" />
-      <location filename="../UI/UserInterface.py" line="6534" />
-      <location filename="../UI/UserInterface.py" line="6511" />
-      <location filename="../UI/UserInterface.py" line="6452" />
-      <location filename="../UI/UserInterface.py" line="6399" />
-      <location filename="../UI/UserInterface.py" line="6377" />
-      <location filename="../UI/UserInterface.py" line="6328" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6275" />
-      <location filename="../UI/UserInterface.py" line="6216" />
-      <location filename="../UI/UserInterface.py" line="6207" />
+      <location filename="../UI/UserInterface.py" line="6714" />
+      <location filename="../UI/UserInterface.py" line="6625" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6302" />
+      <location filename="../UI/UserInterface.py" line="6293" />
+      <location filename="../UI/UserInterface.py" line="6258" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6190" />
+      <location filename="../UI/UserInterface.py" line="6181" />
       <source>Process Generation Error</source>
       <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6208" />
+      <location filename="../UI/UserInterface.py" line="6182" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Qt-Designer konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6191" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Qt-Designer Programm konnte nicht gefunden werden.&lt;br&gt;Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6250" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Qt-Linguist konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6285" />
+      <location filename="../UI/UserInterface.py" line="6259" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Qt-Linguist Programm konnte nicht gefunden werden.&lt;br&gt;Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6320" />
+      <location filename="../UI/UserInterface.py" line="6294" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Qt-Assistant konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6303" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Qt-Assistant Programm konnte nicht gefunden werden.&lt;br&gt;Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6362" />
+      <location filename="../UI/UserInterface.py" line="6336" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>Momentan ist kein Betrachter angegeben. Bitte benutzen Sie den Einstellungsdialog, um einen festzulegen.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6378" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Betrachter konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass er als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6374" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Hilfeanzeige konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass sie als &lt;b&gt;hh&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6453" />
+      <location filename="../UI/UserInterface.py" line="6427" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die UI-Vorschau konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass sie als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6512" />
+      <location filename="../UI/UserInterface.py" line="6486" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Übersetzungsvorschau konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass sie als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6535" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der SQL-Browser konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass er als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6632" />
+      <location filename="../UI/UserInterface.py" line="6606" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Bildschirmfotofunktion steht für Wayland basierte Desktop-Umgebungen nicht zur Verfügung.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6652" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Bildschirmfotoanwendung konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass sie als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6685" />
-      <location filename="../UI/UserInterface.py" line="6675" />
+      <location filename="../UI/UserInterface.py" line="6659" />
+      <location filename="../UI/UserInterface.py" line="6649" />
       <source>External Tools</source>
       <translation>Externe Werkzeuge</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6676" />
+      <location filename="../UI/UserInterface.py" line="6650" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation>Kein Eintrag für das externe Werkzeug „{0}“ in der Gruppe „{1}“ gefunden.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6686" />
+      <location filename="../UI/UserInterface.py" line="6660" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6723" />
+      <location filename="../UI/UserInterface.py" line="6697" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Starte Prozess „{0} {1}“.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6741" />
+      <location filename="../UI/UserInterface.py" line="6715" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Werkzeugeeintrag &lt;b&gt;{0}&lt;/b&gt; konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass er als &lt;b&gt;{1}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6820" />
+      <location filename="../UI/UserInterface.py" line="6794" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Prozess „{0}“ ist beendet.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7108" />
-      <location filename="../UI/UserInterface.py" line="7046" />
-      <location filename="../UI/UserInterface.py" line="7002" />
-      <location filename="../UI/UserInterface.py" line="6928" />
-      <location filename="../UI/UserInterface.py" line="6864" />
+      <location filename="../UI/UserInterface.py" line="7082" />
+      <location filename="../UI/UserInterface.py" line="7020" />
+      <location filename="../UI/UserInterface.py" line="6976" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6838" />
       <source>Documentation Missing</source>
       <translation>Dokumentation fehlt</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7109" />
-      <location filename="../UI/UserInterface.py" line="7047" />
-      <location filename="../UI/UserInterface.py" line="7003" />
-      <location filename="../UI/UserInterface.py" line="6929" />
-      <location filename="../UI/UserInterface.py" line="6865" />
+      <location filename="../UI/UserInterface.py" line="7083" />
+      <location filename="../UI/UserInterface.py" line="7021" />
+      <location filename="../UI/UserInterface.py" line="6977" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6839" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Dokumentationsstartpunkt „&lt;b&gt;{0}&lt;/b&gt;“ konnte nicht gefunden werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7090" />
-      <location filename="../UI/UserInterface.py" line="6972" />
+      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="6946" />
       <source>Documentation</source>
       <translation>Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6973" />
+      <location filename="../UI/UserInterface.py" line="6947" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der PyQt{0}-Dokumentations-Startpunkt ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7091" />
+      <location filename="../UI/UserInterface.py" line="7065" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der PySide{0}-Dokumentations-Startpunkt ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7270" />
-      <location filename="../UI/UserInterface.py" line="7206" />
+      <location filename="../UI/UserInterface.py" line="7244" />
+      <location filename="../UI/UserInterface.py" line="7180" />
       <source>Start Web Browser</source>
       <translation>Web Browser starten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7207" />
+      <location filename="../UI/UserInterface.py" line="7181" />
       <source>The eric web browser could not be started.</source>
       <translation>Der eric Web Browser konnte nicht gestartet werden.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7271" />
+      <location filename="../UI/UserInterface.py" line="7245" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der eric Web Browser ist nicht gestartet.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Open Browser</source>
       <translation>Browser starten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Could not start a web browser</source>
       <translation>Der System Web Browser konnte nicht gestartet werden</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7595" />
+      <location filename="../UI/UserInterface.py" line="7557" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation>Tastaturkurzbefehlsdatei (*.ekj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7601" />
+      <location filename="../UI/UserInterface.py" line="7575" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Tastaturkurzbefehlsdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7805" />
+      <location filename="../UI/UserInterface.py" line="7779" />
       <source>Load crash session...</source>
       <translation>Absturzsicherung laden...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7808" />
+      <location filename="../UI/UserInterface.py" line="7782" />
       <source>Clean crash sessions...</source>
       <translation>Absturzsicherungen bereinigen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7845" />
+      <location filename="../UI/UserInterface.py" line="7819" />
       <source>Read Session</source>
       <translation>Sitzung lesen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7846" />
+      <location filename="../UI/UserInterface.py" line="7820" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Sitzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7869" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Save Session</source>
       <translation>Sitzung speichern</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7894" />
-      <location filename="../UI/UserInterface.py" line="7871" />
+      <location filename="../UI/UserInterface.py" line="7868" />
+      <location filename="../UI/UserInterface.py" line="7845" />
       <source>eric Session Files (*.esj)</source>
       <translation>eric Sitzungsdateien (*.esj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8400" />
+      <location filename="../UI/UserInterface.py" line="8374" />
       <source>Drop Error</source>
       <translation>Drop-Fehler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8401" />
+      <location filename="../UI/UserInterface.py" line="8375" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; ist keine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8598" />
+      <location filename="../UI/UserInterface.py" line="8550" />
       <source>Upgrade available</source>
       <translation>Aktualisierung verfügbar</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8551" />
+      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Eine neuere Version des &lt;b&gt;eric-ide&lt;/b&gt; Paketes ist auf &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt; verfügbar.&lt;/p&gt;&lt;p&gt;Installiert: {1}&lt;br/&gt;Verfügbar: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Soll &lt;b&gt;eric-ide&lt;/b&gt; aktualisiert werden?&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8599" />
-      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Eine neuere Version des &lt;b&gt;eric-ide&lt;/b&gt; Paketes ist auf &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt; verfügbar.&lt;/p&gt;&lt;p&gt;Installiert: {1}&lt;br/&gt;Verfügbar: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Soll &lt;b&gt;eric-ide&lt;/b&gt; aktualisiert werden?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
       <source>First time usage</source>
       <translation>Erstmalige Nutzung</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8600" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation>eric wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8622" />
       <source>Select Workspace Directory</source>
       <translation>Wähle Arbeitsverzeichnis</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8790" />
       <source>Unsaved Data Detected</source>
       <translation>Nicht gespeicherte Daten gefunden</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8791" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation>Einige Editoren haben nicht gespeicherte Inhalte. Sollen diese gespeichert werden?</translation>
     </message>
--- a/src/eric7/i18n/eric7_empty.ts	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/i18n/eric7_empty.ts	Sun Apr 13 14:46:18 2025 +0200
@@ -1689,47 +1689,47 @@
   <context>
     <name>BackgroundService</name>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="168" />
+      <location filename="../Utilities/BackgroundService.py" line="169" />
       <source>{0} not configured.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="230" />
-      <source>Initialization of Background Service</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>Initialization of Background Service</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="232" />
       <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="244" />
-      <source>Restart background client?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="245" />
+      <source>Restart background client?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="246" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="274" />
+      <location filename="../Utilities/BackgroundService.py" line="275" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="515" />
+      <location filename="../Utilities/BackgroundService.py" line="516" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="524" />
-      <source>Background client disconnected.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="525" />
+      <source>Background client disconnected.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="526" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -3711,7 +3711,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="526" />
+      <location filename="../Cooperation/ChatWidget.py" line="528" />
       <location filename="../Cooperation/ChatWidget.ui" line="0" />
       <source>Clear</source>
       <translation type="unfinished" />
@@ -3742,150 +3742,150 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="322" />
+      <location filename="../Cooperation/ChatWidget.py" line="324" />
       <location filename="../Cooperation/ChatWidget.py" line="85" />
       <source>Start Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="153" />
+      <location filename="../Cooperation/ChatWidget.py" line="155" />
       <source>! Unknown command: {0}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="176" />
+      <location filename="../Cooperation/ChatWidget.py" line="178" />
       <source>* {0} has joined.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="193" />
+      <location filename="../Cooperation/ChatWidget.py" line="195" />
       <source>New User</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="194" />
+      <location filename="../Cooperation/ChatWidget.py" line="196" />
       <source>{0} has joined.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="217" />
+      <location filename="../Cooperation/ChatWidget.py" line="219" />
       <source>* {0} has left.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="226" />
+      <location filename="../Cooperation/ChatWidget.py" line="228" />
       <source>User Left</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="227" />
+      <location filename="../Cooperation/ChatWidget.py" line="229" />
       <source>{0} has left.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="255" />
+      <location filename="../Cooperation/ChatWidget.py" line="257" />
       <source>Message from &lt;{0}&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="330" />
+      <location filename="../Cooperation/ChatWidget.py" line="332" />
       <source>Stop Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="336" />
+      <location filename="../Cooperation/ChatWidget.py" line="338" />
       <source>! Server Error: {0}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="347" />
+      <location filename="../Cooperation/ChatWidget.py" line="349" />
       <source>Disconnect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="351" />
+      <location filename="../Cooperation/ChatWidget.py" line="353" />
       <source>Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="515" />
+      <location filename="../Cooperation/ChatWidget.py" line="517" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="519" />
+      <location filename="../Cooperation/ChatWidget.py" line="521" />
       <source>Cut all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="522" />
+      <location filename="../Cooperation/ChatWidget.py" line="524" />
       <source>Copy all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="530" />
+      <location filename="../Cooperation/ChatWidget.py" line="532" />
       <source>Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="588" />
-      <location filename="../Cooperation/ChatWidget.py" line="573" />
+      <location filename="../Cooperation/ChatWidget.py" line="590" />
+      <location filename="../Cooperation/ChatWidget.py" line="575" />
       <source>Save Chat</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="575" />
+      <location filename="../Cooperation/ChatWidget.py" line="577" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="589" />
+      <location filename="../Cooperation/ChatWidget.py" line="591" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="604" />
+      <location filename="../Cooperation/ChatWidget.py" line="606" />
       <source>Error saving Chat</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="605" />
+      <location filename="../Cooperation/ChatWidget.py" line="607" />
       <source>&lt;p&gt;The chat contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="644" />
+      <location filename="../Cooperation/ChatWidget.py" line="646" />
       <source>Kick User</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="648" />
+      <location filename="../Cooperation/ChatWidget.py" line="650" />
       <source>Ban User</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="652" />
+      <location filename="../Cooperation/ChatWidget.py" line="654" />
       <source>Ban and Kick User</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="683" />
+      <location filename="../Cooperation/ChatWidget.py" line="685" />
       <source>* {0} has been kicked.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="700" />
+      <location filename="../Cooperation/ChatWidget.py" line="702" />
       <source>* {0} has been banned.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="717" />
+      <location filename="../Cooperation/ChatWidget.py" line="719" />
       <source>* {0} has been banned and kicked.
 </source>
       <translation type="unfinished" />
@@ -4833,32 +4833,32 @@
   <context>
     <name>CodeDocumentationViewer</name>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="220" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="222" />
       <source>Code Info Provider:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="238" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="240" />
       <source>Select the code info provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="239" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="241" />
       <source>&lt;disabled&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="420" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="422" />
       <source>No documentation available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="441" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="443" />
       <source>No source code documentation provider has been registered. This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="449" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="451" />
       <source>This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
@@ -8756,10 +8756,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="608" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="505" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="467" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="455" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="604" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="501" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="463" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="451" />
       <location filename="../Project/CreateDialogCodeDialog.py" line="419" />
       <source>Code Generation</source>
       <translation type="unfinished" />
@@ -8770,22 +8770,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="456" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="452" />
       <source>&lt;p&gt;No code template file available for project type "{0}".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="468" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="464" />
       <source>&lt;p&gt;Could not open the code template file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="506" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="502" />
       <source>&lt;p&gt;Could not open the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="609" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="605" />
       <source>&lt;p&gt;Could not write the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9288,676 +9288,676 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="207" />
+      <location filename="../Debugger/DebugUI.py" line="210" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="234" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="237" />
       <source>Run Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="236" />
+      <location filename="../Debugger/DebugUI.py" line="239" />
       <source>&amp;Run Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="242" />
+      <location filename="../Debugger/DebugUI.py" line="245" />
       <source>Run the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="244" />
+      <location filename="../Debugger/DebugUI.py" line="247" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2386" />
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="255" />
+      <location filename="../Debugger/DebugUI.py" line="2389" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="258" />
       <source>Run Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="257" />
+      <location filename="../Debugger/DebugUI.py" line="260" />
       <source>Run &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="263" />
+      <location filename="../Debugger/DebugUI.py" line="266" />
       <source>Run the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="265" />
+      <location filename="../Debugger/DebugUI.py" line="268" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="277" />
+      <location filename="../Debugger/DebugUI.py" line="280" />
       <source>Coverage run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="279" />
+      <location filename="../Debugger/DebugUI.py" line="282" />
       <source>Coverage run of Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="286" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="300" />
+      <location filename="../Debugger/DebugUI.py" line="303" />
       <source>Coverage run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="302" />
+      <location filename="../Debugger/DebugUI.py" line="305" />
       <source>Coverage run of Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="309" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="324" />
+      <location filename="../Debugger/DebugUI.py" line="327" />
       <source>Profile Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="326" />
+      <location filename="../Debugger/DebugUI.py" line="329" />
       <source>Profile Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="332" />
+      <location filename="../Debugger/DebugUI.py" line="335" />
       <source>Profile the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="334" />
+      <location filename="../Debugger/DebugUI.py" line="337" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="344" />
+      <location filename="../Debugger/DebugUI.py" line="347" />
       <source>Profile Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="346" />
+      <location filename="../Debugger/DebugUI.py" line="349" />
       <source>Profile Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="352" />
+      <location filename="../Debugger/DebugUI.py" line="355" />
       <source>Profile the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="354" />
+      <location filename="../Debugger/DebugUI.py" line="357" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="365" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="368" />
       <source>Debug Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="367" />
+      <location filename="../Debugger/DebugUI.py" line="370" />
       <source>&amp;Debug Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="373" />
+      <location filename="../Debugger/DebugUI.py" line="376" />
       <source>Debug the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="375" />
+      <location filename="../Debugger/DebugUI.py" line="378" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2579" />
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="387" />
+      <location filename="../Debugger/DebugUI.py" line="2582" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="390" />
       <source>Debug Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="389" />
+      <location filename="../Debugger/DebugUI.py" line="392" />
       <source>Debug &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="395" />
+      <location filename="../Debugger/DebugUI.py" line="398" />
       <source>Debug the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="397" />
+      <location filename="../Debugger/DebugUI.py" line="400" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2895" />
-      <location filename="../Debugger/DebugUI.py" line="411" />
-      <location filename="../Debugger/DebugUI.py" line="409" />
+      <location filename="../Debugger/DebugUI.py" line="2898" />
+      <location filename="../Debugger/DebugUI.py" line="414" />
+      <location filename="../Debugger/DebugUI.py" line="412" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="417" />
+      <location filename="../Debugger/DebugUI.py" line="420" />
       <source>Restart the last debugged script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="419" />
+      <location filename="../Debugger/DebugUI.py" line="422" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="628" />
-      <location filename="../Debugger/DebugUI.py" line="433" />
-      <location filename="../Debugger/DebugUI.py" line="431" />
+      <location filename="../Debugger/DebugUI.py" line="631" />
+      <location filename="../Debugger/DebugUI.py" line="436" />
+      <location filename="../Debugger/DebugUI.py" line="434" />
       <source>Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="439" />
+      <location filename="../Debugger/DebugUI.py" line="442" />
       <source>Stop the running script.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="441" />
+      <location filename="../Debugger/DebugUI.py" line="444" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="452" />
+      <location filename="../Debugger/DebugUI.py" line="455" />
       <source>Continue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="454" />
+      <location filename="../Debugger/DebugUI.py" line="457" />
       <source>&amp;Continue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="460" />
+      <location filename="../Debugger/DebugUI.py" line="463" />
       <source>Continue running the program from the current line</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="462" />
+      <location filename="../Debugger/DebugUI.py" line="465" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="473" />
+      <location filename="../Debugger/DebugUI.py" line="476" />
       <source>Continue to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="475" />
+      <location filename="../Debugger/DebugUI.py" line="478" />
       <source>Continue &amp;To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="482" />
+      <location filename="../Debugger/DebugUI.py" line="485" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="488" />
+      <location filename="../Debugger/DebugUI.py" line="491" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="498" />
+      <location filename="../Debugger/DebugUI.py" line="501" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="500" />
+      <location filename="../Debugger/DebugUI.py" line="503" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="507" />
+      <location filename="../Debugger/DebugUI.py" line="510" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="513" />
+      <location filename="../Debugger/DebugUI.py" line="516" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="524" />
+      <location filename="../Debugger/DebugUI.py" line="527" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="526" />
+      <location filename="../Debugger/DebugUI.py" line="529" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="533" />
+      <location filename="../Debugger/DebugUI.py" line="536" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="539" />
+      <location filename="../Debugger/DebugUI.py" line="542" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="553" />
+      <location filename="../Debugger/DebugUI.py" line="556" />
       <source>Single Step</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="555" />
+      <location filename="../Debugger/DebugUI.py" line="558" />
       <source>Sin&amp;gle Step</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="561" />
+      <location filename="../Debugger/DebugUI.py" line="564" />
       <source>Execute a single Python statement</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="563" />
+      <location filename="../Debugger/DebugUI.py" line="566" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="575" />
+      <location filename="../Debugger/DebugUI.py" line="578" />
       <source>Step Over</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="577" />
+      <location filename="../Debugger/DebugUI.py" line="580" />
       <source>Step &amp;Over</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="584" />
+      <location filename="../Debugger/DebugUI.py" line="587" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="590" />
+      <location filename="../Debugger/DebugUI.py" line="593" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="603" />
+      <location filename="../Debugger/DebugUI.py" line="606" />
       <source>Step Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="605" />
+      <location filename="../Debugger/DebugUI.py" line="608" />
       <source>Step Ou&amp;t</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="612" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="630" />
+      <location filename="../Debugger/DebugUI.py" line="633" />
       <source>&amp;Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="636" />
+      <location filename="../Debugger/DebugUI.py" line="639" />
       <source>Stop debugging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="638" />
+      <location filename="../Debugger/DebugUI.py" line="641" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="644" />
+      <location filename="../Debugger/DebugUI.py" line="647" />
       <source>Variables Type Filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="645" />
+      <location filename="../Debugger/DebugUI.py" line="648" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="651" />
+      <location filename="../Debugger/DebugUI.py" line="654" />
       <source>Configure variables type filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="653" />
+      <location filename="../Debugger/DebugUI.py" line="656" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="664" />
+      <location filename="../Debugger/DebugUI.py" line="667" />
       <source>Exceptions Filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="665" />
+      <location filename="../Debugger/DebugUI.py" line="668" />
       <source>&amp;Exceptions Filter...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="671" />
+      <location filename="../Debugger/DebugUI.py" line="674" />
       <source>Configure exceptions filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="673" />
+      <location filename="../Debugger/DebugUI.py" line="676" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="685" />
+      <location filename="../Debugger/DebugUI.py" line="688" />
       <source>Ignored Exceptions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="686" />
+      <location filename="../Debugger/DebugUI.py" line="689" />
       <source>&amp;Ignored Exceptions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="692" />
+      <location filename="../Debugger/DebugUI.py" line="695" />
       <source>Configure ignored exceptions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="694" />
+      <location filename="../Debugger/DebugUI.py" line="697" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="716" />
-      <location filename="../Debugger/DebugUI.py" line="710" />
-      <location filename="../Debugger/DebugUI.py" line="708" />
+      <location filename="../Debugger/DebugUI.py" line="719" />
+      <location filename="../Debugger/DebugUI.py" line="713" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Toggle Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="714" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="718" />
+      <location filename="../Debugger/DebugUI.py" line="721" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="736" />
-      <location filename="../Debugger/DebugUI.py" line="728" />
+      <location filename="../Debugger/DebugUI.py" line="739" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Edit Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="730" />
+      <location filename="../Debugger/DebugUI.py" line="733" />
       <source>Edit Breakpoint...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="734" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="738" />
+      <location filename="../Debugger/DebugUI.py" line="741" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="756" />
-      <location filename="../Debugger/DebugUI.py" line="750" />
-      <location filename="../Debugger/DebugUI.py" line="748" />
+      <location filename="../Debugger/DebugUI.py" line="759" />
+      <location filename="../Debugger/DebugUI.py" line="753" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Next Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="754" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="758" />
+      <location filename="../Debugger/DebugUI.py" line="761" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="775" />
-      <location filename="../Debugger/DebugUI.py" line="769" />
-      <location filename="../Debugger/DebugUI.py" line="767" />
+      <location filename="../Debugger/DebugUI.py" line="778" />
+      <location filename="../Debugger/DebugUI.py" line="772" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Previous Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="773" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="777" />
+      <location filename="../Debugger/DebugUI.py" line="780" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="793" />
-      <location filename="../Debugger/DebugUI.py" line="787" />
-      <location filename="../Debugger/DebugUI.py" line="786" />
+      <location filename="../Debugger/DebugUI.py" line="796" />
+      <location filename="../Debugger/DebugUI.py" line="790" />
+      <location filename="../Debugger/DebugUI.py" line="789" />
       <source>Clear Breakpoints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="795" />
+      <location filename="../Debugger/DebugUI.py" line="798" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="819" />
+      <location filename="../Debugger/DebugUI.py" line="822" />
       <source>&amp;Debug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="821" />
+      <location filename="../Debugger/DebugUI.py" line="824" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="823" />
+      <location filename="../Debugger/DebugUI.py" line="826" />
       <source>&amp;Breakpoints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="866" />
-      <location filename="../Debugger/DebugUI.py" line="864" />
+      <location filename="../Debugger/DebugUI.py" line="869" />
+      <location filename="../Debugger/DebugUI.py" line="867" />
       <source>Start</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="879" />
-      <location filename="../Debugger/DebugUI.py" line="877" />
+      <location filename="../Debugger/DebugUI.py" line="882" />
+      <location filename="../Debugger/DebugUI.py" line="880" />
       <source>Debug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1342" />
+      <location filename="../Debugger/DebugUI.py" line="1345" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1348" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1353" />
+      <location filename="../Debugger/DebugUI.py" line="1356" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1365" />
+      <location filename="../Debugger/DebugUI.py" line="1368" />
       <source>Program terminated</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1401" />
+      <location filename="../Debugger/DebugUI.py" line="1404" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1421" />
+      <location filename="../Debugger/DebugUI.py" line="1424" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1449" />
+      <location filename="../Debugger/DebugUI.py" line="1452" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1498" />
+      <location filename="../Debugger/DebugUI.py" line="1501" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1516" />
+      <location filename="../Debugger/DebugUI.py" line="1519" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1532" />
+      <location filename="../Debugger/DebugUI.py" line="1535" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1594" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1609" />
+      <location filename="../Debugger/DebugUI.py" line="1612" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1670" />
+      <location filename="../Debugger/DebugUI.py" line="1673" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1717" />
+      <location filename="../Debugger/DebugUI.py" line="1720" />
       <source>Breakpoint Condition Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1718" />
+      <location filename="../Debugger/DebugUI.py" line="1721" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1779" />
+      <location filename="../Debugger/DebugUI.py" line="1782" />
       <source>Watch Expression Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1780" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1810" />
+      <location filename="../Debugger/DebugUI.py" line="1813" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1815" />
+      <location filename="../Debugger/DebugUI.py" line="1818" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1821" />
+      <location filename="../Debugger/DebugUI.py" line="1824" />
       <source>Watch expression already exists</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1986" />
-      <location filename="../Debugger/DebugUI.py" line="1977" />
+      <location filename="../Debugger/DebugUI.py" line="1989" />
+      <location filename="../Debugger/DebugUI.py" line="1980" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1979" />
+      <location filename="../Debugger/DebugUI.py" line="1982" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2387" />
-      <location filename="../Debugger/DebugUI.py" line="2189" />
-      <location filename="../Debugger/DebugUI.py" line="1987" />
+      <location filename="../Debugger/DebugUI.py" line="2390" />
+      <location filename="../Debugger/DebugUI.py" line="2192" />
+      <location filename="../Debugger/DebugUI.py" line="1990" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2188" />
-      <location filename="../Debugger/DebugUI.py" line="2179" />
+      <location filename="../Debugger/DebugUI.py" line="2191" />
+      <location filename="../Debugger/DebugUI.py" line="2182" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2181" />
+      <location filename="../Debugger/DebugUI.py" line="2184" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2580" />
+      <location filename="../Debugger/DebugUI.py" line="2583" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3252" />
+      <location filename="../Debugger/DebugUI.py" line="3255" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -33301,7 +33301,6 @@
   <context>
     <name>HelpDocumentationPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="64" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="60" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="56" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="52" />
@@ -33428,21 +33427,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>Enter the PySide2 documentation directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
@@ -33858,28 +33842,18 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
-      <source>Qt6 Documentation</source>
+      <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
-      <source>PyQt5 Documentation</source>
+      <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
@@ -33889,73 +33863,68 @@
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="454" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="455" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="512" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="514" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="513" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="701" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="700" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="725" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="724" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="736" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="735" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="764" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="763" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="769" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="768" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="862" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="842" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="861" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="841" />
       <source>Clear History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="966" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="965" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1024" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1023" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1060" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1054" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
@@ -52030,7 +51999,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="415" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="416" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="221" />
       <source>No connection to Internet.</source>
       <translation type="unfinished" />
@@ -52066,24 +52035,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="435" />
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="411" />
-      <source>Error downloading dictionary file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="436" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="412" />
+      <source>Error downloading dictionary file</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="437" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="413" />
       <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="450" />
-      <source>Error downloading dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="451" />
+      <source>Error downloading dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="452" />
       <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -53958,7 +53927,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="459" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="460" />
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
@@ -53974,25 +53943,25 @@
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="192" />
       <source>%n supported serial device(s) detected.</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="205" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="206" />
       <source>{0} - {1} ({2})</source>
       <comment>board name, description, port name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="228" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="229" />
       <source>No supported serial devices detected.</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="233" />
       <source>
 %n unknown device(s) for manual selection.</source>
       <translation type="unfinished">
@@ -54000,17 +53969,17 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="239" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="240" />
       <source>Manual Selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="250" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="251" />
       <source>WebREPL (manual)</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="270" />
       <source>
 %n WebREPL connection(s) defined.</source>
       <translation type="unfinished">
@@ -54018,39 +53987,39 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="329" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="300" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
       <source>Unknown MicroPython Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="302" />
       <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href="mailto:{1}"&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="313" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="314" />
       <source>{0} (0x{1:04x}/0x{2:04x})</source>
       <comment>description, VID, PID</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="331" />
       <source>Would you like to add them to the list of manually configured devices?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="454" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="455" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="491" />
-      <source>No device attached</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="492" />
+      <source>No device attached</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="493" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -54059,353 +54028,353 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="523" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="731" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="718" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="720" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="726" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1198" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1190" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="729" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="730" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="772" />
-      <source>Run Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
-      <source>There is no editor open. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
-      <source>The current editor does not contain a script. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
+      <source>Run Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="774" />
+      <source>There is no editor open. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="783" />
+      <source>The current editor does not contain a script. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="792" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="827" />
-      <source>Start Chart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="828" />
+      <source>Start Chart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="829" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="843" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="844" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="860" />
-      <source>Unsaved Chart Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="861" />
+      <source>Unsaved Chart Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="862" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="909" />
-      <source>Start File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="910" />
+      <source>Start File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="911" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="930" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="931" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1017" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1018" />
       <source>Downloads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
       <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1067" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Implementation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1071" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1079" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1080" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Local Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1083" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1084" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1087" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1088" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1691" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1099" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1091" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1092" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1730" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1727" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1095" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1096" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1503" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1105" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1504" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1106" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1529" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1520" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1109" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1530" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1110" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1130" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1131" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1137" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1140" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1141" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1150" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1153" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1154" />
       <source>Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1162" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1163" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1173" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
-      <source>Device Version Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1174" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1170" />
+      <source>Device Version Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1175" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1204" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1205" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1220" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1211" />
-      <source>Device Implementation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
-      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
+      <source>Device Implementation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1213" />
+      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1296" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1297" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1304" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1305" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1320" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1321" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1332" />
-      <source>Local Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1333" />
+      <source>Local Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1334" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1374" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1357" />
-      <source>Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
-      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1375" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
+      <source>Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1359" />
+      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1376" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1399" />
-      <source>Error handling device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1400" />
+      <source>Error handling device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1401" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1442" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1443" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1468" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1469" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1478" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1479" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1488" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1489" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1522" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1613" />
-      <source>Add Unknown Devices</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1614" />
+      <source>Add Unknown Devices</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1664" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1665" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1716" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1717" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -54413,17 +54382,17 @@
   <context>
     <name>MicroPythonWindow</name>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="81" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="83" />
       <source>MicroPython / CircuitPython Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
@@ -59560,164 +59529,164 @@
   <context>
     <name>Pip</name>
     <message>
-      <location filename="../PipInterface/Pip.py" line="157" />
+      <location filename="../PipInterface/Pip.py" line="161" />
       <source>python exited with an error ({0}).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="166" />
+      <location filename="../PipInterface/Pip.py" line="170" />
       <source>python did not finish within 30 seconds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="168" />
+      <location filename="../PipInterface/Pip.py" line="172" />
       <source>python could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="229" />
+      <location filename="../PipInterface/Pip.py" line="233" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="254" />
+      <location filename="../PipInterface/Pip.py" line="258" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="255" />
+      <location filename="../PipInterface/Pip.py" line="259" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="308" />
+      <location filename="../PipInterface/Pip.py" line="312" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="355" />
+      <location filename="../PipInterface/Pip.py" line="359" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="487" />
-      <location filename="../PipInterface/Pip.py" line="469" />
+      <location filename="../PipInterface/Pip.py" line="491" />
+      <location filename="../PipInterface/Pip.py" line="473" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="470" />
+      <location filename="../PipInterface/Pip.py" line="474" />
       <source>There are no packages except 'eric-ide' or 'PyQt6' left for upgrade.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="533" />
+      <location filename="../PipInterface/Pip.py" line="537" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="564" />
+      <location filename="../PipInterface/Pip.py" line="568" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="586" />
+      <location filename="../PipInterface/Pip.py" line="590" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="621" />
-      <location filename="../PipInterface/Pip.py" line="611" />
+      <location filename="../PipInterface/Pip.py" line="625" />
+      <location filename="../PipInterface/Pip.py" line="615" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="612" />
+      <location filename="../PipInterface/Pip.py" line="753" />
+      <location filename="../PipInterface/Pip.py" line="616" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="622" />
+      <location filename="../PipInterface/Pip.py" line="626" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="642" />
+      <location filename="../PipInterface/Pip.py" line="646" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="776" />
-      <location filename="../PipInterface/Pip.py" line="702" />
-      <location filename="../PipInterface/Pip.py" line="672" />
-      <location filename="../PipInterface/Pip.py" line="663" />
+      <location filename="../PipInterface/Pip.py" line="780" />
+      <location filename="../PipInterface/Pip.py" line="706" />
+      <location filename="../PipInterface/Pip.py" line="676" />
+      <location filename="../PipInterface/Pip.py" line="667" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
-      <location filename="../PipInterface/Pip.py" line="703" />
-      <location filename="../PipInterface/Pip.py" line="664" />
+      <location filename="../PipInterface/Pip.py" line="781" />
+      <location filename="../PipInterface/Pip.py" line="707" />
+      <location filename="../PipInterface/Pip.py" line="668" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="720" />
+      <location filename="../PipInterface/Pip.py" line="724" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="759" />
-      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="763" />
+      <location filename="../PipInterface/Pip.py" line="752" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="760" />
+      <location filename="../PipInterface/Pip.py" line="764" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="787" />
+      <location filename="../PipInterface/Pip.py" line="791" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1198" />
+      <location filename="../PipInterface/Pip.py" line="1203" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1224" />
-      <location filename="../PipInterface/Pip.py" line="1215" />
+      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1220" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1216" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1248" />
-      <location filename="../PipInterface/Pip.py" line="1241" />
+      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1246" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1242" />
+      <location filename="../PipInterface/Pip.py" line="1247" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1273" />
-      <location filename="../PipInterface/Pip.py" line="1265" />
+      <location filename="../PipInterface/Pip.py" line="1278" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1266" />
+      <location filename="../PipInterface/Pip.py" line="1271" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -60637,205 +60606,205 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="737" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="731" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
       <source>Cleanup Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="733" />
       <source>The environment cleanup was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="739" />
       <source>Some leftover package directories could not been removed. Delete them manually.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="834" />
-      <source>Search PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="835" />
+      <source>Search PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="836" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="854" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="855" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="856" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="857" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="860" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="862" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="863" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="869" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="870" />
       <source>Install</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1048" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="871" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1049" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="872" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="874" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="875" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="877" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="878" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="884" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="885" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="886" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="887" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="889" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="890" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="892" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="893" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="896" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="897" />
       <source>Install from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="900" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="901" />
       <source>Uninstall from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="905" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="906" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="912" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="913" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="914" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="915" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="917" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="918" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="920" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="921" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="923" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="924" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="940" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="941" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="944" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="945" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="948" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="949" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="952" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="953" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="959" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="960" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="962" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="963" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="967" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="968" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1211" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1198" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1187" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1212" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1199" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1188" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1213" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1200" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1189" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1421" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1422" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1442" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1443" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1445" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1446" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1585" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1560" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1586" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1561" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1582" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1583" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
@@ -60843,7 +60812,7 @@
   <context>
     <name>PipPackagesWindow</name>
     <message>
-      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <location filename="../PipInterface/PipPackagesWindow.py" line="60" />
       <source>Manage Packages</source>
       <translation type="unfinished" />
     </message>
@@ -61360,52 +61329,52 @@
   <context>
     <name>PluginManager</name>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="230" />
+      <location filename="../PluginManager/PluginManager.py" line="232" />
       <source>Could not create a package for {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="262" />
+      <location filename="../PluginManager/PluginManager.py" line="264" />
       <source>The internal plugin directory &lt;b&gt;{0}&lt;/b&gt; does not exits.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="439" />
+      <location filename="../PluginManager/PluginManager.py" line="441" />
       <source>Module is missing the 'autoactivate' attribute.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="450" />
+      <location filename="../PluginManager/PluginManager.py" line="452" />
       <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="478" />
+      <location filename="../PluginManager/PluginManager.py" line="480" />
       <source>Module failed to load. Error: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="661" />
+      <location filename="../PluginManager/PluginManager.py" line="663" />
       <source>Incompatible plugin activation method.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1269" />
+      <location filename="../PluginManager/PluginManager.py" line="1271" />
       <source>Plugin Manager Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1270" />
+      <location filename="../PluginManager/PluginManager.py" line="1272" />
       <source>&lt;p&gt;The plugin download directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Please configure it via the configuration dialog.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1358" />
+      <location filename="../PluginManager/PluginManager.py" line="1360" />
       <source>Error downloading file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1359" />
+      <location filename="../PluginManager/PluginManager.py" line="1361" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -62290,18 +62259,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1911" />
+      <location filename="../Preferences/__init__.py" line="1891" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1940" />
-      <location filename="../Preferences/__init__.py" line="1913" />
+      <location filename="../Preferences/__init__.py" line="1920" />
+      <location filename="../Preferences/__init__.py" line="1893" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1938" />
+      <location filename="../Preferences/__init__.py" line="1918" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
@@ -62825,113 +62794,98 @@
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="204" />
-      <source>Translation Extractor (Python, PySide2)</source>
+      <source>Translation Extractor (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="213" />
-      <source>Forms Compiler (Python, PySide2)</source>
+      <source>Forms Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="222" />
-      <source>Resource Compiler (Python, PySide2)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="232" />
-      <source>Translation Extractor (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="241" />
-      <source>Forms Compiler (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="250" />
       <source>Resource Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="265" />
+      <location filename="../Preferences/ProgramsDialog.py" line="237" />
       <source>conda Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="275" />
+      <location filename="../Preferences/ProgramsDialog.py" line="247" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="527" />
-      <location filename="../Preferences/ProgramsDialog.py" line="524" />
-      <location filename="../Preferences/ProgramsDialog.py" line="508" />
-      <location filename="../Preferences/ProgramsDialog.py" line="378" />
-      <location filename="../Preferences/ProgramsDialog.py" line="311" />
+      <location filename="../Preferences/ProgramsDialog.py" line="499" />
+      <location filename="../Preferences/ProgramsDialog.py" line="496" />
+      <location filename="../Preferences/ProgramsDialog.py" line="480" />
+      <location filename="../Preferences/ProgramsDialog.py" line="350" />
+      <location filename="../Preferences/ProgramsDialog.py" line="283" />
+      <location filename="../Preferences/ProgramsDialog.py" line="266" />
+      <source>(unknown)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="270" />
+      <source>Spell Checker - PyEnchant</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="287" />
+      <source>Source Highlighter - Pygments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ProgramsDialog.py" line="294" />
-      <source>(unknown)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="298" />
-      <source>Spell Checker - PyEnchant</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="315" />
-      <source>Source Highlighter - Pygments</source>
+      <source>MicroPython - MPY Cross Compiler</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="301" />
+      <source>MicroPython - ESP Tool</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="312" />
+      <source>MicroPython - PyBoard Flasher</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="322" />
-      <source>MicroPython - MPY Cross Compiler</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="329" />
-      <source>MicroPython - ESP Tool</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="340" />
-      <source>MicroPython - PyBoard Flasher</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="350" />
       <source>MicroPython - STLink Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="360" />
+      <location filename="../Preferences/ProgramsDialog.py" line="332" />
       <source>MicroPython - STLink Flasher</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="382" />
+      <location filename="../Preferences/ProgramsDialog.py" line="354" />
       <source>Code Assistant - Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="462" />
+      <location filename="../Preferences/ProgramsDialog.py" line="434" />
       <source>(not configured)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="497" />
+      <location filename="../Preferences/ProgramsDialog.py" line="469" />
       <source>(module not found)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="530" />
+      <location filename="../Preferences/ProgramsDialog.py" line="502" />
       <source>(not executable)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="576" />
-      <location filename="../Preferences/ProgramsDialog.py" line="544" />
-      <location filename="../Preferences/ProgramsDialog.py" line="542" />
+      <location filename="../Preferences/ProgramsDialog.py" line="548" />
+      <location filename="../Preferences/ProgramsDialog.py" line="516" />
+      <location filename="../Preferences/ProgramsDialog.py" line="514" />
       <source>(not found)</source>
       <translation type="unfinished" />
     </message>
@@ -62990,1647 +62944,1637 @@
     </message>
     <message>
       <location filename="../Project/Project.py" line="362" />
-      <source>PySide2 GUI</source>
+      <source>PySide6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="363" />
-      <source>PySide2 Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="367" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="466" />
-      <location filename="../Project/Project.py" line="454" />
-      <location filename="../Project/Project.py" line="443" />
+      <location filename="../Project/Project.py" line="461" />
+      <location filename="../Project/Project.py" line="449" />
+      <location filename="../Project/Project.py" line="438" />
       <source>Registering Project Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="444" />
+      <location filename="../Project/Project.py" line="439" />
       <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="455" />
+      <location filename="../Project/Project.py" line="450" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="467" />
+      <location filename="../Project/Project.py" line="462" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="772" />
+      <location filename="../Project/Project.py" line="767" />
       <source>All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1321" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1579" />
-      <location filename="../Project/Project.py" line="1553" />
-      <location filename="../Project/Project.py" line="1517" />
-      <location filename="../Project/Project.py" line="1435" />
-      <location filename="../Project/Project.py" line="1396" />
-      <location filename="../Project/Project.py" line="1371" />
-      <location filename="../Project/Project.py" line="1334" />
+      <location filename="../Project/Project.py" line="1567" />
+      <location filename="../Project/Project.py" line="1541" />
+      <location filename="../Project/Project.py" line="1505" />
+      <location filename="../Project/Project.py" line="1423" />
+      <location filename="../Project/Project.py" line="1384" />
+      <location filename="../Project/Project.py" line="1359" />
+      <location filename="../Project/Project.py" line="1322" />
       <source>Please save the project first.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1370" />
+      <location filename="../Project/Project.py" line="1358" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1412" />
-      <location filename="../Project/Project.py" line="1395" />
+      <location filename="../Project/Project.py" line="1400" />
+      <location filename="../Project/Project.py" line="1383" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1402" />
+      <location filename="../Project/Project.py" line="1390" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1421" />
+      <location filename="../Project/Project.py" line="1409" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1422" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1516" />
+      <location filename="../Project/Project.py" line="1504" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1552" />
+      <location filename="../Project/Project.py" line="1540" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1595" />
-      <location filename="../Project/Project.py" line="1578" />
+      <location filename="../Project/Project.py" line="1583" />
+      <location filename="../Project/Project.py" line="1566" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1585" />
+      <location filename="../Project/Project.py" line="1573" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1604" />
+      <location filename="../Project/Project.py" line="1592" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1777" />
+      <location filename="../Project/Project.py" line="1765" />
       <source>Add Language</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1778" />
+      <location filename="../Project/Project.py" line="1766" />
       <source>You have to specify a translation pattern first.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1919" />
+      <location filename="../Project/Project.py" line="1905" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1946" />
-      <location filename="../Project/Project.py" line="1920" />
+      <location filename="../Project/Project.py" line="1932" />
+      <location filename="../Project/Project.py" line="1906" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1945" />
+      <location filename="../Project/Project.py" line="1931" />
       <source>Delete translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2098" />
-      <location filename="../Project/Project.py" line="2081" />
+      <location filename="../Project/Project.py" line="2084" />
+      <location filename="../Project/Project.py" line="2067" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2200" />
-      <location filename="../Project/Project.py" line="2082" />
+      <location filename="../Project/Project.py" line="2186" />
+      <location filename="../Project/Project.py" line="2068" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2099" />
+      <location filename="../Project/Project.py" line="2085" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2097" />
       <source>Add file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2296" />
-      <location filename="../Project/Project.py" line="2112" />
+      <location filename="../Project/Project.py" line="2282" />
+      <location filename="../Project/Project.py" line="2098" />
       <source>The target directory must not be empty.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2172" />
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2185" />
+      <location filename="../Project/Project.py" line="2158" />
+      <location filename="../Project/Project.py" line="2138" />
       <source>Add Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2153" />
+      <location filename="../Project/Project.py" line="2139" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2173" />
+      <location filename="../Project/Project.py" line="2159" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2307" />
-      <location filename="../Project/Project.py" line="2295" />
+      <location filename="../Project/Project.py" line="2293" />
+      <location filename="../Project/Project.py" line="2281" />
       <source>Add directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2308" />
+      <location filename="../Project/Project.py" line="2294" />
       <source>The source directory must not be empty.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2422" />
-      <location filename="../Project/Project.py" line="2404" />
-      <location filename="../Project/Project.py" line="2388" />
-      <location filename="../Project/Project.py" line="2381" />
+      <location filename="../Project/Project.py" line="2408" />
+      <location filename="../Project/Project.py" line="2390" />
+      <location filename="../Project/Project.py" line="2374" />
+      <location filename="../Project/Project.py" line="2367" />
       <source>Rename File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8089" />
-      <location filename="../Project/Project.py" line="3909" />
-      <location filename="../Project/Project.py" line="2405" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2423" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2690" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2691" />
-      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2719" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2720" />
-      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2853" />
-      <source>Create project directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2854" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3682" />
-      <location filename="../Project/Project.py" line="2954" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3683" />
-      <location filename="../Project/Project.py" line="2955" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2995" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2996" />
-      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3463" />
-      <location filename="../Project/Project.py" line="3020" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3464" />
-      <location filename="../Project/Project.py" line="3021" />
-      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3712" />
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3144" />
-      <location filename="../Project/Project.py" line="3112" />
-      <location filename="../Project/Project.py" line="3094" />
-      <location filename="../Project/Project.py" line="3069" />
-      <location filename="../Project/Project.py" line="3031" />
-      <source>New Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3032" />
-      <source>Add existing files to the project?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3713" />
-      <location filename="../Project/Project.py" line="3070" />
-      <source>Select Version Control System</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3174" />
-      <location filename="../Project/Project.py" line="3095" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3113" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3150" />
-      <location filename="../Project/Project.py" line="3139" />
-      <source>None</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3145" />
-      <source>Select version control system for the project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3356" />
-      <source>Translation Pattern</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3357" />
-      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3661" />
-      <source>Open Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="8075" />
-      <location filename="../Project/Project.py" line="8069" />
-      <location filename="../Project/Project.py" line="8059" />
-      <location filename="../Project/Project.py" line="3894" />
-      <location filename="../Project/Project.py" line="3884" />
-      <location filename="../Project/Project.py" line="3663" />
+      <location filename="../Project/Project.py" line="3895" />
+      <location filename="../Project/Project.py" line="2391" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2409" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2676" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2677" />
+      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2705" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2706" />
+      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2839" />
+      <source>Create project directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2840" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3668" />
+      <location filename="../Project/Project.py" line="2940" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3669" />
+      <location filename="../Project/Project.py" line="2941" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2981" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2982" />
+      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3449" />
+      <location filename="../Project/Project.py" line="3006" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3450" />
+      <location filename="../Project/Project.py" line="3007" />
+      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3698" />
+      <location filename="../Project/Project.py" line="3159" />
+      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3098" />
+      <location filename="../Project/Project.py" line="3080" />
+      <location filename="../Project/Project.py" line="3055" />
+      <location filename="../Project/Project.py" line="3017" />
+      <source>New Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3018" />
+      <source>Add existing files to the project?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3699" />
+      <location filename="../Project/Project.py" line="3056" />
+      <source>Select Version Control System</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3160" />
+      <location filename="../Project/Project.py" line="3081" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3099" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3125" />
+      <source>None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3131" />
+      <source>Select version control system for the project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3342" />
+      <source>Translation Pattern</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3343" />
+      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3647" />
+      <source>Open Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8061" />
+      <location filename="../Project/Project.py" line="8055" />
+      <location filename="../Project/Project.py" line="8045" />
+      <location filename="../Project/Project.py" line="3880" />
+      <location filename="../Project/Project.py" line="3870" />
+      <location filename="../Project/Project.py" line="3649" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="3892" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3878" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3947" />
+      <location filename="../Project/Project.py" line="3933" />
       <source>Close Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3948" />
+      <location filename="../Project/Project.py" line="3934" />
       <source>The current project has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4134" />
+      <location filename="../Project/Project.py" line="4098" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4149" />
-      <location filename="../Project/Project.py" line="4113" />
+      <location filename="../Project/Project.py" line="4135" />
+      <location filename="../Project/Project.py" line="4099" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4793" />
       <source>New project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4809" />
+      <location filename="../Project/Project.py" line="4795" />
       <source>&amp;New...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4801" />
+      <source>Generate a new project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4803" />
+      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4813" />
+      <source>Open project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4815" />
-      <source>Generate a new project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4817" />
-      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4827" />
-      <source>Open project</source>
+      <source>&amp;Open...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4821" />
+      <source>Open an existing project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4823" />
+      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4829" />
-      <source>&amp;Open...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4835" />
-      <source>Open an existing project</source>
+      <source>Open remote project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4831" />
+      <source>Open (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4837" />
-      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4843" />
-      <source>Open remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4845" />
-      <source>Open (Remote)...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4853" />
+      <location filename="../Project/Project.py" line="4839" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4862" />
+      <location filename="../Project/Project.py" line="4848" />
       <source>Reload project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4850" />
+      <source>Re&amp;load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4856" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4858" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4864" />
-      <source>Re&amp;load</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4870" />
-      <source>Reload the current project</source>
+      <source>Close project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4866" />
+      <source>&amp;Close</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4872" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4878" />
-      <source>Close project</source>
+      <source>Close the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4874" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4880" />
-      <source>&amp;Close</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4886" />
-      <source>Close the current project</source>
+      <source>Save project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5177" />
+      <location filename="../Project/Project.py" line="4882" />
+      <source>&amp;Save</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4888" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4894" />
-      <source>Save project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5191" />
+      <source>Save the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4890" />
+      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4896" />
-      <source>&amp;Save</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4902" />
-      <source>Save the current project</source>
+      <source>Save project as</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4898" />
+      <source>Save &amp;as...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4904" />
-      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4910" />
-      <source>Save project as</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4912" />
-      <source>Save &amp;as...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4920" />
+      <location filename="../Project/Project.py" line="4906" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4929" />
+      <location filename="../Project/Project.py" line="4915" />
       <source>Save project as (Remote)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4931" />
+      <location filename="../Project/Project.py" line="4917" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4938" />
+      <location filename="../Project/Project.py" line="4924" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4927" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4957" />
+      <location filename="../Project/Project.py" line="4943" />
       <source>Add files to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4959" />
+      <location filename="../Project/Project.py" line="4945" />
       <source>Add &amp;files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4965" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>Add files to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4967" />
+      <location filename="../Project/Project.py" line="4953" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4978" />
+      <location filename="../Project/Project.py" line="4964" />
       <source>Add directory to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4980" />
+      <location filename="../Project/Project.py" line="4966" />
       <source>Add directory...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4987" />
+      <location filename="../Project/Project.py" line="4973" />
       <source>Add a directory to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4990" />
+      <location filename="../Project/Project.py" line="4976" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5000" />
+      <location filename="../Project/Project.py" line="4986" />
       <source>Add translation to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5002" />
+      <location filename="../Project/Project.py" line="4988" />
       <source>Add &amp;translation...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4995" />
+      <source>Add a translation to the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4998" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5008" />
+      <source>Search new files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5009" />
-      <source>Add a translation to the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5012" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5022" />
-      <source>Search new files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5015" />
+      <source>Search new files in the project directory.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5017" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5027" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5028" />
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5029" />
-      <source>Search new files in the project directory.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5031" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5042" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5048" />
+      <location filename="../Project/Project.py" line="5034" />
       <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5050" />
+      <location filename="../Project/Project.py" line="5036" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5059" />
+      <location filename="../Project/Project.py" line="5045" />
       <source>Project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5061" />
+      <location filename="../Project/Project.py" line="5047" />
       <source>&amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5067" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Show the project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5069" />
+      <location filename="../Project/Project.py" line="5055" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5078" />
+      <location filename="../Project/Project.py" line="5064" />
       <source>User project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5080" />
+      <location filename="../Project/Project.py" line="5066" />
       <source>&amp;User Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5073" />
+      <source>Show the user specific project properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5076" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5086" />
+      <source>Filetype Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5087" />
-      <source>Show the user specific project properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5090" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5100" />
-      <source>Filetype Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5108" />
+      <location filename="../Project/Project.py" line="5094" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5097" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5110" />
+      <source>Lexer Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5111" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5124" />
-      <source>Lexer Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5132" />
+      <location filename="../Project/Project.py" line="5118" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5135" />
+      <location filename="../Project/Project.py" line="5121" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5153" />
+      <location filename="../Project/Project.py" line="5139" />
       <source>Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5154" />
+      <location filename="../Project/Project.py" line="5140" />
       <source>Debugger &amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5160" />
+      <location filename="../Project/Project.py" line="5146" />
       <source>Show the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5162" />
+      <location filename="../Project/Project.py" line="5148" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5158" />
       <source>Load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5173" />
+      <location filename="../Project/Project.py" line="5159" />
       <source>&amp;Load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5179" />
+      <location filename="../Project/Project.py" line="5165" />
       <source>Load the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5181" />
+      <location filename="../Project/Project.py" line="5167" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
+      <location filename="../Project/Project.py" line="5176" />
       <source>Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5197" />
+      <location filename="../Project/Project.py" line="5183" />
       <source>Save the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5199" />
+      <location filename="../Project/Project.py" line="5185" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5208" />
+      <location filename="../Project/Project.py" line="5194" />
       <source>Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5209" />
+      <location filename="../Project/Project.py" line="5195" />
       <source>&amp;Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5215" />
+      <location filename="../Project/Project.py" line="5201" />
       <source>Delete the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5217" />
+      <location filename="../Project/Project.py" line="5203" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5227" />
+      <location filename="../Project/Project.py" line="5213" />
       <source>Reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5228" />
+      <location filename="../Project/Project.py" line="5214" />
       <source>&amp;Reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5234" />
+      <location filename="../Project/Project.py" line="5220" />
       <source>Reset the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5236" />
+      <location filename="../Project/Project.py" line="5222" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5252" />
-      <location filename="../Project/Project.py" line="5251" />
+      <location filename="../Project/Project.py" line="5238" />
+      <location filename="../Project/Project.py" line="5237" />
       <source>Load session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5258" />
+      <location filename="../Project/Project.py" line="5244" />
       <source>Load the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5260" />
+      <location filename="../Project/Project.py" line="5246" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5276" />
-      <location filename="../Project/Project.py" line="5275" />
+      <location filename="../Project/Project.py" line="5262" />
+      <location filename="../Project/Project.py" line="5261" />
       <source>Save session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5282" />
+      <location filename="../Project/Project.py" line="5268" />
       <source>Save the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5284" />
+      <location filename="../Project/Project.py" line="5270" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5300" />
-      <location filename="../Project/Project.py" line="5299" />
+      <location filename="../Project/Project.py" line="5286" />
+      <location filename="../Project/Project.py" line="5285" />
       <source>Delete session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5306" />
+      <location filename="../Project/Project.py" line="5292" />
       <source>Delete the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5308" />
+      <location filename="../Project/Project.py" line="5294" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5323" />
+      <location filename="../Project/Project.py" line="5309" />
       <source>Code Metrics</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5324" />
+      <location filename="../Project/Project.py" line="5310" />
       <source>&amp;Code Metrics...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5317" />
+      <source>Show some code metrics for the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5320" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5330" />
+      <source>Python Code Coverage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5331" />
-      <source>Show some code metrics for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5334" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5344" />
-      <source>Python Code Coverage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5338" />
+      <source>Show code coverage information for the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5341" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6775" />
+      <location filename="../Project/Project.py" line="6762" />
+      <location filename="../Project/Project.py" line="5351" />
+      <source>Profile Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5352" />
-      <source>Show code coverage information for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5355" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6789" />
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="5365" />
-      <source>Profile Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5373" />
+      <location filename="../Project/Project.py" line="5359" />
       <source>Show profiling data for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5376" />
+      <location filename="../Project/Project.py" line="5362" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="6827" />
+      <location filename="../Project/Project.py" line="5377" />
       <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5392" />
+      <location filename="../Project/Project.py" line="5378" />
       <source>&amp;Application Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5399" />
+      <location filename="../Project/Project.py" line="5385" />
       <source>Show a diagram of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5402" />
+      <location filename="../Project/Project.py" line="5388" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5411" />
+      <location filename="../Project/Project.py" line="5397" />
       <source>Load Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5412" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5418" />
+      <location filename="../Project/Project.py" line="5404" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5420" />
+      <location filename="../Project/Project.py" line="5406" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
-      <location filename="../Project/Project.py" line="6954" />
-      <location filename="../Project/Project.py" line="5435" />
+      <location filename="../Project/Project.py" line="6995" />
+      <location filename="../Project/Project.py" line="6940" />
+      <location filename="../Project/Project.py" line="5421" />
       <source>Create Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5437" />
+      <location filename="../Project/Project.py" line="5423" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5444" />
+      <location filename="../Project/Project.py" line="5430" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="5433" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7080" />
-      <location filename="../Project/Project.py" line="5458" />
+      <location filename="../Project/Project.py" line="7066" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5460" />
+      <location filename="../Project/Project.py" line="5446" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5452" />
+      <source>Create eric plugin archive files.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5454" />
+      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5466" />
-      <source>Create eric plugin archive files.</source>
+      <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5468" />
-      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5480" />
-      <source>Create Plugin Archives (Snapshot)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5489" />
+      <location filename="../Project/Project.py" line="5475" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5492" />
+      <location filename="../Project/Project.py" line="5478" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7536" />
-      <location filename="../Project/Project.py" line="7507" />
-      <location filename="../Project/Project.py" line="7461" />
-      <location filename="../Project/Project.py" line="7413" />
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="5497" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5512" />
+      <location filename="../Project/Project.py" line="5498" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5518" />
+      <location filename="../Project/Project.py" line="5504" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5520" />
+      <location filename="../Project/Project.py" line="5506" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7513" />
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="7499" />
+      <location filename="../Project/Project.py" line="5516" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5531" />
+      <location filename="../Project/Project.py" line="5517" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5524" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5541" />
+      <location filename="../Project/Project.py" line="5527" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5559" />
+      <location filename="../Project/Project.py" line="5545" />
       <source>Create SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5560" />
+      <location filename="../Project/Project.py" line="5546" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5553" />
+      <source>Create a SBOM file of the project dependencies.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5556" />
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5567" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5570" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5581" />
       <source>Clear Byte Code Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5582" />
+      <location filename="../Project/Project.py" line="5568" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5589" />
+      <location filename="../Project/Project.py" line="5575" />
       <source>Clear the byte code caches of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5592" />
+      <location filename="../Project/Project.py" line="5578" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5608" />
+      <location filename="../Project/Project.py" line="5594" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5609" />
+      <location filename="../Project/Project.py" line="5595" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5601" />
+      <source>Show some information about 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5603" />
+      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5615" />
-      <source>Show some information about 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5617" />
-      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5629" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5630" />
+      <location filename="../Project/Project.py" line="5616" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5637" />
+      <location filename="../Project/Project.py" line="5623" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5640" />
+      <location filename="../Project/Project.py" line="5626" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5652" />
+      <location filename="../Project/Project.py" line="5638" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5653" />
+      <location filename="../Project/Project.py" line="5639" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5660" />
+      <location filename="../Project/Project.py" line="5646" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5651" />
+      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5664" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5665" />
-      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <source>Code Formatting &amp;Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5672" />
+      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5678" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5679" />
-      <source>Code Formatting &amp;Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5686" />
-      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5792" />
       <location filename="../Project/Project.py" line="5692" />
-      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <location filename="../Project/Project.py" line="5807" />
-      <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5706" />
-      <location filename="../Project/Project.py" line="5705" />
+      <location filename="../Project/Project.py" line="5691" />
       <source>Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5713" />
+      <location filename="../Project/Project.py" line="5699" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5718" />
+      <location filename="../Project/Project.py" line="5704" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5734" />
+      <location filename="../Project/Project.py" line="5720" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5735" />
+      <location filename="../Project/Project.py" line="5721" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5741" />
+      <location filename="../Project/Project.py" line="5727" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5743" />
+      <location filename="../Project/Project.py" line="5729" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5756" />
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5763" />
+      <location filename="../Project/Project.py" line="5749" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5752" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5766" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5780" />
-      <location filename="../Project/Project.py" line="5779" />
+      <location filename="../Project/Project.py" line="5765" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5787" />
+      <location filename="../Project/Project.py" line="5773" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5814" />
+      <location filename="../Project/Project.py" line="5800" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5820" />
+      <location filename="../Project/Project.py" line="5806" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5836" />
+      <location filename="../Project/Project.py" line="5822" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5823" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5830" />
+      <source>Install the project into the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5833" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5844" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5851" />
+      <source>Configure the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5854" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5864" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5865" />
-      <source>Configure the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5868" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5878" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5871" />
+      <source>Upgrade the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5873" />
+      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5885" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5887" />
-      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5900" />
+      <location filename="../Project/Project.py" line="5886" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5906" />
+      <location filename="../Project/Project.py" line="5892" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5908" />
+      <location filename="../Project/Project.py" line="5894" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5926" />
+      <source>&amp;Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5927" />
+      <source>Open &amp;Recent Projects</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5929" />
+      <source>Session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5930" />
+      <source>Debugger</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5931" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5933" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5934" />
+      <source>&amp;Version Control</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5938" />
+      <source>Chec&amp;k</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5940" />
-      <source>&amp;Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5941" />
-      <source>Open &amp;Recent Projects</source>
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5942" />
+      <source>Sho&amp;w</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Session</source>
+      <source>&amp;Diagrams</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
-      <source>Debugger</source>
+      <source>Pac&amp;kagers</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Embedded Environment</source>
+      <source>Source &amp;Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Project-T&amp;ools</source>
+      <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
-      <source>&amp;Version Control</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5952" />
-      <source>Chec&amp;k</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5954" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5956" />
-      <source>Sho&amp;w</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5957" />
-      <source>&amp;Diagrams</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5958" />
-      <source>Pac&amp;kagers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5959" />
-      <source>Source &amp;Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5961" />
-      <source>Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6124" />
-      <location filename="../Project/Project.py" line="6122" />
+      <location filename="../Project/Project.py" line="6110" />
+      <location filename="../Project/Project.py" line="6108" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6206" />
+      <location filename="../Project/Project.py" line="6192" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6403" />
+      <location filename="../Project/Project.py" line="6389" />
       <source>Search New Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6404" />
+      <location filename="../Project/Project.py" line="6390" />
       <source>There were no new files found to be added.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6565" />
-      <location filename="../Project/Project.py" line="6552" />
+      <location filename="../Project/Project.py" line="6551" />
+      <location filename="../Project/Project.py" line="6538" />
       <source>Version Control System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6553" />
+      <location filename="../Project/Project.py" line="6539" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6566" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="6709" />
+      <source>Coverage Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6763" />
+      <location filename="../Project/Project.py" line="6710" />
+      <source>There is no main script defined for the current project. Aborting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6722" />
+      <source>Code Coverage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="6723" />
-      <source>Coverage Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6777" />
-      <location filename="../Project/Project.py" line="6724" />
-      <source>There is no main script defined for the current project. Aborting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6736" />
-      <source>Code Coverage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6790" />
+      <location filename="../Project/Project.py" line="6776" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6842" />
+      <location filename="../Project/Project.py" line="6828" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6955" />
+      <location filename="../Project/Project.py" line="6941" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7010" />
+      <location filename="../Project/Project.py" line="6996" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7321" />
-      <location filename="../Project/Project.py" line="7277" />
-      <location filename="../Project/Project.py" line="7227" />
-      <location filename="../Project/Project.py" line="7216" />
-      <location filename="../Project/Project.py" line="7198" />
-      <location filename="../Project/Project.py" line="7151" />
-      <location filename="../Project/Project.py" line="7121" />
-      <location filename="../Project/Project.py" line="7093" />
-      <location filename="../Project/Project.py" line="7063" />
-      <location filename="../Project/Project.py" line="7048" />
-      <location filename="../Project/Project.py" line="7031" />
-      <source>Create Plugin Archive</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7032" />
-      <source>The project does not have a main script defined. Aborting...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7137" />
+      <location filename="../Project/Project.py" line="7107" />
+      <location filename="../Project/Project.py" line="7079" />
       <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7034" />
+      <location filename="../Project/Project.py" line="7017" />
+      <source>Create Plugin Archive</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7018" />
+      <source>The project does not have a main script defined. Aborting...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7035" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7064" />
+      <location filename="../Project/Project.py" line="7050" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7072" />
+      <location filename="../Project/Project.py" line="7058" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7073" />
+      <location filename="../Project/Project.py" line="7059" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7076" />
+      <location filename="../Project/Project.py" line="7062" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7094" />
+      <location filename="../Project/Project.py" line="7080" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7122" />
+      <location filename="../Project/Project.py" line="7108" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7152" />
+      <location filename="../Project/Project.py" line="7138" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7199" />
+      <location filename="../Project/Project.py" line="7185" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7217" />
+      <location filename="../Project/Project.py" line="7203" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7228" />
+      <location filename="../Project/Project.py" line="7214" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7278" />
+      <location filename="../Project/Project.py" line="7264" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7322" />
+      <location filename="../Project/Project.py" line="7308" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7414" />
+      <location filename="../Project/Project.py" line="7400" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7462" />
+      <location filename="../Project/Project.py" line="7448" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7508" />
+      <location filename="../Project/Project.py" line="7494" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7516" />
+      <location filename="../Project/Project.py" line="7502" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
+      <location filename="../Project/Project.py" line="7507" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7537" />
+      <location filename="../Project/Project.py" line="7523" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7975" />
+      <location filename="../Project/Project.py" line="7961" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7976" />
+      <location filename="../Project/Project.py" line="7962" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8057" />
+      <location filename="../Project/Project.py" line="8043" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8088" />
-      <location filename="../Project/Project.py" line="8073" />
+      <location filename="../Project/Project.py" line="8074" />
+      <location filename="../Project/Project.py" line="8059" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -64879,9 +64823,9 @@
   <context>
     <name>ProjectFormsBrowser</name>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1141" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1092" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1055" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1131" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
       <location filename="../Project/ProjectFormsBrowser.py" line="142" />
       <location filename="../Project/ProjectFormsBrowser.py" line="77" />
       <source>Forms</source>
@@ -65154,102 +65098,102 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="701" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="732" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="719" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="700" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="683" />
       <source>New Form</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="685" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
       <source>Select a form type:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="703" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="702" />
       <source>Qt User-Interface Files (*.ui);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="721" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
       <source>The file already exists! Overwrite it?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="734" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
       <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectFormsBrowser.py" line="759" />
+      <source>Delete forms</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectFormsBrowser.py" line="760" />
-      <source>Delete forms</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="761" />
       <source>Do you really want to delete these forms from the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="893" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="882" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="875" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="888" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="877" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="870" />
       <source>Form Compilation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="876" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="871" />
       <source>The compilation of the form file was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="883" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="878" />
       <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="894" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="889" />
       <source>The compilation of the form file failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="986" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="977" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="987" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="978" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1074" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1037" />
       <source>Compiling forms...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1134" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1084" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1047" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1075" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1038" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1137" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1087" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1050" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1127" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1078" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1041" />
       <source>%v/%m Forms</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1133" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1123" />
       <source>Determining changed forms...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1163" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1153" />
       <source>Compiling changed forms...</source>
       <translation type="unfinished" />
     </message>
@@ -65701,9 +65645,9 @@
   <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="956" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="880" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="844" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="940" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="864" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="828" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="87" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="68" />
       <source>Resources</source>
@@ -65730,219 +65674,219 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="165" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="163" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="150" />
       <source>Compile resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="396" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="385" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="344" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="333" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="247" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="235" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="172" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="154" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="384" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="373" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="334" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="323" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="241" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="229" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="170" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
       <source>Compile all resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="389" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="337" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="296" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="239" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="158" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="377" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="327" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="288" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="233" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="156" />
       <source>Configure rcc Compiler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="308" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="300" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="179" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
       <source>Rename file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="349" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="310" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="339" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="302" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
       <source>Remove from project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="351" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="187" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="341" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="304" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
       <source>Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="345" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="249" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="236" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="200" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="195" />
+      <source>New resource...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="390" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="346" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="254" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
+      <source>Add resources...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="393" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="348" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="257" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="206" />
+      <source>Add resources directory...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="353" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="211" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectResourcesBrowser.py" line="355" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="255" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="242" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="199" />
-      <source>New resource...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="402" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="356" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="260" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="208" />
-      <source>Add resources...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="405" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="358" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="210" />
-      <source>Add resources directory...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="363" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="269" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="365" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="217" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="213" />
       <source>Copy Path to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="410" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="367" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="315" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="272" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="219" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="398" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="357" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="307" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="266" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
       <source>Expand all directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="413" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="369" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="317" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="274" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="220" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="401" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="359" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="309" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="268" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="216" />
       <source>Collapse all directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="416" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="372" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="320" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="277" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="222" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="404" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="362" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="271" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="218" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="303" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="292" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="295" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="284" />
       <source>Compile resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="595" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="574" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="555" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="583" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="562" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="543" />
       <source>New Resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="557" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="545" />
       <source>Qt Resource Files (*.qrc)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="575" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="563" />
       <source>The file already exists! Overwrite it?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="596" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="584" />
       <source>&lt;p&gt;The new resource file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="622" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="610" />
       <source>Delete resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="623" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="611" />
       <source>Do you really want to delete these resources from the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="717" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="708" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="701" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="705" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="696" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="689" />
       <source>Resource Compilation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="702" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="690" />
       <source>The compilation of the resource file was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="709" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="697" />
       <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="718" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="706" />
       <source>The compilation of the resource file failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="805" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="789" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="806" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="790" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="871" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="835" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="855" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="819" />
       <source>Compiling resources...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="949" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="872" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="836" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="933" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="856" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="820" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="952" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="875" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="839" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="936" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="859" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="823" />
       <source>%v/%m Resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="948" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="932" />
       <source>Determining changed resources...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="986" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="970" />
       <source>Compiling changed resources...</source>
       <translation type="unfinished" />
     </message>
@@ -66478,250 +66422,250 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="514" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="456" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="296" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="238" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="213" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="182" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="508" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="236" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="180" />
       <source>Open in Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="255" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="253" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="193" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="263" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="191" />
       <source>Generate translation (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="580" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="551" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="572" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="543" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="378" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="272" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="197" />
+      <source>Generate all translations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="581" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="274" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="199" />
-      <source>Generate all translations</source>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="281" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
+      <source>Generate all translations (with obsolete)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="446" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="207" />
+      <source>Open in Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="301" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <source>Release translation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="589" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="391" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="283" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
-      <source>Generate all translations (with obsolete)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="452" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
-      <source>Open in Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
-      <source>Release translation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="597" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="560" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="399" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="363" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="552" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="395" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="359" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Release all translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="226" />
       <source>Preview translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="368" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="232" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="557" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="364" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
       <source>Preview all translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="481" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="374" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="246" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="475" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="370" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="244" />
       <source>Extract messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="291" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="289" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="319" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Remove from project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="595" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="526" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="320" />
+      <source>Delete</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="600" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="402" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="324" />
+      <source>New translation...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="603" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="532" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="322" />
-      <source>Delete</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="608" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="406" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="326" />
-      <source>New translation...</source>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="327" />
+      <source>Add translation files...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="607" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="609" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <source>Copy Path to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="611" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="329" />
-      <source>Add translation files...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="615" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="413" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="617" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <source>Copy Path to Clipboard</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="619" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="535" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="416" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="338" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="490" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="440" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="484" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
       <source>Generate translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="500" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="445" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
       <source>Generate translations (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="515" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="455" />
       <source>Release translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
       <source>Preview translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="882" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="866" />
       <source>Delete translation files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="883" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="867" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1582" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1051" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1011" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1560" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1035" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="995" />
       <source>Write temporary project file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1583" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1307" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1012" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1561" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1287" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="996" />
       <source>No translation files (*.ts) selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1052" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1036" />
       <source>&lt;p&gt;The temporary project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1306" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1189" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1177" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1286" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1173" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1161" />
       <source>Translation file generation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1178" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1162" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1184" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1168" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1190" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1174" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1612" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1360" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1590" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1388" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1340" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1361" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1389" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1341" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1497" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1479" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1477" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1459" />
       <source>Translation file release</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1480" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1460" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1498" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1478" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1613" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1591" />
       <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -69225,38 +69169,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="214" />
+      <location filename="../UI/PythonAstViewer.py" line="216" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="224" />
+      <location filename="../UI/PythonAstViewer.py" line="226" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="230" />
+      <location filename="../UI/PythonAstViewer.py" line="232" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="248" />
+      <location filename="../UI/PythonAstViewer.py" line="250" />
       <source>Module</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="280" />
+      <location filename="../UI/PythonAstViewer.py" line="282" />
       <source>{0}: {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="297" />
-      <location filename="../UI/PythonAstViewer.py" line="287" />
+      <location filename="../UI/PythonAstViewer.py" line="299" />
+      <location filename="../UI/PythonAstViewer.py" line="289" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="304" />
+      <location filename="../UI/PythonAstViewer.py" line="306" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -71354,7 +71298,7 @@
   <context>
     <name>QtPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="154" />
+      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="139" />
       <source>Sample: {0}designer{1}</source>
       <translation type="unfinished" />
     </message>
@@ -71398,7 +71342,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Tools Directory:</source>
       <translation type="unfinished" />
     </message>
@@ -71483,7 +71426,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Virtual Environment:</source>
       <translation type="unfinished" />
     </message>
@@ -71491,7 +71433,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Select the virtual environment to be used</source>
       <translation type="unfinished" />
     </message>
@@ -71499,7 +71440,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to open the virtual environment manager dialog</source>
       <translation type="unfinished" />
     </message>
@@ -71507,7 +71447,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to refresh the list of vitual environments</source>
       <translation type="unfinished" />
     </message>
@@ -71536,7 +71475,6 @@
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Generate imports relative to '.'</source>
       <translation type="unfinished" />
     </message>
@@ -71569,26 +71507,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>pyside2-uic Options</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>PySide6</source>
       <translation type="unfinished" />
     </message>
@@ -87387,64 +87305,64 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="575" />
+      <location filename="../Templates/TemplateViewer.py" line="577" />
       <source>Remove Template</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="576" />
+      <location filename="../Templates/TemplateViewer.py" line="578" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="604" />
+      <location filename="../Templates/TemplateViewer.py" line="606" />
       <source>Import Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="621" />
-      <location filename="../Templates/TemplateViewer.py" line="606" />
+      <location filename="../Templates/TemplateViewer.py" line="623" />
+      <location filename="../Templates/TemplateViewer.py" line="608" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
-      <location filename="../Templates/TemplateViewer.py" line="619" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
+      <location filename="../Templates/TemplateViewer.py" line="621" />
       <source>Export Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="654" />
+      <location filename="../Templates/TemplateViewer.py" line="656" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="655" />
+      <location filename="../Templates/TemplateViewer.py" line="657" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="675" />
+      <location filename="../Templates/TemplateViewer.py" line="677" />
       <source>Template Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="676" />
+      <location filename="../Templates/TemplateViewer.py" line="678" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="938" />
+      <location filename="../Templates/TemplateViewer.py" line="940" />
       <source>Edit Template Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="939" />
+      <location filename="../Templates/TemplateViewer.py" line="941" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -90896,2585 +90814,2569 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="263" />
+      <location filename="../UI/UserInterface.py" line="265" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="319" />
+      <location filename="../UI/UserInterface.py" line="321" />
       <source>Initializing Plugin Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="327" />
+      <location filename="../UI/UserInterface.py" line="329" />
       <source>Generating Main User Interface...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="386" />
       <location filename="../UI/UserInterface.py" line="384" />
-      <location filename="../UI/UserInterface.py" line="382" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="593" />
+      <location filename="../UI/UserInterface.py" line="595" />
       <source>Initializing Tools...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="605" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Registering Objects...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="640" />
+      <location filename="../UI/UserInterface.py" line="642" />
       <source>Initializing Actions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="643" />
+      <location filename="../UI/UserInterface.py" line="645" />
       <source>Initializing Menus...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="648" />
       <source>Initializing Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Statusbar...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="676" />
       <location filename="../UI/UserInterface.py" line="674" />
-      <location filename="../UI/UserInterface.py" line="672" />
       <source>Initializing Single Application Server...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="683" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Activating Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="688" />
+      <location filename="../UI/UserInterface.py" line="690" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="692" />
+      <location filename="../UI/UserInterface.py" line="694" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
+      <location filename="../UI/UserInterface.py" line="705" />
       <source>Restoring Toolbarmanager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="714" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="726" />
+      <location filename="../UI/UserInterface.py" line="728" />
       <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="732" />
+      <location filename="../UI/UserInterface.py" line="734" />
       <source>Reading Templates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="738" />
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2212" />
-      <location filename="../UI/UserInterface.py" line="1099" />
+      <location filename="../UI/UserInterface.py" line="2214" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2258" />
-      <location filename="../UI/UserInterface.py" line="1109" />
+      <location filename="../UI/UserInterface.py" line="2260" />
+      <location filename="../UI/UserInterface.py" line="1111" />
       <source>Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2235" />
-      <location filename="../UI/UserInterface.py" line="1120" />
+      <location filename="../UI/UserInterface.py" line="2237" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2054" />
-      <location filename="../UI/UserInterface.py" line="1316" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1132" />
       <source>Multiproject-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2032" />
-      <location filename="../UI/UserInterface.py" line="1322" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>Project-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2594" />
-      <location filename="../UI/UserInterface.py" line="2593" />
-      <location filename="../UI/UserInterface.py" line="1329" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Find/Replace In Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
-      <location filename="../UI/UserInterface.py" line="2616" />
-      <location filename="../UI/UserInterface.py" line="1336" />
-      <location filename="../UI/UserInterface.py" line="1150" />
-      <source>Find File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1156" />
-      <source>VCS Status</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2187" />
-      <location filename="../UI/UserInterface.py" line="1349" />
-      <location filename="../UI/UserInterface.py" line="1163" />
-      <source>Template-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2120" />
-      <location filename="../UI/UserInterface.py" line="1356" />
-      <location filename="../UI/UserInterface.py" line="1170" />
-      <source>File-Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1177" />
-      <source>Symbols</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2076" />
-      <location filename="../UI/UserInterface.py" line="1385" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1187" />
-      <source>Debug-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <location filename="../UI/UserInterface.py" line="2447" />
-      <location filename="../UI/UserInterface.py" line="1392" />
-      <location filename="../UI/UserInterface.py" line="1194" />
-      <source>Code Documentation Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2663" />
-      <location filename="../UI/UserInterface.py" line="2662" />
-      <location filename="../UI/UserInterface.py" line="1399" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>Help Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3611" />
-      <location filename="../UI/UserInterface.py" line="2543" />
-      <location filename="../UI/UserInterface.py" line="2542" />
-      <location filename="../UI/UserInterface.py" line="1405" />
-      <location filename="../UI/UserInterface.py" line="1207" />
-      <source>Plugin Repository</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
-      <location filename="../UI/UserInterface.py" line="2566" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1213" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2475" />
-      <location filename="../UI/UserInterface.py" line="2474" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>PyPI Package Management</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2497" />
-      <location filename="../UI/UserInterface.py" line="2496" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1225" />
-      <source>Conda</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1232" />
-      <source>Cooperation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2375" />
-      <location filename="../UI/UserInterface.py" line="1436" />
-      <location filename="../UI/UserInterface.py" line="1237" />
-      <source>IRC</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
-      <location filename="../UI/UserInterface.py" line="2518" />
-      <location filename="../UI/UserInterface.py" line="1442" />
-      <location filename="../UI/UserInterface.py" line="1244" />
-      <source>MicroPython</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2098" />
-      <location filename="../UI/UserInterface.py" line="1450" />
-      <location filename="../UI/UserInterface.py" line="1252" />
-      <source>Shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <location filename="../UI/UserInterface.py" line="1456" />
-      <location filename="../UI/UserInterface.py" line="1256" />
-      <source>Task-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2142" />
-      <location filename="../UI/UserInterface.py" line="1462" />
-      <location filename="../UI/UserInterface.py" line="1260" />
-      <source>Log-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1469" />
-      <location filename="../UI/UserInterface.py" line="1267" />
-      <source>Numbers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1844" />
-      <source>{0} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <location filename="../UI/UserInterface.py" line="1847" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1885" />
-      <source>Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1887" />
-      <source>&amp;Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1888" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Quit the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1909" />
-      <location filename="../UI/UserInterface.py" line="1907" />
-      <source>Restart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1910" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1915" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1917" />
-      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <location filename="../UI/UserInterface.py" line="1928" />
-      <source>Save session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7892" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <location filename="../UI/UserInterface.py" line="1947" />
-      <source>Load session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
-      <source>Load session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
-      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1966" />
-      <source>New Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1968" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1969" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1974" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1990" />
-      <location filename="../UI/UserInterface.py" line="1988" />
-      <source>Edit Profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1997" />
-      <source>Activate the edit view profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1999" />
-      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2012" />
-      <location filename="../UI/UserInterface.py" line="2010" />
-      <source>Debug Profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2019" />
-      <source>Activate the debug view profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2021" />
-      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2033" />
-      <source>&amp;Project-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2034" />
-      <source>Alt+Shift+P</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2040" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2043" />
-      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2055" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2056" />
-      <source>Alt+Shift+M</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2062" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2077" />
-      <source>&amp;Debug-Viewer</source>
+      <location filename="../UI/UserInterface.py" line="1324" />
+      <location filename="../UI/UserInterface.py" line="1138" />
+      <source>Project-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2596" />
+      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="1331" />
+      <location filename="../UI/UserInterface.py" line="1145" />
+      <source>Find/Replace In Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2619" />
+      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="1338" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Find File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1344" />
+      <location filename="../UI/UserInterface.py" line="1158" />
+      <source>VCS Status</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="1351" />
+      <location filename="../UI/UserInterface.py" line="1165" />
+      <source>Template-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="1358" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>File-Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1365" />
+      <location filename="../UI/UserInterface.py" line="1179" />
+      <source>Symbols</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2078" />
-      <source>Alt+Shift+D</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2084" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2099" />
-      <source>&amp;Shell</source>
+      <location filename="../UI/UserInterface.py" line="1387" />
+      <location filename="../UI/UserInterface.py" line="1381" />
+      <location filename="../UI/UserInterface.py" line="1189" />
+      <source>Debug-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="1394" />
+      <location filename="../UI/UserInterface.py" line="1196" />
+      <source>Code Documentation Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2665" />
+      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="1401" />
+      <location filename="../UI/UserInterface.py" line="1203" />
+      <source>Help Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1209" />
+      <source>Plugin Repository</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2569" />
+      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2477" />
+      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
+      <source>PyPI Package Management</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2499" />
+      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="1427" />
+      <location filename="../UI/UserInterface.py" line="1227" />
+      <source>Conda</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1434" />
+      <location filename="../UI/UserInterface.py" line="1234" />
+      <source>Cooperation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1239" />
+      <source>IRC</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2521" />
+      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
+      <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2100" />
-      <source>Alt+Shift+S</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2106" />
-      <source>Switch the input focus to the Shell window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2109" />
-      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2121" />
-      <source>&amp;File-Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2122" />
-      <source>Alt+Shift+F</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2128" />
-      <source>Switch the input focus to the File-Browser window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2143" />
-      <source>Lo&amp;g-Viewer</source>
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1254" />
+      <source>Shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
+      <source>Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="1464" />
+      <location filename="../UI/UserInterface.py" line="1262" />
+      <source>Log-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1471" />
+      <location filename="../UI/UserInterface.py" line="1269" />
+      <source>Numbers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1846" />
+      <source>{0} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1855" />
+      <location filename="../UI/UserInterface.py" line="1849" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1861" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1887" />
+      <source>Quit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1889" />
+      <source>&amp;Quit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1890" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1895" />
+      <source>Quit the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1909" />
+      <source>Restart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1917" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1937" />
+      <location filename="../UI/UserInterface.py" line="1930" />
+      <source>Save session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1931" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7866" />
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1949" />
+      <source>Load session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1950" />
+      <source>Load session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1958" />
+      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1968" />
+      <source>New Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1970" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1971" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1976" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1992" />
+      <location filename="../UI/UserInterface.py" line="1990" />
+      <source>Edit Profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Activate the edit view profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2001" />
+      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2014" />
+      <location filename="../UI/UserInterface.py" line="2012" />
+      <source>Debug Profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Activate the debug view profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
+      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2035" />
+      <source>&amp;Project-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2036" />
+      <source>Alt+Shift+P</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2045" />
+      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2057" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2058" />
+      <source>Alt+Shift+M</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2067" />
+      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2079" />
+      <source>&amp;Debug-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2080" />
+      <source>Alt+Shift+D</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2089" />
+      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2101" />
+      <source>&amp;Shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2102" />
+      <source>Alt+Shift+S</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <source>Switch the input focus to the Shell window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2111" />
+      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2123" />
+      <source>&amp;File-Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2124" />
+      <source>Alt+Shift+F</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <source>Switch the input focus to the File-Browser window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2133" />
+      <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2145" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2146" />
       <source>Alt+Shift+G</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2150" />
+      <location filename="../UI/UserInterface.py" line="2152" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="2155" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2165" />
+      <location filename="../UI/UserInterface.py" line="2167" />
       <source>&amp;Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="2168" />
       <source>Alt+Shift+T</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2174" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2190" />
       <source>Templ&amp;ate-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="2191" />
       <source>Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2197" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2198" />
+      <location filename="../UI/UserInterface.py" line="2200" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2213" />
+      <location filename="../UI/UserInterface.py" line="2215" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2220" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2222" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2236" />
+      <location filename="../UI/UserInterface.py" line="2238" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2243" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2245" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2259" />
+      <location filename="../UI/UserInterface.py" line="2261" />
       <source>&amp;Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2266" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2268" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2281" />
+      <location filename="../UI/UserInterface.py" line="2283" />
       <source>Left Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2282" />
+      <location filename="../UI/UserInterface.py" line="2284" />
       <source>&amp;Left Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2289" />
-      <source>Toggle the left sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2291" />
+      <source>Toggle the left sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2304" />
+      <location filename="../UI/UserInterface.py" line="2306" />
       <source>Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2305" />
+      <location filename="../UI/UserInterface.py" line="2307" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2312" />
-      <source>Toggle the right sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2314" />
+      <source>Toggle the right sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2329" />
       <source>Bottom Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2328" />
+      <location filename="../UI/UserInterface.py" line="2330" />
       <source>&amp;Bottom Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2337" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2350" />
-      <source>Cooperation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2351" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2352" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2353" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2354" />
       <source>Alt+Shift+O</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
+      <location filename="../UI/UserInterface.py" line="2360" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2361" />
+      <location filename="../UI/UserInterface.py" line="2363" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2376" />
+      <location filename="../UI/UserInterface.py" line="2378" />
       <source>&amp;IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="2379" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2383" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2386" />
+      <location filename="../UI/UserInterface.py" line="2388" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2397" />
-      <source>Symbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2398" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2399" />
+      <source>Symbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2400" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2401" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2407" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2408" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2422" />
-      <source>Numbers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2423" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2424" />
+      <source>Numbers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2426" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
+      <location filename="../UI/UserInterface.py" line="2432" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2433" />
+      <location filename="../UI/UserInterface.py" line="2435" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="2451" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2455" />
+      <location filename="../UI/UserInterface.py" line="2457" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2460" />
+      <location filename="../UI/UserInterface.py" line="2462" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="2478" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2482" />
+      <location filename="../UI/UserInterface.py" line="2484" />
       <source>Switch the input focus to the PyPI Package Management window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2487" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="2500" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2504" />
+      <location filename="../UI/UserInterface.py" line="2506" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="2522" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2528" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2529" />
+      <location filename="../UI/UserInterface.py" line="2531" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="2546" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2552" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2553" />
+      <location filename="../UI/UserInterface.py" line="2555" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="2570" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2574" />
+      <location filename="../UI/UserInterface.py" line="2576" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2579" />
+      <location filename="../UI/UserInterface.py" line="2581" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="2597" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2603" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="2620" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2626" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2641" />
-      <location filename="../UI/UserInterface.py" line="2640" />
+      <location filename="../UI/UserInterface.py" line="2643" />
+      <location filename="../UI/UserInterface.py" line="2642" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2642" />
+      <location filename="../UI/UserInterface.py" line="2644" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2648" />
+      <location filename="../UI/UserInterface.py" line="2650" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2653" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="2666" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
+      <location filename="../UI/UserInterface.py" line="2672" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2673" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2686" />
-      <source>What's This?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2688" />
+      <source>What's This?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2690" />
       <source>&amp;What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2689" />
+      <location filename="../UI/UserInterface.py" line="2691" />
       <source>Shift+F1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>Context sensitive help</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2696" />
+      <source>Context sensitive help</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2709" />
-      <source>Helpviewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2711" />
+      <source>Helpviewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2713" />
       <source>&amp;Helpviewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2714" />
       <source>F1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2717" />
-      <source>Open the helpviewer window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2719" />
+      <source>Open the helpviewer window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2739" />
+      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2740" />
+      <location filename="../UI/UserInterface.py" line="2742" />
       <source>Show &amp;Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <source>Display version information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2748" />
+      <source>Display version information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2754" />
+      <location filename="../UI/UserInterface.py" line="2756" />
       <source>Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2757" />
       <source>&amp;Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2764" />
       <source>Copy version information to the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2765" />
+      <location filename="../UI/UserInterface.py" line="2767" />
       <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2781" />
-      <location filename="../UI/UserInterface.py" line="2774" />
-      <source>Show Error Log</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Show Error &amp;Log...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2783" />
+      <location filename="../UI/UserInterface.py" line="2776" />
+      <source>Show Error Log</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2777" />
+      <source>Show Error &amp;Log...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2785" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
+      <location filename="../UI/UserInterface.py" line="2794" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2795" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
-      <source>Show Installation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Show Installation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4738" />
-      <location filename="../UI/UserInterface.py" line="2811" />
+      <location filename="../UI/UserInterface.py" line="4712" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>Report Bug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2811" />
-      <source>Report &amp;Bug...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2813" />
-      <source>Report a bug</source>
+      <source>Report &amp;Bug...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2815" />
+      <source>Report a bug</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2821" />
+      <location filename="../UI/UserInterface.py" line="2823" />
       <source>Request Feature</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2824" />
       <source>Request &amp;Feature...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2828" />
-      <source>Send a feature request</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2830" />
+      <source>Send a feature request</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4174" />
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="4148" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2843" />
+      <location filename="../UI/UserInterface.py" line="2845" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2849" />
-      <source>Start the testing dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2851" />
+      <source>Start the testing dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
-      <source>Restart Last Test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2864" />
+      <source>Restart Last Test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2866" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2870" />
-      <source>Restarts the last test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2872" />
+      <source>Restarts the last test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2882" />
-      <source>Rerun Failed Tests</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2884" />
+      <source>Rerun Failed Tests</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2886" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
+      <location filename="../UI/UserInterface.py" line="2896" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2906" />
+      <source>Test Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2908" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2914" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2916" />
       <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2923" />
+      <source>Test Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2925" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Run tests of the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2931" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2933" />
       <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
-      <source>Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2942" />
+      <source>Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2944" />
       <source>Qt-&amp;Designer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2950" />
+      <source>Start Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2959" />
-      <source>Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2961" />
+      <source>Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2963" />
       <source>Qt-&amp;Linguist...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2967" />
-      <source>Start Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2969" />
+      <source>Start Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2971" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>UI Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2979" />
+      <source>UI Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
       <source>&amp;UI Previewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
-      <source>Start the UI Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2987" />
+      <source>Start the UI Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2993" />
-      <source>Translations Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2995" />
+      <source>Translations Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2997" />
       <source>&amp;Translations Previewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <source>Start the Translations Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3003" />
+      <source>Start the Translations Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3005" />
       <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3012" />
-      <source>Compare Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3014" />
+      <source>Compare Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3016" />
       <source>&amp;Compare Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
-      <location filename="../UI/UserInterface.py" line="3020" />
-      <source>Compare two files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
-      <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3031" />
-      <source>Compare Files side by side</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3033" />
-      <source>Compare &amp;Files side by side...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3022" />
+      <source>Compare two files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3024" />
+      <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3033" />
+      <source>Compare Files side by side</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3035" />
+      <source>Compare &amp;Files side by side...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3043" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>SQL Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3053" />
+      <source>SQL Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3055" />
       <source>SQL &amp;Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>Browse a SQL database</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3061" />
+      <source>Browse a SQL database</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3075" />
-      <location filename="../UI/UserInterface.py" line="3067" />
-      <source>Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>Mini &amp;Editor...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <location filename="../UI/UserInterface.py" line="3069" />
+      <source>Mini Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3071" />
+      <source>Mini &amp;Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3079" />
       <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3086" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3088" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3090" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3094" />
-      <source>Start the eric Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>Start the eric Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3106" />
-      <source>eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3108" />
+      <source>eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3110" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3114" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3116" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3118" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3126" />
-      <source>FIDO2 Security Key Management</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3128" />
+      <source>FIDO2 Security Key Management</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3130" />
       <source>FIDO2 Security Key Management...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3135" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>Start the FIDO2 Security Key Management tool</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
+      <location filename="../UI/UserInterface.py" line="3140" />
       <source>&lt;b&gt;FIDO2 Security Key Management&lt;/b&gt;&lt;p&gt;Start a tool to manage FIDO2 securit y keys.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3151" />
+      <source>Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3153" />
       <source>&amp;Icon Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
-      <source>Start the eric Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3159" />
+      <source>Start the eric Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3161" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6631" />
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="6605" />
+      <location filename="../UI/UserInterface.py" line="3173" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3173" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <source>Take snapshots of a screen region</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3181" />
+      <source>Take snapshots of a screen region</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3193" />
+      <source>eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>eric PDF &amp;Viewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3199" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3201" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
-      <source>Preferences</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3212" />
+      <source>Preferences</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Set the prefered configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3220" />
+      <source>Set the prefered configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3222" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Export Preferences</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3233" />
+      <source>Export Preferences</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>E&amp;xport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
-      <source>Export the current configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3241" />
+      <source>Export the current configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
-      <source>Import Preferences</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3252" />
+      <source>Import Preferences</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
       <source>I&amp;mport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3261" />
       <source>Import a previously exported configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3262" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
-      <source>Export Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3273" />
+      <source>Export Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3281" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3290" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3292" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
-      <source>Import a previously exported theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3300" />
+      <source>Import a previously exported theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3302" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload APIs</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload &amp;APIs</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3311" />
-      <source>Reload the API information</source>
+      <source>Reload APIs</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3311" />
+      <source>Reload &amp;APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Reload the API information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <location filename="../UI/UserInterface.py" line="3319" />
-      <source>Show external tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Show external &amp;tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3329" />
+      <location filename="../UI/UserInterface.py" line="3321" />
+      <source>Show external tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3323" />
+      <source>Show external &amp;tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3331" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>View Profiles</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3341" />
+      <source>View Profiles</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3343" />
       <source>&amp;View Profiles...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Configure view profiles</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Configure view profiles</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
-      <source>Toolbars</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3362" />
+      <source>Toolbars</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3364" />
       <source>Tool&amp;bars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
-      <source>Configure toolbars</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3370" />
+      <source>Configure toolbars</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3372" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
-      <source>Keyboard Shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3383" />
+      <source>Keyboard Shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3389" />
-      <source>Set the keyboard shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3391" />
+      <source>Set the keyboard shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7600" />
-      <location filename="../UI/UserInterface.py" line="7581" />
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7555" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
-      <source>Export the keyboard shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3411" />
+      <source>Export the keyboard shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3413" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7619" />
-      <location filename="../UI/UserInterface.py" line="3420" />
+      <location filename="../UI/UserInterface.py" line="7593" />
+      <location filename="../UI/UserInterface.py" line="3422" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3428" />
-      <source>Import the keyboard shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3430" />
+      <source>Import the keyboard shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3432" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3440" />
-      <source>Manage SSL Certificates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3442" />
+      <source>Manage SSL Certificates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3444" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Manage the saved SSL certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3454" />
       <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3462" />
-      <source>Edit Message Filters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3464" />
+      <source>Edit Message Filters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3466" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3474" />
+      <location filename="../UI/UserInterface.py" line="3476" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <location filename="../UI/UserInterface.py" line="3487" />
-      <location filename="../UI/UserInterface.py" line="3485" />
-      <source>Clear private data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3489" />
+      <location filename="../UI/UserInterface.py" line="3487" />
+      <source>Clear private data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3506" />
-      <location filename="../UI/UserInterface.py" line="3505" />
-      <source>Activate current editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../UI/UserInterface.py" line="3508" />
       <location filename="../UI/UserInterface.py" line="3507" />
+      <source>Activate current editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3518" />
-      <location filename="../UI/UserInterface.py" line="3517" />
+      <location filename="../UI/UserInterface.py" line="3520" />
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>Show next</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3519" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3530" />
-      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <source>Show previous</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3533" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3542" />
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <source>Switch between tabs</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../UI/UserInterface.py" line="3544" />
       <location filename="../UI/UserInterface.py" line="3543" />
+      <source>Switch between tabs</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3545" />
       <source>Ctrl+1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3553" />
-      <source>Plugin Infos</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3555" />
+      <source>Plugin Infos</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>&amp;Plugin Infos...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3561" />
-      <source>Show Plugin Infos</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3563" />
+      <source>Show Plugin Infos</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3565" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3581" />
-      <location filename="../UI/UserInterface.py" line="3573" />
-      <source>Install Plugins</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3575" />
-      <source>&amp;Install Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <source>Install Plugins</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>&amp;Install Plugins...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3600" />
-      <location filename="../UI/UserInterface.py" line="3592" />
-      <source>Uninstall Plugin</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3602" />
+      <location filename="../UI/UserInterface.py" line="3594" />
+      <source>Uninstall Plugin</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3596" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3615" />
       <source>Plugin &amp;Repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3619" />
-      <source>Show Plugins available for download</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3621" />
+      <source>Show Plugins available for download</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3623" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3651" />
-      <location filename="../UI/UserInterface.py" line="3650" />
+      <location filename="../UI/UserInterface.py" line="3653" />
+      <location filename="../UI/UserInterface.py" line="3652" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>Open Qt5 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3659" />
+      <source>Open Qt5 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3672" />
-      <location filename="../UI/UserInterface.py" line="3671" />
+      <location filename="../UI/UserInterface.py" line="3674" />
+      <location filename="../UI/UserInterface.py" line="3673" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3678" />
-      <source>Open Qt6 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3680" />
+      <source>Open Qt6 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3682" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3693" />
-      <location filename="../UI/UserInterface.py" line="3692" />
+      <location filename="../UI/UserInterface.py" line="3695" />
+      <location filename="../UI/UserInterface.py" line="3694" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3699" />
-      <source>Open PyQt5 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Open PyQt5 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3714" />
-      <location filename="../UI/UserInterface.py" line="3713" />
+      <location filename="../UI/UserInterface.py" line="3716" />
+      <location filename="../UI/UserInterface.py" line="3715" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3720" />
-      <source>Open PyQt6 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3722" />
+      <source>Open PyQt6 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3724" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3740" />
-      <location filename="../UI/UserInterface.py" line="3739" />
+      <location filename="../UI/UserInterface.py" line="3742" />
+      <location filename="../UI/UserInterface.py" line="3741" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3746" />
-      <source>Open Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3748" />
+      <source>Open Python 3 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3750" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3767" />
-      <location filename="../UI/UserInterface.py" line="3766" />
+      <location filename="../UI/UserInterface.py" line="3769" />
+      <location filename="../UI/UserInterface.py" line="3768" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3773" />
-      <source>Open eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3775" />
+      <source>Open eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3777" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3793" />
-      <location filename="../UI/UserInterface.py" line="3792" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3799" />
-      <source>Open PySide2 Documentation</source>
+      <location filename="../UI/UserInterface.py" line="3795" />
+      <location filename="../UI/UserInterface.py" line="3794" />
+      <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3801" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3819" />
-      <location filename="../UI/UserInterface.py" line="3818" />
-      <source>PySide6 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3825" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3827" />
+      <location filename="../UI/UserInterface.py" line="3803" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3863" />
+      <location filename="../UI/UserInterface.py" line="3839" />
       <source>Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3944" />
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>E&amp;xtras</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3954" />
+      <location filename="../UI/UserInterface.py" line="3930" />
       <source>Wi&amp;zards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3948" />
       <source>P&amp;lugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="3957" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3990" />
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="3983" />
       <source>Select Tool Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4018" />
+      <location filename="../UI/UserInterface.py" line="3994" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4051" />
+      <location filename="../UI/UserInterface.py" line="4027" />
       <source>&amp;Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4060" />
+      <location filename="../UI/UserInterface.py" line="4036" />
       <source>&amp;Windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4064" />
+      <location filename="../UI/UserInterface.py" line="4040" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4068" />
+      <location filename="../UI/UserInterface.py" line="4044" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4087" />
+      <location filename="../UI/UserInterface.py" line="4063" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4106" />
+      <location filename="../UI/UserInterface.py" line="4082" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4090" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="4096" />
       <source>&amp;Toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4133" />
+      <location filename="../UI/UserInterface.py" line="4109" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4190" />
-      <location filename="../UI/UserInterface.py" line="4173" />
+      <location filename="../UI/UserInterface.py" line="4164" />
+      <location filename="../UI/UserInterface.py" line="4147" />
       <source>Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4192" />
-      <location filename="../UI/UserInterface.py" line="4177" />
+      <location filename="../UI/UserInterface.py" line="4166" />
+      <location filename="../UI/UserInterface.py" line="4151" />
       <source>Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6361" />
-      <location filename="../UI/UserInterface.py" line="4193" />
-      <location filename="../UI/UserInterface.py" line="4178" />
+      <location filename="../UI/UserInterface.py" line="6335" />
+      <location filename="../UI/UserInterface.py" line="4167" />
+      <location filename="../UI/UserInterface.py" line="4152" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4194" />
-      <location filename="../UI/UserInterface.py" line="4179" />
+      <location filename="../UI/UserInterface.py" line="4168" />
+      <location filename="../UI/UserInterface.py" line="4153" />
       <source>Profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4195" />
-      <location filename="../UI/UserInterface.py" line="4180" />
+      <location filename="../UI/UserInterface.py" line="4169" />
+      <location filename="../UI/UserInterface.py" line="4154" />
       <source>Plugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4191" />
+      <location filename="../UI/UserInterface.py" line="4165" />
       <source>Unittest</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4368" />
+      <location filename="../UI/UserInterface.py" line="4342" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4377" />
+      <location filename="../UI/UserInterface.py" line="4351" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4386" />
+      <location filename="../UI/UserInterface.py" line="4360" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4395" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4404" />
+      <location filename="../UI/UserInterface.py" line="4378" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
+      <location filename="../UI/UserInterface.py" line="4387" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4427" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4501" />
-      <location filename="../UI/UserInterface.py" line="4460" />
+      <location filename="../UI/UserInterface.py" line="4475" />
+      <location filename="../UI/UserInterface.py" line="4434" />
       <source>External Tools/{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4609" />
+      <location filename="../UI/UserInterface.py" line="4583" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4679" />
+      <location filename="../UI/UserInterface.py" line="4653" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4683" />
+      <location filename="../UI/UserInterface.py" line="4657" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4739" />
+      <location filename="../UI/UserInterface.py" line="4713" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5048" />
+      <source>Restart application</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5049" />
+      <source>The application needs to be restarted. Do it now?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5073" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5074" />
-      <source>Restart application</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5075" />
-      <source>The application needs to be restarted. Do it now?</source>
+      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+
+Shall the upgrade be done now?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5098" />
+      <source>Upgrade Eric</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5099" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5100" />
-      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5124" />
-      <source>Upgrade Eric</source>
+      <source>Upgrade Eric and PyQt6</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5125" />
-      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
-
-Shall the upgrade be done now?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5150" />
-      <source>Upgrade Eric and PyQt6</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5151" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5213" />
+      <location filename="../UI/UserInterface.py" line="5187" />
       <source>&amp;Builtin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5233" />
+      <location filename="../UI/UserInterface.py" line="5207" />
       <source>&amp;Plugin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5210" />
+      <source>&amp;User Tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5236" />
-      <source>&amp;User Tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5262" />
       <source>Configure Tool Groups ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5266" />
+      <location filename="../UI/UserInterface.py" line="5240" />
       <source>Configure current Tool Group ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5305" />
-      <location filename="../UI/UserInterface.py" line="5285" />
+      <location filename="../UI/UserInterface.py" line="5279" />
+      <location filename="../UI/UserInterface.py" line="5259" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5381" />
+      <location filename="../UI/UserInterface.py" line="5355" />
       <source>&amp;Show all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5383" />
+      <location filename="../UI/UserInterface.py" line="5357" />
       <source>&amp;Hide all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6498" />
-      <location filename="../UI/UserInterface.py" line="6487" />
-      <location filename="../UI/UserInterface.py" line="6439" />
-      <location filename="../UI/UserInterface.py" line="6429" />
-      <location filename="../UI/UserInterface.py" line="6252" />
-      <location filename="../UI/UserInterface.py" line="6242" />
-      <location filename="../UI/UserInterface.py" line="6184" />
-      <location filename="../UI/UserInterface.py" line="6174" />
+      <location filename="../UI/UserInterface.py" line="6472" />
+      <location filename="../UI/UserInterface.py" line="6461" />
+      <location filename="../UI/UserInterface.py" line="6413" />
+      <location filename="../UI/UserInterface.py" line="6403" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6216" />
+      <location filename="../UI/UserInterface.py" line="6158" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <source>Problem</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6499" />
-      <location filename="../UI/UserInterface.py" line="6488" />
-      <location filename="../UI/UserInterface.py" line="6440" />
-      <location filename="../UI/UserInterface.py" line="6430" />
-      <location filename="../UI/UserInterface.py" line="6253" />
-      <location filename="../UI/UserInterface.py" line="6243" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6175" />
+      <location filename="../UI/UserInterface.py" line="6473" />
+      <location filename="../UI/UserInterface.py" line="6462" />
+      <location filename="../UI/UserInterface.py" line="6414" />
+      <location filename="../UI/UserInterface.py" line="6404" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6740" />
-      <location filename="../UI/UserInterface.py" line="6651" />
-      <location filename="../UI/UserInterface.py" line="6534" />
-      <location filename="../UI/UserInterface.py" line="6511" />
-      <location filename="../UI/UserInterface.py" line="6452" />
-      <location filename="../UI/UserInterface.py" line="6399" />
-      <location filename="../UI/UserInterface.py" line="6377" />
-      <location filename="../UI/UserInterface.py" line="6328" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6275" />
-      <location filename="../UI/UserInterface.py" line="6216" />
-      <location filename="../UI/UserInterface.py" line="6207" />
+      <location filename="../UI/UserInterface.py" line="6714" />
+      <location filename="../UI/UserInterface.py" line="6625" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6302" />
+      <location filename="../UI/UserInterface.py" line="6293" />
+      <location filename="../UI/UserInterface.py" line="6258" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6190" />
+      <location filename="../UI/UserInterface.py" line="6181" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6208" />
+      <location filename="../UI/UserInterface.py" line="6182" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6191" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6250" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6285" />
+      <location filename="../UI/UserInterface.py" line="6259" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6320" />
+      <location filename="../UI/UserInterface.py" line="6294" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6303" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6362" />
+      <location filename="../UI/UserInterface.py" line="6336" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6378" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6374" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6453" />
+      <location filename="../UI/UserInterface.py" line="6427" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6512" />
+      <location filename="../UI/UserInterface.py" line="6486" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6535" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6632" />
+      <location filename="../UI/UserInterface.py" line="6606" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6652" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6685" />
-      <location filename="../UI/UserInterface.py" line="6675" />
+      <location filename="../UI/UserInterface.py" line="6659" />
+      <location filename="../UI/UserInterface.py" line="6649" />
       <source>External Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6676" />
+      <location filename="../UI/UserInterface.py" line="6650" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6686" />
+      <location filename="../UI/UserInterface.py" line="6660" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6723" />
+      <location filename="../UI/UserInterface.py" line="6697" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6741" />
+      <location filename="../UI/UserInterface.py" line="6715" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6820" />
+      <location filename="../UI/UserInterface.py" line="6794" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7108" />
-      <location filename="../UI/UserInterface.py" line="7046" />
-      <location filename="../UI/UserInterface.py" line="7002" />
-      <location filename="../UI/UserInterface.py" line="6928" />
-      <location filename="../UI/UserInterface.py" line="6864" />
+      <location filename="../UI/UserInterface.py" line="7082" />
+      <location filename="../UI/UserInterface.py" line="7020" />
+      <location filename="../UI/UserInterface.py" line="6976" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6838" />
       <source>Documentation Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7109" />
-      <location filename="../UI/UserInterface.py" line="7047" />
-      <location filename="../UI/UserInterface.py" line="7003" />
-      <location filename="../UI/UserInterface.py" line="6929" />
-      <location filename="../UI/UserInterface.py" line="6865" />
+      <location filename="../UI/UserInterface.py" line="7083" />
+      <location filename="../UI/UserInterface.py" line="7021" />
+      <location filename="../UI/UserInterface.py" line="6977" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6839" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7090" />
-      <location filename="../UI/UserInterface.py" line="6972" />
+      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="6946" />
       <source>Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6973" />
+      <location filename="../UI/UserInterface.py" line="6947" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7091" />
+      <location filename="../UI/UserInterface.py" line="7065" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7270" />
-      <location filename="../UI/UserInterface.py" line="7206" />
+      <location filename="../UI/UserInterface.py" line="7244" />
+      <location filename="../UI/UserInterface.py" line="7180" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7207" />
+      <location filename="../UI/UserInterface.py" line="7181" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7271" />
+      <location filename="../UI/UserInterface.py" line="7245" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7595" />
+      <location filename="../UI/UserInterface.py" line="7557" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7601" />
+      <location filename="../UI/UserInterface.py" line="7575" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7805" />
+      <location filename="../UI/UserInterface.py" line="7779" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7808" />
+      <location filename="../UI/UserInterface.py" line="7782" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7845" />
+      <location filename="../UI/UserInterface.py" line="7819" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7846" />
+      <location filename="../UI/UserInterface.py" line="7820" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7869" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7894" />
-      <location filename="../UI/UserInterface.py" line="7871" />
+      <location filename="../UI/UserInterface.py" line="7868" />
+      <location filename="../UI/UserInterface.py" line="7845" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8400" />
+      <location filename="../UI/UserInterface.py" line="8374" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8401" />
+      <location filename="../UI/UserInterface.py" line="8375" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8598" />
+      <location filename="../UI/UserInterface.py" line="8550" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8551" />
+      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8599" />
-      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
       <source>First time usage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8600" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8622" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8790" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8791" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_en.ts	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/i18n/eric7_en.ts	Sun Apr 13 14:46:18 2025 +0200
@@ -1689,47 +1689,47 @@
   <context>
     <name>BackgroundService</name>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="168" />
+      <location filename="../Utilities/BackgroundService.py" line="169" />
       <source>{0} not configured.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="230" />
-      <source>Initialization of Background Service</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>Initialization of Background Service</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="232" />
       <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="244" />
-      <source>Restart background client?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="245" />
+      <source>Restart background client?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="246" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="274" />
+      <location filename="../Utilities/BackgroundService.py" line="275" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="515" />
+      <location filename="../Utilities/BackgroundService.py" line="516" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="524" />
-      <source>Background client disconnected.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="525" />
+      <source>Background client disconnected.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="526" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -3712,7 +3712,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="526" />
+      <location filename="../Cooperation/ChatWidget.py" line="528" />
       <location filename="../Cooperation/ChatWidget.ui" line="0" />
       <source>Clear</source>
       <translation type="unfinished" />
@@ -3743,150 +3743,150 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="322" />
+      <location filename="../Cooperation/ChatWidget.py" line="324" />
       <location filename="../Cooperation/ChatWidget.py" line="85" />
       <source>Start Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="153" />
+      <location filename="../Cooperation/ChatWidget.py" line="155" />
       <source>! Unknown command: {0}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="176" />
+      <location filename="../Cooperation/ChatWidget.py" line="178" />
       <source>* {0} has joined.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="193" />
+      <location filename="../Cooperation/ChatWidget.py" line="195" />
       <source>New User</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="194" />
+      <location filename="../Cooperation/ChatWidget.py" line="196" />
       <source>{0} has joined.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="217" />
+      <location filename="../Cooperation/ChatWidget.py" line="219" />
       <source>* {0} has left.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="226" />
+      <location filename="../Cooperation/ChatWidget.py" line="228" />
       <source>User Left</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="227" />
+      <location filename="../Cooperation/ChatWidget.py" line="229" />
       <source>{0} has left.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="255" />
+      <location filename="../Cooperation/ChatWidget.py" line="257" />
       <source>Message from &lt;{0}&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="330" />
+      <location filename="../Cooperation/ChatWidget.py" line="332" />
       <source>Stop Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="336" />
+      <location filename="../Cooperation/ChatWidget.py" line="338" />
       <source>! Server Error: {0}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="347" />
+      <location filename="../Cooperation/ChatWidget.py" line="349" />
       <source>Disconnect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="351" />
+      <location filename="../Cooperation/ChatWidget.py" line="353" />
       <source>Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="515" />
+      <location filename="../Cooperation/ChatWidget.py" line="517" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="519" />
+      <location filename="../Cooperation/ChatWidget.py" line="521" />
       <source>Cut all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="522" />
+      <location filename="../Cooperation/ChatWidget.py" line="524" />
       <source>Copy all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="530" />
+      <location filename="../Cooperation/ChatWidget.py" line="532" />
       <source>Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="588" />
-      <location filename="../Cooperation/ChatWidget.py" line="573" />
+      <location filename="../Cooperation/ChatWidget.py" line="590" />
+      <location filename="../Cooperation/ChatWidget.py" line="575" />
       <source>Save Chat</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="575" />
+      <location filename="../Cooperation/ChatWidget.py" line="577" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="589" />
+      <location filename="../Cooperation/ChatWidget.py" line="591" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="604" />
+      <location filename="../Cooperation/ChatWidget.py" line="606" />
       <source>Error saving Chat</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="605" />
+      <location filename="../Cooperation/ChatWidget.py" line="607" />
       <source>&lt;p&gt;The chat contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="644" />
+      <location filename="../Cooperation/ChatWidget.py" line="646" />
       <source>Kick User</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="648" />
+      <location filename="../Cooperation/ChatWidget.py" line="650" />
       <source>Ban User</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="652" />
+      <location filename="../Cooperation/ChatWidget.py" line="654" />
       <source>Ban and Kick User</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="683" />
+      <location filename="../Cooperation/ChatWidget.py" line="685" />
       <source>* {0} has been kicked.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="700" />
+      <location filename="../Cooperation/ChatWidget.py" line="702" />
       <source>* {0} has been banned.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="717" />
+      <location filename="../Cooperation/ChatWidget.py" line="719" />
       <source>* {0} has been banned and kicked.
 </source>
       <translation type="unfinished" />
@@ -4834,32 +4834,32 @@
   <context>
     <name>CodeDocumentationViewer</name>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="220" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="222" />
       <source>Code Info Provider:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="238" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="240" />
       <source>Select the code info provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="239" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="241" />
       <source>&lt;disabled&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="420" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="422" />
       <source>No documentation available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="441" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="443" />
       <source>No source code documentation provider has been registered. This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="449" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="451" />
       <source>This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
@@ -8765,10 +8765,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="608" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="505" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="467" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="455" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="604" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="501" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="463" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="451" />
       <location filename="../Project/CreateDialogCodeDialog.py" line="419" />
       <source>Code Generation</source>
       <translation type="unfinished" />
@@ -8779,22 +8779,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="456" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="452" />
       <source>&lt;p&gt;No code template file available for project type "{0}".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="468" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="464" />
       <source>&lt;p&gt;Could not open the code template file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="506" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="502" />
       <source>&lt;p&gt;Could not open the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="609" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="605" />
       <source>&lt;p&gt;Could not write the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9297,676 +9297,676 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="207" />
+      <location filename="../Debugger/DebugUI.py" line="210" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="234" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="237" />
       <source>Run Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="236" />
+      <location filename="../Debugger/DebugUI.py" line="239" />
       <source>&amp;Run Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="242" />
+      <location filename="../Debugger/DebugUI.py" line="245" />
       <source>Run the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="244" />
+      <location filename="../Debugger/DebugUI.py" line="247" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2386" />
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="255" />
+      <location filename="../Debugger/DebugUI.py" line="2389" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="258" />
       <source>Run Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="257" />
+      <location filename="../Debugger/DebugUI.py" line="260" />
       <source>Run &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="263" />
+      <location filename="../Debugger/DebugUI.py" line="266" />
       <source>Run the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="265" />
+      <location filename="../Debugger/DebugUI.py" line="268" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="277" />
+      <location filename="../Debugger/DebugUI.py" line="280" />
       <source>Coverage run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="279" />
+      <location filename="../Debugger/DebugUI.py" line="282" />
       <source>Coverage run of Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="286" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="300" />
+      <location filename="../Debugger/DebugUI.py" line="303" />
       <source>Coverage run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="302" />
+      <location filename="../Debugger/DebugUI.py" line="305" />
       <source>Coverage run of Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="309" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="324" />
+      <location filename="../Debugger/DebugUI.py" line="327" />
       <source>Profile Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="326" />
+      <location filename="../Debugger/DebugUI.py" line="329" />
       <source>Profile Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="332" />
+      <location filename="../Debugger/DebugUI.py" line="335" />
       <source>Profile the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="334" />
+      <location filename="../Debugger/DebugUI.py" line="337" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="344" />
+      <location filename="../Debugger/DebugUI.py" line="347" />
       <source>Profile Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="346" />
+      <location filename="../Debugger/DebugUI.py" line="349" />
       <source>Profile Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="352" />
+      <location filename="../Debugger/DebugUI.py" line="355" />
       <source>Profile the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="354" />
+      <location filename="../Debugger/DebugUI.py" line="357" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="365" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="368" />
       <source>Debug Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="367" />
+      <location filename="../Debugger/DebugUI.py" line="370" />
       <source>&amp;Debug Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="373" />
+      <location filename="../Debugger/DebugUI.py" line="376" />
       <source>Debug the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="375" />
+      <location filename="../Debugger/DebugUI.py" line="378" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2579" />
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="387" />
+      <location filename="../Debugger/DebugUI.py" line="2582" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="390" />
       <source>Debug Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="389" />
+      <location filename="../Debugger/DebugUI.py" line="392" />
       <source>Debug &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="395" />
+      <location filename="../Debugger/DebugUI.py" line="398" />
       <source>Debug the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="397" />
+      <location filename="../Debugger/DebugUI.py" line="400" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2895" />
-      <location filename="../Debugger/DebugUI.py" line="411" />
-      <location filename="../Debugger/DebugUI.py" line="409" />
+      <location filename="../Debugger/DebugUI.py" line="2898" />
+      <location filename="../Debugger/DebugUI.py" line="414" />
+      <location filename="../Debugger/DebugUI.py" line="412" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="417" />
+      <location filename="../Debugger/DebugUI.py" line="420" />
       <source>Restart the last debugged script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="419" />
+      <location filename="../Debugger/DebugUI.py" line="422" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="628" />
-      <location filename="../Debugger/DebugUI.py" line="433" />
-      <location filename="../Debugger/DebugUI.py" line="431" />
+      <location filename="../Debugger/DebugUI.py" line="631" />
+      <location filename="../Debugger/DebugUI.py" line="436" />
+      <location filename="../Debugger/DebugUI.py" line="434" />
       <source>Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="439" />
+      <location filename="../Debugger/DebugUI.py" line="442" />
       <source>Stop the running script.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="441" />
+      <location filename="../Debugger/DebugUI.py" line="444" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="452" />
+      <location filename="../Debugger/DebugUI.py" line="455" />
       <source>Continue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="454" />
+      <location filename="../Debugger/DebugUI.py" line="457" />
       <source>&amp;Continue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="460" />
+      <location filename="../Debugger/DebugUI.py" line="463" />
       <source>Continue running the program from the current line</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="462" />
+      <location filename="../Debugger/DebugUI.py" line="465" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="473" />
+      <location filename="../Debugger/DebugUI.py" line="476" />
       <source>Continue to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="475" />
+      <location filename="../Debugger/DebugUI.py" line="478" />
       <source>Continue &amp;To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="482" />
+      <location filename="../Debugger/DebugUI.py" line="485" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="488" />
+      <location filename="../Debugger/DebugUI.py" line="491" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="498" />
+      <location filename="../Debugger/DebugUI.py" line="501" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="500" />
+      <location filename="../Debugger/DebugUI.py" line="503" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="507" />
+      <location filename="../Debugger/DebugUI.py" line="510" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="513" />
+      <location filename="../Debugger/DebugUI.py" line="516" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="524" />
+      <location filename="../Debugger/DebugUI.py" line="527" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="526" />
+      <location filename="../Debugger/DebugUI.py" line="529" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="533" />
+      <location filename="../Debugger/DebugUI.py" line="536" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="539" />
+      <location filename="../Debugger/DebugUI.py" line="542" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="553" />
+      <location filename="../Debugger/DebugUI.py" line="556" />
       <source>Single Step</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="555" />
+      <location filename="../Debugger/DebugUI.py" line="558" />
       <source>Sin&amp;gle Step</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="561" />
+      <location filename="../Debugger/DebugUI.py" line="564" />
       <source>Execute a single Python statement</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="563" />
+      <location filename="../Debugger/DebugUI.py" line="566" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="575" />
+      <location filename="../Debugger/DebugUI.py" line="578" />
       <source>Step Over</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="577" />
+      <location filename="../Debugger/DebugUI.py" line="580" />
       <source>Step &amp;Over</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="584" />
+      <location filename="../Debugger/DebugUI.py" line="587" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="590" />
+      <location filename="../Debugger/DebugUI.py" line="593" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="603" />
+      <location filename="../Debugger/DebugUI.py" line="606" />
       <source>Step Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="605" />
+      <location filename="../Debugger/DebugUI.py" line="608" />
       <source>Step Ou&amp;t</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="612" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="630" />
+      <location filename="../Debugger/DebugUI.py" line="633" />
       <source>&amp;Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="636" />
+      <location filename="../Debugger/DebugUI.py" line="639" />
       <source>Stop debugging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="638" />
+      <location filename="../Debugger/DebugUI.py" line="641" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="644" />
+      <location filename="../Debugger/DebugUI.py" line="647" />
       <source>Variables Type Filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="645" />
+      <location filename="../Debugger/DebugUI.py" line="648" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="651" />
+      <location filename="../Debugger/DebugUI.py" line="654" />
       <source>Configure variables type filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="653" />
+      <location filename="../Debugger/DebugUI.py" line="656" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="664" />
+      <location filename="../Debugger/DebugUI.py" line="667" />
       <source>Exceptions Filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="665" />
+      <location filename="../Debugger/DebugUI.py" line="668" />
       <source>&amp;Exceptions Filter...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="671" />
+      <location filename="../Debugger/DebugUI.py" line="674" />
       <source>Configure exceptions filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="673" />
+      <location filename="../Debugger/DebugUI.py" line="676" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="685" />
+      <location filename="../Debugger/DebugUI.py" line="688" />
       <source>Ignored Exceptions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="686" />
+      <location filename="../Debugger/DebugUI.py" line="689" />
       <source>&amp;Ignored Exceptions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="692" />
+      <location filename="../Debugger/DebugUI.py" line="695" />
       <source>Configure ignored exceptions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="694" />
+      <location filename="../Debugger/DebugUI.py" line="697" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="716" />
-      <location filename="../Debugger/DebugUI.py" line="710" />
-      <location filename="../Debugger/DebugUI.py" line="708" />
+      <location filename="../Debugger/DebugUI.py" line="719" />
+      <location filename="../Debugger/DebugUI.py" line="713" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Toggle Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="714" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="718" />
+      <location filename="../Debugger/DebugUI.py" line="721" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="736" />
-      <location filename="../Debugger/DebugUI.py" line="728" />
+      <location filename="../Debugger/DebugUI.py" line="739" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Edit Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="730" />
+      <location filename="../Debugger/DebugUI.py" line="733" />
       <source>Edit Breakpoint...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="734" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="738" />
+      <location filename="../Debugger/DebugUI.py" line="741" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="756" />
-      <location filename="../Debugger/DebugUI.py" line="750" />
-      <location filename="../Debugger/DebugUI.py" line="748" />
+      <location filename="../Debugger/DebugUI.py" line="759" />
+      <location filename="../Debugger/DebugUI.py" line="753" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Next Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="754" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="758" />
+      <location filename="../Debugger/DebugUI.py" line="761" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="775" />
-      <location filename="../Debugger/DebugUI.py" line="769" />
-      <location filename="../Debugger/DebugUI.py" line="767" />
+      <location filename="../Debugger/DebugUI.py" line="778" />
+      <location filename="../Debugger/DebugUI.py" line="772" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Previous Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="773" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="777" />
+      <location filename="../Debugger/DebugUI.py" line="780" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="793" />
-      <location filename="../Debugger/DebugUI.py" line="787" />
-      <location filename="../Debugger/DebugUI.py" line="786" />
+      <location filename="../Debugger/DebugUI.py" line="796" />
+      <location filename="../Debugger/DebugUI.py" line="790" />
+      <location filename="../Debugger/DebugUI.py" line="789" />
       <source>Clear Breakpoints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="795" />
+      <location filename="../Debugger/DebugUI.py" line="798" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="819" />
+      <location filename="../Debugger/DebugUI.py" line="822" />
       <source>&amp;Debug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="821" />
+      <location filename="../Debugger/DebugUI.py" line="824" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="823" />
+      <location filename="../Debugger/DebugUI.py" line="826" />
       <source>&amp;Breakpoints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="866" />
-      <location filename="../Debugger/DebugUI.py" line="864" />
+      <location filename="../Debugger/DebugUI.py" line="869" />
+      <location filename="../Debugger/DebugUI.py" line="867" />
       <source>Start</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="879" />
-      <location filename="../Debugger/DebugUI.py" line="877" />
+      <location filename="../Debugger/DebugUI.py" line="882" />
+      <location filename="../Debugger/DebugUI.py" line="880" />
       <source>Debug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1342" />
+      <location filename="../Debugger/DebugUI.py" line="1345" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1348" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1353" />
+      <location filename="../Debugger/DebugUI.py" line="1356" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1365" />
+      <location filename="../Debugger/DebugUI.py" line="1368" />
       <source>Program terminated</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1401" />
+      <location filename="../Debugger/DebugUI.py" line="1404" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1421" />
+      <location filename="../Debugger/DebugUI.py" line="1424" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1449" />
+      <location filename="../Debugger/DebugUI.py" line="1452" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1498" />
+      <location filename="../Debugger/DebugUI.py" line="1501" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1516" />
+      <location filename="../Debugger/DebugUI.py" line="1519" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1532" />
+      <location filename="../Debugger/DebugUI.py" line="1535" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1594" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1609" />
+      <location filename="../Debugger/DebugUI.py" line="1612" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1670" />
+      <location filename="../Debugger/DebugUI.py" line="1673" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1717" />
+      <location filename="../Debugger/DebugUI.py" line="1720" />
       <source>Breakpoint Condition Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1718" />
+      <location filename="../Debugger/DebugUI.py" line="1721" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1779" />
+      <location filename="../Debugger/DebugUI.py" line="1782" />
       <source>Watch Expression Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1780" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1810" />
+      <location filename="../Debugger/DebugUI.py" line="1813" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1815" />
+      <location filename="../Debugger/DebugUI.py" line="1818" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1821" />
+      <location filename="../Debugger/DebugUI.py" line="1824" />
       <source>Watch expression already exists</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1986" />
-      <location filename="../Debugger/DebugUI.py" line="1977" />
+      <location filename="../Debugger/DebugUI.py" line="1989" />
+      <location filename="../Debugger/DebugUI.py" line="1980" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1979" />
+      <location filename="../Debugger/DebugUI.py" line="1982" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2387" />
-      <location filename="../Debugger/DebugUI.py" line="2189" />
-      <location filename="../Debugger/DebugUI.py" line="1987" />
+      <location filename="../Debugger/DebugUI.py" line="2390" />
+      <location filename="../Debugger/DebugUI.py" line="2192" />
+      <location filename="../Debugger/DebugUI.py" line="1990" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2188" />
-      <location filename="../Debugger/DebugUI.py" line="2179" />
+      <location filename="../Debugger/DebugUI.py" line="2191" />
+      <location filename="../Debugger/DebugUI.py" line="2182" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2181" />
+      <location filename="../Debugger/DebugUI.py" line="2184" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2580" />
+      <location filename="../Debugger/DebugUI.py" line="2583" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3252" />
+      <location filename="../Debugger/DebugUI.py" line="3255" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -33324,7 +33324,6 @@
   <context>
     <name>HelpDocumentationPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="64" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="60" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="56" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="52" />
@@ -33451,21 +33450,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>Enter the PySide2 documentation directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
@@ -33881,28 +33865,18 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
-      <source>Qt6 Documentation</source>
+      <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
-      <source>PyQt5 Documentation</source>
+      <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
@@ -33912,73 +33886,68 @@
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="454" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="455" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="512" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="514" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="513" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="701" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="700" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="725" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="724" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="736" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="735" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="764" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="763" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="769" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="768" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="862" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="842" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="861" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="841" />
       <source>Clear History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="966" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="965" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1024" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1023" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1060" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1054" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
@@ -52073,7 +52042,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="415" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="416" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="221" />
       <source>No connection to Internet.</source>
       <translation type="unfinished" />
@@ -52109,24 +52078,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="435" />
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="411" />
-      <source>Error downloading dictionary file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="436" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="412" />
+      <source>Error downloading dictionary file</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="437" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="413" />
       <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="450" />
-      <source>Error downloading dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="451" />
+      <source>Error downloading dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="452" />
       <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -54001,7 +53970,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="459" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="460" />
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
@@ -54017,7 +53986,7 @@
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="192" />
       <source>%n supported serial device(s) detected.</source>
       <translation>
         <numerusform>%n supported serial device detected.</numerusform>
@@ -54025,18 +53994,18 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="205" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="206" />
       <source>{0} - {1} ({2})</source>
       <comment>board name, description, port name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="228" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="229" />
       <source>No supported serial devices detected.</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="233" />
       <source>
 %n unknown device(s) for manual selection.</source>
       <translation>
@@ -54047,17 +54016,17 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="239" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="240" />
       <source>Manual Selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="250" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="251" />
       <source>WebREPL (manual)</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="270" />
       <source>
 %n WebREPL connection(s) defined.</source>
       <translation>
@@ -54068,39 +54037,39 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="329" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="300" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
       <source>Unknown MicroPython Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="302" />
       <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href="mailto:{1}"&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="313" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="314" />
       <source>{0} (0x{1:04x}/0x{2:04x})</source>
       <comment>description, VID, PID</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="331" />
       <source>Would you like to add them to the list of manually configured devices?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="454" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="455" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="491" />
-      <source>No device attached</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="492" />
+      <source>No device attached</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="493" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -54109,353 +54078,353 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="523" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="731" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="718" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="720" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="726" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1198" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1190" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="729" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="730" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="772" />
-      <source>Run Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
-      <source>There is no editor open. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
-      <source>The current editor does not contain a script. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
+      <source>Run Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="774" />
+      <source>There is no editor open. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="783" />
+      <source>The current editor does not contain a script. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="792" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="827" />
-      <source>Start Chart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="828" />
+      <source>Start Chart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="829" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="843" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="844" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="860" />
-      <source>Unsaved Chart Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="861" />
+      <source>Unsaved Chart Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="862" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="909" />
-      <source>Start File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="910" />
+      <source>Start File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="911" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="930" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="931" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1017" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1018" />
       <source>Downloads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
       <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1067" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Implementation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1071" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1079" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1080" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Local Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1083" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1084" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1087" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1088" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1691" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1099" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1091" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1092" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1730" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1727" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1095" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1096" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1503" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1105" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1504" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1106" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1529" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1520" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1109" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1530" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1110" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1130" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1131" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1137" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1140" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1141" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1150" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1153" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1154" />
       <source>Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1162" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1163" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1173" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
-      <source>Device Version Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1174" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1170" />
+      <source>Device Version Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1175" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1204" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1205" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1220" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1211" />
-      <source>Device Implementation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
-      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
+      <source>Device Implementation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1213" />
+      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1296" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1297" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1304" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1305" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1320" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1321" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1332" />
-      <source>Local Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1333" />
+      <source>Local Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1334" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1374" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1357" />
-      <source>Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
-      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1375" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
+      <source>Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1359" />
+      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1376" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1399" />
-      <source>Error handling device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1400" />
+      <source>Error handling device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1401" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1442" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1443" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1468" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1469" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1478" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1479" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1488" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1489" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1522" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1613" />
-      <source>Add Unknown Devices</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1614" />
+      <source>Add Unknown Devices</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1664" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1665" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1716" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1717" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -54463,17 +54432,17 @@
   <context>
     <name>MicroPythonWindow</name>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="81" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="83" />
       <source>MicroPython / CircuitPython Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
@@ -59612,164 +59581,164 @@
   <context>
     <name>Pip</name>
     <message>
-      <location filename="../PipInterface/Pip.py" line="157" />
+      <location filename="../PipInterface/Pip.py" line="161" />
       <source>python exited with an error ({0}).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="166" />
+      <location filename="../PipInterface/Pip.py" line="170" />
       <source>python did not finish within 30 seconds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="168" />
+      <location filename="../PipInterface/Pip.py" line="172" />
       <source>python could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="229" />
+      <location filename="../PipInterface/Pip.py" line="233" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="254" />
+      <location filename="../PipInterface/Pip.py" line="258" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="255" />
+      <location filename="../PipInterface/Pip.py" line="259" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="308" />
+      <location filename="../PipInterface/Pip.py" line="312" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="355" />
+      <location filename="../PipInterface/Pip.py" line="359" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="487" />
-      <location filename="../PipInterface/Pip.py" line="469" />
+      <location filename="../PipInterface/Pip.py" line="491" />
+      <location filename="../PipInterface/Pip.py" line="473" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="470" />
+      <location filename="../PipInterface/Pip.py" line="474" />
       <source>There are no packages except 'eric-ide' or 'PyQt6' left for upgrade.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="533" />
+      <location filename="../PipInterface/Pip.py" line="537" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="564" />
+      <location filename="../PipInterface/Pip.py" line="568" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="586" />
+      <location filename="../PipInterface/Pip.py" line="590" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="621" />
-      <location filename="../PipInterface/Pip.py" line="611" />
+      <location filename="../PipInterface/Pip.py" line="625" />
+      <location filename="../PipInterface/Pip.py" line="615" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="612" />
+      <location filename="../PipInterface/Pip.py" line="753" />
+      <location filename="../PipInterface/Pip.py" line="616" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="622" />
+      <location filename="../PipInterface/Pip.py" line="626" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="642" />
+      <location filename="../PipInterface/Pip.py" line="646" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="776" />
-      <location filename="../PipInterface/Pip.py" line="702" />
-      <location filename="../PipInterface/Pip.py" line="672" />
-      <location filename="../PipInterface/Pip.py" line="663" />
+      <location filename="../PipInterface/Pip.py" line="780" />
+      <location filename="../PipInterface/Pip.py" line="706" />
+      <location filename="../PipInterface/Pip.py" line="676" />
+      <location filename="../PipInterface/Pip.py" line="667" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
-      <location filename="../PipInterface/Pip.py" line="703" />
-      <location filename="../PipInterface/Pip.py" line="664" />
+      <location filename="../PipInterface/Pip.py" line="781" />
+      <location filename="../PipInterface/Pip.py" line="707" />
+      <location filename="../PipInterface/Pip.py" line="668" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="720" />
+      <location filename="../PipInterface/Pip.py" line="724" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="759" />
-      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="763" />
+      <location filename="../PipInterface/Pip.py" line="752" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="760" />
+      <location filename="../PipInterface/Pip.py" line="764" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="787" />
+      <location filename="../PipInterface/Pip.py" line="791" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1198" />
+      <location filename="../PipInterface/Pip.py" line="1203" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1224" />
-      <location filename="../PipInterface/Pip.py" line="1215" />
+      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1220" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1216" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1248" />
-      <location filename="../PipInterface/Pip.py" line="1241" />
+      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1246" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1242" />
+      <location filename="../PipInterface/Pip.py" line="1247" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1273" />
-      <location filename="../PipInterface/Pip.py" line="1265" />
+      <location filename="../PipInterface/Pip.py" line="1278" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1266" />
+      <location filename="../PipInterface/Pip.py" line="1271" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -60689,205 +60658,205 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="737" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="731" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
       <source>Cleanup Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="733" />
       <source>The environment cleanup was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="739" />
       <source>Some leftover package directories could not been removed. Delete them manually.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="834" />
-      <source>Search PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="835" />
+      <source>Search PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="836" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="854" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="855" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="856" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="857" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="860" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="862" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="863" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="869" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="870" />
       <source>Install</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1048" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="871" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1049" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="872" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="874" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="875" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="877" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="878" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="884" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="885" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="886" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="887" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="889" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="890" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="892" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="893" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="896" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="897" />
       <source>Install from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="900" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="901" />
       <source>Uninstall from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="905" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="906" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="912" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="913" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="914" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="915" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="917" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="918" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="920" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="921" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="923" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="924" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="940" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="941" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="944" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="945" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="948" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="949" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="952" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="953" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="959" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="960" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="962" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="963" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="967" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="968" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1211" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1198" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1187" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1212" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1199" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1188" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1213" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1200" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1189" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1421" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1422" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1442" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1443" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1445" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1446" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1585" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1560" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1586" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1561" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1582" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1583" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
@@ -60895,7 +60864,7 @@
   <context>
     <name>PipPackagesWindow</name>
     <message>
-      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <location filename="../PipInterface/PipPackagesWindow.py" line="60" />
       <source>Manage Packages</source>
       <translation type="unfinished" />
     </message>
@@ -61412,52 +61381,52 @@
   <context>
     <name>PluginManager</name>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="230" />
+      <location filename="../PluginManager/PluginManager.py" line="232" />
       <source>Could not create a package for {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="262" />
+      <location filename="../PluginManager/PluginManager.py" line="264" />
       <source>The internal plugin directory &lt;b&gt;{0}&lt;/b&gt; does not exits.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="439" />
+      <location filename="../PluginManager/PluginManager.py" line="441" />
       <source>Module is missing the 'autoactivate' attribute.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="450" />
+      <location filename="../PluginManager/PluginManager.py" line="452" />
       <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="478" />
+      <location filename="../PluginManager/PluginManager.py" line="480" />
       <source>Module failed to load. Error: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="661" />
+      <location filename="../PluginManager/PluginManager.py" line="663" />
       <source>Incompatible plugin activation method.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1269" />
+      <location filename="../PluginManager/PluginManager.py" line="1271" />
       <source>Plugin Manager Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1270" />
+      <location filename="../PluginManager/PluginManager.py" line="1272" />
       <source>&lt;p&gt;The plugin download directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Please configure it via the configuration dialog.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1358" />
+      <location filename="../PluginManager/PluginManager.py" line="1360" />
       <source>Error downloading file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1359" />
+      <location filename="../PluginManager/PluginManager.py" line="1361" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -62342,18 +62311,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1911" />
+      <location filename="../Preferences/__init__.py" line="1891" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1940" />
-      <location filename="../Preferences/__init__.py" line="1913" />
+      <location filename="../Preferences/__init__.py" line="1920" />
+      <location filename="../Preferences/__init__.py" line="1893" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1938" />
+      <location filename="../Preferences/__init__.py" line="1918" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
@@ -62877,113 +62846,98 @@
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="204" />
-      <source>Translation Extractor (Python, PySide2)</source>
+      <source>Translation Extractor (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="213" />
-      <source>Forms Compiler (Python, PySide2)</source>
+      <source>Forms Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="222" />
-      <source>Resource Compiler (Python, PySide2)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="232" />
-      <source>Translation Extractor (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="241" />
-      <source>Forms Compiler (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="250" />
       <source>Resource Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="265" />
+      <location filename="../Preferences/ProgramsDialog.py" line="237" />
       <source>conda Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="275" />
+      <location filename="../Preferences/ProgramsDialog.py" line="247" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="527" />
-      <location filename="../Preferences/ProgramsDialog.py" line="524" />
-      <location filename="../Preferences/ProgramsDialog.py" line="508" />
-      <location filename="../Preferences/ProgramsDialog.py" line="378" />
-      <location filename="../Preferences/ProgramsDialog.py" line="311" />
+      <location filename="../Preferences/ProgramsDialog.py" line="499" />
+      <location filename="../Preferences/ProgramsDialog.py" line="496" />
+      <location filename="../Preferences/ProgramsDialog.py" line="480" />
+      <location filename="../Preferences/ProgramsDialog.py" line="350" />
+      <location filename="../Preferences/ProgramsDialog.py" line="283" />
+      <location filename="../Preferences/ProgramsDialog.py" line="266" />
+      <source>(unknown)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="270" />
+      <source>Spell Checker - PyEnchant</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="287" />
+      <source>Source Highlighter - Pygments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ProgramsDialog.py" line="294" />
-      <source>(unknown)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="298" />
-      <source>Spell Checker - PyEnchant</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="315" />
-      <source>Source Highlighter - Pygments</source>
+      <source>MicroPython - MPY Cross Compiler</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="301" />
+      <source>MicroPython - ESP Tool</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="312" />
+      <source>MicroPython - PyBoard Flasher</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="322" />
-      <source>MicroPython - MPY Cross Compiler</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="329" />
-      <source>MicroPython - ESP Tool</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="340" />
-      <source>MicroPython - PyBoard Flasher</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="350" />
       <source>MicroPython - STLink Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="360" />
+      <location filename="../Preferences/ProgramsDialog.py" line="332" />
       <source>MicroPython - STLink Flasher</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="382" />
+      <location filename="../Preferences/ProgramsDialog.py" line="354" />
       <source>Code Assistant - Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="462" />
+      <location filename="../Preferences/ProgramsDialog.py" line="434" />
       <source>(not configured)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="497" />
+      <location filename="../Preferences/ProgramsDialog.py" line="469" />
       <source>(module not found)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="530" />
+      <location filename="../Preferences/ProgramsDialog.py" line="502" />
       <source>(not executable)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="576" />
-      <location filename="../Preferences/ProgramsDialog.py" line="544" />
-      <location filename="../Preferences/ProgramsDialog.py" line="542" />
+      <location filename="../Preferences/ProgramsDialog.py" line="548" />
+      <location filename="../Preferences/ProgramsDialog.py" line="516" />
+      <location filename="../Preferences/ProgramsDialog.py" line="514" />
       <source>(not found)</source>
       <translation type="unfinished" />
     </message>
@@ -63042,379 +62996,369 @@
     </message>
     <message>
       <location filename="../Project/Project.py" line="362" />
-      <source>PySide2 GUI</source>
+      <source>PySide6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="363" />
-      <source>PySide2 Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="367" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="466" />
-      <location filename="../Project/Project.py" line="454" />
-      <location filename="../Project/Project.py" line="443" />
+      <location filename="../Project/Project.py" line="461" />
+      <location filename="../Project/Project.py" line="449" />
+      <location filename="../Project/Project.py" line="438" />
       <source>Registering Project Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="444" />
+      <location filename="../Project/Project.py" line="439" />
       <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="455" />
+      <location filename="../Project/Project.py" line="450" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="467" />
+      <location filename="../Project/Project.py" line="462" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="772" />
+      <location filename="../Project/Project.py" line="767" />
       <source>All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1321" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1579" />
-      <location filename="../Project/Project.py" line="1553" />
-      <location filename="../Project/Project.py" line="1517" />
-      <location filename="../Project/Project.py" line="1435" />
-      <location filename="../Project/Project.py" line="1396" />
-      <location filename="../Project/Project.py" line="1371" />
-      <location filename="../Project/Project.py" line="1334" />
+      <location filename="../Project/Project.py" line="1567" />
+      <location filename="../Project/Project.py" line="1541" />
+      <location filename="../Project/Project.py" line="1505" />
+      <location filename="../Project/Project.py" line="1423" />
+      <location filename="../Project/Project.py" line="1384" />
+      <location filename="../Project/Project.py" line="1359" />
+      <location filename="../Project/Project.py" line="1322" />
       <source>Please save the project first.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1370" />
+      <location filename="../Project/Project.py" line="1358" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1412" />
-      <location filename="../Project/Project.py" line="1395" />
+      <location filename="../Project/Project.py" line="1400" />
+      <location filename="../Project/Project.py" line="1383" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1402" />
+      <location filename="../Project/Project.py" line="1390" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1421" />
+      <location filename="../Project/Project.py" line="1409" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1422" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1516" />
+      <location filename="../Project/Project.py" line="1504" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1552" />
+      <location filename="../Project/Project.py" line="1540" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1595" />
-      <location filename="../Project/Project.py" line="1578" />
+      <location filename="../Project/Project.py" line="1583" />
+      <location filename="../Project/Project.py" line="1566" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1585" />
+      <location filename="../Project/Project.py" line="1573" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1604" />
+      <location filename="../Project/Project.py" line="1592" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1777" />
+      <location filename="../Project/Project.py" line="1765" />
       <source>Add Language</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1778" />
+      <location filename="../Project/Project.py" line="1766" />
       <source>You have to specify a translation pattern first.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1919" />
+      <location filename="../Project/Project.py" line="1905" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1946" />
-      <location filename="../Project/Project.py" line="1920" />
+      <location filename="../Project/Project.py" line="1932" />
+      <location filename="../Project/Project.py" line="1906" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1945" />
+      <location filename="../Project/Project.py" line="1931" />
       <source>Delete translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2098" />
-      <location filename="../Project/Project.py" line="2081" />
+      <location filename="../Project/Project.py" line="2084" />
+      <location filename="../Project/Project.py" line="2067" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2200" />
-      <location filename="../Project/Project.py" line="2082" />
+      <location filename="../Project/Project.py" line="2186" />
+      <location filename="../Project/Project.py" line="2068" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2099" />
+      <location filename="../Project/Project.py" line="2085" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2097" />
       <source>Add file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2296" />
-      <location filename="../Project/Project.py" line="2112" />
+      <location filename="../Project/Project.py" line="2282" />
+      <location filename="../Project/Project.py" line="2098" />
       <source>The target directory must not be empty.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2172" />
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2185" />
+      <location filename="../Project/Project.py" line="2158" />
+      <location filename="../Project/Project.py" line="2138" />
       <source>Add Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2153" />
+      <location filename="../Project/Project.py" line="2139" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2173" />
+      <location filename="../Project/Project.py" line="2159" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2307" />
-      <location filename="../Project/Project.py" line="2295" />
+      <location filename="../Project/Project.py" line="2293" />
+      <location filename="../Project/Project.py" line="2281" />
       <source>Add directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2308" />
+      <location filename="../Project/Project.py" line="2294" />
       <source>The source directory must not be empty.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2422" />
-      <location filename="../Project/Project.py" line="2404" />
-      <location filename="../Project/Project.py" line="2388" />
-      <location filename="../Project/Project.py" line="2381" />
+      <location filename="../Project/Project.py" line="2408" />
+      <location filename="../Project/Project.py" line="2390" />
+      <location filename="../Project/Project.py" line="2374" />
+      <location filename="../Project/Project.py" line="2367" />
       <source>Rename File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8089" />
-      <location filename="../Project/Project.py" line="3909" />
-      <location filename="../Project/Project.py" line="2405" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2423" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2690" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2691" />
-      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2719" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2720" />
-      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2853" />
-      <source>Create project directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2854" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3682" />
-      <location filename="../Project/Project.py" line="2954" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3683" />
-      <location filename="../Project/Project.py" line="2955" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2995" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2996" />
-      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3463" />
-      <location filename="../Project/Project.py" line="3020" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3464" />
-      <location filename="../Project/Project.py" line="3021" />
-      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3712" />
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3144" />
-      <location filename="../Project/Project.py" line="3112" />
-      <location filename="../Project/Project.py" line="3094" />
-      <location filename="../Project/Project.py" line="3069" />
-      <location filename="../Project/Project.py" line="3031" />
-      <source>New Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3032" />
-      <source>Add existing files to the project?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3713" />
-      <location filename="../Project/Project.py" line="3070" />
-      <source>Select Version Control System</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3174" />
-      <location filename="../Project/Project.py" line="3095" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3113" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3150" />
-      <location filename="../Project/Project.py" line="3139" />
-      <source>None</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3145" />
-      <source>Select version control system for the project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3356" />
-      <source>Translation Pattern</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3357" />
-      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3661" />
-      <source>Open Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="8075" />
-      <location filename="../Project/Project.py" line="8069" />
-      <location filename="../Project/Project.py" line="8059" />
-      <location filename="../Project/Project.py" line="3894" />
-      <location filename="../Project/Project.py" line="3884" />
-      <location filename="../Project/Project.py" line="3663" />
+      <location filename="../Project/Project.py" line="3895" />
+      <location filename="../Project/Project.py" line="2391" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2409" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2676" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2677" />
+      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2705" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2706" />
+      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2839" />
+      <source>Create project directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2840" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3668" />
+      <location filename="../Project/Project.py" line="2940" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3669" />
+      <location filename="../Project/Project.py" line="2941" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2981" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2982" />
+      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3449" />
+      <location filename="../Project/Project.py" line="3006" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3450" />
+      <location filename="../Project/Project.py" line="3007" />
+      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3698" />
+      <location filename="../Project/Project.py" line="3159" />
+      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3098" />
+      <location filename="../Project/Project.py" line="3080" />
+      <location filename="../Project/Project.py" line="3055" />
+      <location filename="../Project/Project.py" line="3017" />
+      <source>New Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3018" />
+      <source>Add existing files to the project?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3699" />
+      <location filename="../Project/Project.py" line="3056" />
+      <source>Select Version Control System</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3160" />
+      <location filename="../Project/Project.py" line="3081" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3099" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3125" />
+      <source>None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3131" />
+      <source>Select version control system for the project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3342" />
+      <source>Translation Pattern</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3343" />
+      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3647" />
+      <source>Open Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8061" />
+      <location filename="../Project/Project.py" line="8055" />
+      <location filename="../Project/Project.py" line="8045" />
+      <location filename="../Project/Project.py" line="3880" />
+      <location filename="../Project/Project.py" line="3870" />
+      <location filename="../Project/Project.py" line="3649" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="3892" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3878" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3947" />
+      <location filename="../Project/Project.py" line="3933" />
       <source>Close Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3948" />
+      <location filename="../Project/Project.py" line="3934" />
       <source>The current project has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4134" />
+      <location filename="../Project/Project.py" line="4098" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4149" />
-      <location filename="../Project/Project.py" line="4113" />
+      <location filename="../Project/Project.py" line="4135" />
+      <location filename="../Project/Project.py" line="4099" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>The project contains one file with syntax errors.</numerusform>
@@ -63422,1268 +63366,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4793" />
       <source>New project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4809" />
+      <location filename="../Project/Project.py" line="4795" />
       <source>&amp;New...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4801" />
+      <source>Generate a new project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4803" />
+      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4813" />
+      <source>Open project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4815" />
-      <source>Generate a new project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4817" />
-      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4827" />
-      <source>Open project</source>
+      <source>&amp;Open...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4821" />
+      <source>Open an existing project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4823" />
+      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4829" />
-      <source>&amp;Open...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4835" />
-      <source>Open an existing project</source>
+      <source>Open remote project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4831" />
+      <source>Open (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4837" />
-      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4843" />
-      <source>Open remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4845" />
-      <source>Open (Remote)...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4853" />
+      <location filename="../Project/Project.py" line="4839" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4862" />
+      <location filename="../Project/Project.py" line="4848" />
       <source>Reload project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4850" />
+      <source>Re&amp;load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4856" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4858" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4864" />
-      <source>Re&amp;load</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4870" />
-      <source>Reload the current project</source>
+      <source>Close project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4866" />
+      <source>&amp;Close</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4872" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4878" />
-      <source>Close project</source>
+      <source>Close the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4874" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4880" />
-      <source>&amp;Close</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4886" />
-      <source>Close the current project</source>
+      <source>Save project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5177" />
+      <location filename="../Project/Project.py" line="4882" />
+      <source>&amp;Save</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4888" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4894" />
-      <source>Save project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5191" />
+      <source>Save the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4890" />
+      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4896" />
-      <source>&amp;Save</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4902" />
-      <source>Save the current project</source>
+      <source>Save project as</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4898" />
+      <source>Save &amp;as...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4904" />
-      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4910" />
-      <source>Save project as</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4912" />
-      <source>Save &amp;as...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4920" />
+      <location filename="../Project/Project.py" line="4906" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4929" />
+      <location filename="../Project/Project.py" line="4915" />
       <source>Save project as (Remote)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4931" />
+      <location filename="../Project/Project.py" line="4917" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4938" />
+      <location filename="../Project/Project.py" line="4924" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4927" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4957" />
+      <location filename="../Project/Project.py" line="4943" />
       <source>Add files to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4959" />
+      <location filename="../Project/Project.py" line="4945" />
       <source>Add &amp;files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4965" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>Add files to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4967" />
+      <location filename="../Project/Project.py" line="4953" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4978" />
+      <location filename="../Project/Project.py" line="4964" />
       <source>Add directory to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4980" />
+      <location filename="../Project/Project.py" line="4966" />
       <source>Add directory...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4987" />
+      <location filename="../Project/Project.py" line="4973" />
       <source>Add a directory to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4990" />
+      <location filename="../Project/Project.py" line="4976" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5000" />
+      <location filename="../Project/Project.py" line="4986" />
       <source>Add translation to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5002" />
+      <location filename="../Project/Project.py" line="4988" />
       <source>Add &amp;translation...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4995" />
+      <source>Add a translation to the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4998" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5008" />
+      <source>Search new files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5009" />
-      <source>Add a translation to the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5012" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5022" />
-      <source>Search new files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5015" />
+      <source>Search new files in the project directory.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5017" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5027" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5028" />
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5029" />
-      <source>Search new files in the project directory.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5031" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5042" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5048" />
+      <location filename="../Project/Project.py" line="5034" />
       <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5050" />
+      <location filename="../Project/Project.py" line="5036" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5059" />
+      <location filename="../Project/Project.py" line="5045" />
       <source>Project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5061" />
+      <location filename="../Project/Project.py" line="5047" />
       <source>&amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5067" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Show the project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5069" />
+      <location filename="../Project/Project.py" line="5055" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5078" />
+      <location filename="../Project/Project.py" line="5064" />
       <source>User project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5080" />
+      <location filename="../Project/Project.py" line="5066" />
       <source>&amp;User Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5073" />
+      <source>Show the user specific project properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5076" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5086" />
+      <source>Filetype Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5087" />
-      <source>Show the user specific project properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5090" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5100" />
-      <source>Filetype Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5108" />
+      <location filename="../Project/Project.py" line="5094" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5097" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5110" />
+      <source>Lexer Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5111" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5124" />
-      <source>Lexer Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5132" />
+      <location filename="../Project/Project.py" line="5118" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5135" />
+      <location filename="../Project/Project.py" line="5121" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5153" />
+      <location filename="../Project/Project.py" line="5139" />
       <source>Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5154" />
+      <location filename="../Project/Project.py" line="5140" />
       <source>Debugger &amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5160" />
+      <location filename="../Project/Project.py" line="5146" />
       <source>Show the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5162" />
+      <location filename="../Project/Project.py" line="5148" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5158" />
       <source>Load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5173" />
+      <location filename="../Project/Project.py" line="5159" />
       <source>&amp;Load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5179" />
+      <location filename="../Project/Project.py" line="5165" />
       <source>Load the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5181" />
+      <location filename="../Project/Project.py" line="5167" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
+      <location filename="../Project/Project.py" line="5176" />
       <source>Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5197" />
+      <location filename="../Project/Project.py" line="5183" />
       <source>Save the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5199" />
+      <location filename="../Project/Project.py" line="5185" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5208" />
+      <location filename="../Project/Project.py" line="5194" />
       <source>Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5209" />
+      <location filename="../Project/Project.py" line="5195" />
       <source>&amp;Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5215" />
+      <location filename="../Project/Project.py" line="5201" />
       <source>Delete the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5217" />
+      <location filename="../Project/Project.py" line="5203" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5227" />
+      <location filename="../Project/Project.py" line="5213" />
       <source>Reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5228" />
+      <location filename="../Project/Project.py" line="5214" />
       <source>&amp;Reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5234" />
+      <location filename="../Project/Project.py" line="5220" />
       <source>Reset the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5236" />
+      <location filename="../Project/Project.py" line="5222" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5252" />
-      <location filename="../Project/Project.py" line="5251" />
+      <location filename="../Project/Project.py" line="5238" />
+      <location filename="../Project/Project.py" line="5237" />
       <source>Load session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5258" />
+      <location filename="../Project/Project.py" line="5244" />
       <source>Load the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5260" />
+      <location filename="../Project/Project.py" line="5246" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5276" />
-      <location filename="../Project/Project.py" line="5275" />
+      <location filename="../Project/Project.py" line="5262" />
+      <location filename="../Project/Project.py" line="5261" />
       <source>Save session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5282" />
+      <location filename="../Project/Project.py" line="5268" />
       <source>Save the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5284" />
+      <location filename="../Project/Project.py" line="5270" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5300" />
-      <location filename="../Project/Project.py" line="5299" />
+      <location filename="../Project/Project.py" line="5286" />
+      <location filename="../Project/Project.py" line="5285" />
       <source>Delete session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5306" />
+      <location filename="../Project/Project.py" line="5292" />
       <source>Delete the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5308" />
+      <location filename="../Project/Project.py" line="5294" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5323" />
+      <location filename="../Project/Project.py" line="5309" />
       <source>Code Metrics</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5324" />
+      <location filename="../Project/Project.py" line="5310" />
       <source>&amp;Code Metrics...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5317" />
+      <source>Show some code metrics for the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5320" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5330" />
+      <source>Python Code Coverage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5331" />
-      <source>Show some code metrics for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5334" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5344" />
-      <source>Python Code Coverage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5338" />
+      <source>Show code coverage information for the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5341" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6775" />
+      <location filename="../Project/Project.py" line="6762" />
+      <location filename="../Project/Project.py" line="5351" />
+      <source>Profile Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5352" />
-      <source>Show code coverage information for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5355" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6789" />
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="5365" />
-      <source>Profile Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5373" />
+      <location filename="../Project/Project.py" line="5359" />
       <source>Show profiling data for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5376" />
+      <location filename="../Project/Project.py" line="5362" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="6827" />
+      <location filename="../Project/Project.py" line="5377" />
       <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5392" />
+      <location filename="../Project/Project.py" line="5378" />
       <source>&amp;Application Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5399" />
+      <location filename="../Project/Project.py" line="5385" />
       <source>Show a diagram of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5402" />
+      <location filename="../Project/Project.py" line="5388" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5411" />
+      <location filename="../Project/Project.py" line="5397" />
       <source>Load Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5412" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5418" />
+      <location filename="../Project/Project.py" line="5404" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5420" />
+      <location filename="../Project/Project.py" line="5406" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
-      <location filename="../Project/Project.py" line="6954" />
-      <location filename="../Project/Project.py" line="5435" />
+      <location filename="../Project/Project.py" line="6995" />
+      <location filename="../Project/Project.py" line="6940" />
+      <location filename="../Project/Project.py" line="5421" />
       <source>Create Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5437" />
+      <location filename="../Project/Project.py" line="5423" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5444" />
+      <location filename="../Project/Project.py" line="5430" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="5433" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7080" />
-      <location filename="../Project/Project.py" line="5458" />
+      <location filename="../Project/Project.py" line="7066" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5460" />
+      <location filename="../Project/Project.py" line="5446" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5452" />
+      <source>Create eric plugin archive files.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5454" />
+      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5466" />
-      <source>Create eric plugin archive files.</source>
+      <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5468" />
-      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5480" />
-      <source>Create Plugin Archives (Snapshot)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5489" />
+      <location filename="../Project/Project.py" line="5475" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5492" />
+      <location filename="../Project/Project.py" line="5478" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7536" />
-      <location filename="../Project/Project.py" line="7507" />
-      <location filename="../Project/Project.py" line="7461" />
-      <location filename="../Project/Project.py" line="7413" />
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="5497" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5512" />
+      <location filename="../Project/Project.py" line="5498" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5518" />
+      <location filename="../Project/Project.py" line="5504" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5520" />
+      <location filename="../Project/Project.py" line="5506" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7513" />
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="7499" />
+      <location filename="../Project/Project.py" line="5516" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5531" />
+      <location filename="../Project/Project.py" line="5517" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5524" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5541" />
+      <location filename="../Project/Project.py" line="5527" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5559" />
+      <location filename="../Project/Project.py" line="5545" />
       <source>Create SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5560" />
+      <location filename="../Project/Project.py" line="5546" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5553" />
+      <source>Create a SBOM file of the project dependencies.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5556" />
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5567" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5570" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5581" />
       <source>Clear Byte Code Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5582" />
+      <location filename="../Project/Project.py" line="5568" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5589" />
+      <location filename="../Project/Project.py" line="5575" />
       <source>Clear the byte code caches of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5592" />
+      <location filename="../Project/Project.py" line="5578" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5608" />
+      <location filename="../Project/Project.py" line="5594" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5609" />
+      <location filename="../Project/Project.py" line="5595" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5601" />
+      <source>Show some information about 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5603" />
+      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5615" />
-      <source>Show some information about 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5617" />
-      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5629" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5630" />
+      <location filename="../Project/Project.py" line="5616" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5637" />
+      <location filename="../Project/Project.py" line="5623" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5640" />
+      <location filename="../Project/Project.py" line="5626" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5652" />
+      <location filename="../Project/Project.py" line="5638" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5653" />
+      <location filename="../Project/Project.py" line="5639" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5660" />
+      <location filename="../Project/Project.py" line="5646" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5651" />
+      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5664" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5665" />
-      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <source>Code Formatting &amp;Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5672" />
+      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5678" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5679" />
-      <source>Code Formatting &amp;Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5686" />
-      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5792" />
       <location filename="../Project/Project.py" line="5692" />
-      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <location filename="../Project/Project.py" line="5807" />
-      <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5706" />
-      <location filename="../Project/Project.py" line="5705" />
+      <location filename="../Project/Project.py" line="5691" />
       <source>Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5713" />
+      <location filename="../Project/Project.py" line="5699" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5718" />
+      <location filename="../Project/Project.py" line="5704" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5734" />
+      <location filename="../Project/Project.py" line="5720" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5735" />
+      <location filename="../Project/Project.py" line="5721" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5741" />
+      <location filename="../Project/Project.py" line="5727" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5743" />
+      <location filename="../Project/Project.py" line="5729" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5756" />
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5763" />
+      <location filename="../Project/Project.py" line="5749" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5752" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5766" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5780" />
-      <location filename="../Project/Project.py" line="5779" />
+      <location filename="../Project/Project.py" line="5765" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5787" />
+      <location filename="../Project/Project.py" line="5773" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5814" />
+      <location filename="../Project/Project.py" line="5800" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5820" />
+      <location filename="../Project/Project.py" line="5806" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5836" />
+      <location filename="../Project/Project.py" line="5822" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5823" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5830" />
+      <source>Install the project into the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5833" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5844" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5851" />
+      <source>Configure the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5854" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5864" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5865" />
-      <source>Configure the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5868" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5878" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5871" />
+      <source>Upgrade the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5873" />
+      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5885" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5887" />
-      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5900" />
+      <location filename="../Project/Project.py" line="5886" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5906" />
+      <location filename="../Project/Project.py" line="5892" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5908" />
+      <location filename="../Project/Project.py" line="5894" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5926" />
+      <source>&amp;Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5927" />
+      <source>Open &amp;Recent Projects</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5929" />
+      <source>Session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5930" />
+      <source>Debugger</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5931" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5933" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5934" />
+      <source>&amp;Version Control</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5938" />
+      <source>Chec&amp;k</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5940" />
-      <source>&amp;Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5941" />
-      <source>Open &amp;Recent Projects</source>
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5942" />
+      <source>Sho&amp;w</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Session</source>
+      <source>&amp;Diagrams</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
-      <source>Debugger</source>
+      <source>Pac&amp;kagers</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Embedded Environment</source>
+      <source>Source &amp;Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Project-T&amp;ools</source>
+      <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
-      <source>&amp;Version Control</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5952" />
-      <source>Chec&amp;k</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5954" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5956" />
-      <source>Sho&amp;w</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5957" />
-      <source>&amp;Diagrams</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5958" />
-      <source>Pac&amp;kagers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5959" />
-      <source>Source &amp;Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5961" />
-      <source>Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6124" />
-      <location filename="../Project/Project.py" line="6122" />
+      <location filename="../Project/Project.py" line="6110" />
+      <location filename="../Project/Project.py" line="6108" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6206" />
+      <location filename="../Project/Project.py" line="6192" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6403" />
+      <location filename="../Project/Project.py" line="6389" />
       <source>Search New Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6404" />
+      <location filename="../Project/Project.py" line="6390" />
       <source>There were no new files found to be added.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6565" />
-      <location filename="../Project/Project.py" line="6552" />
+      <location filename="../Project/Project.py" line="6551" />
+      <location filename="../Project/Project.py" line="6538" />
       <source>Version Control System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6553" />
+      <location filename="../Project/Project.py" line="6539" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6566" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="6709" />
+      <source>Coverage Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6763" />
+      <location filename="../Project/Project.py" line="6710" />
+      <source>There is no main script defined for the current project. Aborting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6722" />
+      <source>Code Coverage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="6723" />
-      <source>Coverage Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6777" />
-      <location filename="../Project/Project.py" line="6724" />
-      <source>There is no main script defined for the current project. Aborting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6736" />
-      <source>Code Coverage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6790" />
+      <location filename="../Project/Project.py" line="6776" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6842" />
+      <location filename="../Project/Project.py" line="6828" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6955" />
+      <location filename="../Project/Project.py" line="6941" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7010" />
+      <location filename="../Project/Project.py" line="6996" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7321" />
-      <location filename="../Project/Project.py" line="7277" />
-      <location filename="../Project/Project.py" line="7227" />
-      <location filename="../Project/Project.py" line="7216" />
-      <location filename="../Project/Project.py" line="7198" />
-      <location filename="../Project/Project.py" line="7151" />
-      <location filename="../Project/Project.py" line="7121" />
-      <location filename="../Project/Project.py" line="7093" />
-      <location filename="../Project/Project.py" line="7063" />
-      <location filename="../Project/Project.py" line="7048" />
-      <location filename="../Project/Project.py" line="7031" />
-      <source>Create Plugin Archive</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7032" />
-      <source>The project does not have a main script defined. Aborting...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7137" />
+      <location filename="../Project/Project.py" line="7107" />
+      <location filename="../Project/Project.py" line="7079" />
       <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7034" />
+      <location filename="../Project/Project.py" line="7017" />
+      <source>Create Plugin Archive</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7018" />
+      <source>The project does not have a main script defined. Aborting...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7035" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7064" />
+      <location filename="../Project/Project.py" line="7050" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7072" />
+      <location filename="../Project/Project.py" line="7058" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7073" />
+      <location filename="../Project/Project.py" line="7059" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7076" />
+      <location filename="../Project/Project.py" line="7062" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7094" />
+      <location filename="../Project/Project.py" line="7080" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7122" />
+      <location filename="../Project/Project.py" line="7108" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7152" />
+      <location filename="../Project/Project.py" line="7138" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7199" />
+      <location filename="../Project/Project.py" line="7185" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7217" />
+      <location filename="../Project/Project.py" line="7203" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7228" />
+      <location filename="../Project/Project.py" line="7214" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7278" />
+      <location filename="../Project/Project.py" line="7264" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7322" />
+      <location filename="../Project/Project.py" line="7308" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7414" />
+      <location filename="../Project/Project.py" line="7400" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7462" />
+      <location filename="../Project/Project.py" line="7448" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7508" />
+      <location filename="../Project/Project.py" line="7494" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7516" />
+      <location filename="../Project/Project.py" line="7502" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
+      <location filename="../Project/Project.py" line="7507" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7537" />
+      <location filename="../Project/Project.py" line="7523" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7975" />
+      <location filename="../Project/Project.py" line="7961" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7976" />
+      <location filename="../Project/Project.py" line="7962" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8057" />
+      <location filename="../Project/Project.py" line="8043" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8088" />
-      <location filename="../Project/Project.py" line="8073" />
+      <location filename="../Project/Project.py" line="8074" />
+      <location filename="../Project/Project.py" line="8059" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -64932,9 +64876,9 @@
   <context>
     <name>ProjectFormsBrowser</name>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1141" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1092" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1055" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1131" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
       <location filename="../Project/ProjectFormsBrowser.py" line="142" />
       <location filename="../Project/ProjectFormsBrowser.py" line="77" />
       <source>Forms</source>
@@ -65207,102 +65151,102 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="701" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="732" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="719" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="700" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="683" />
       <source>New Form</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="685" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
       <source>Select a form type:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="703" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="702" />
       <source>Qt User-Interface Files (*.ui);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="721" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
       <source>The file already exists! Overwrite it?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="734" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
       <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectFormsBrowser.py" line="759" />
+      <source>Delete forms</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectFormsBrowser.py" line="760" />
-      <source>Delete forms</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="761" />
       <source>Do you really want to delete these forms from the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="893" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="882" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="875" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="888" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="877" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="870" />
       <source>Form Compilation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="876" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="871" />
       <source>The compilation of the form file was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="883" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="878" />
       <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="894" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="889" />
       <source>The compilation of the form file failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="986" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="977" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="987" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="978" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1074" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1037" />
       <source>Compiling forms...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1134" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1084" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1047" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1075" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1038" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1137" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1087" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1050" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1127" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1078" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1041" />
       <source>%v/%m Forms</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1133" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1123" />
       <source>Determining changed forms...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1163" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1153" />
       <source>Compiling changed forms...</source>
       <translation type="unfinished" />
     </message>
@@ -65754,9 +65698,9 @@
   <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="956" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="880" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="844" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="940" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="864" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="828" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="87" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="68" />
       <source>Resources</source>
@@ -65783,219 +65727,219 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="165" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="163" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="150" />
       <source>Compile resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="396" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="385" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="344" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="333" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="247" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="235" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="172" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="154" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="384" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="373" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="334" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="323" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="241" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="229" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="170" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
       <source>Compile all resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="389" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="337" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="296" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="239" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="158" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="377" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="327" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="288" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="233" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="156" />
       <source>Configure rcc Compiler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="308" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="300" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="179" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
       <source>Rename file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="349" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="310" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="339" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="302" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
       <source>Remove from project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="351" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="187" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="341" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="304" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
       <source>Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="345" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="249" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="236" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="200" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="195" />
+      <source>New resource...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="390" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="346" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="254" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
+      <source>Add resources...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="393" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="348" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="257" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="206" />
+      <source>Add resources directory...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="353" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="211" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectResourcesBrowser.py" line="355" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="255" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="242" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="199" />
-      <source>New resource...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="402" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="356" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="260" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="208" />
-      <source>Add resources...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="405" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="358" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="210" />
-      <source>Add resources directory...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="363" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="269" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="365" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="217" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="213" />
       <source>Copy Path to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="410" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="367" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="315" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="272" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="219" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="398" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="357" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="307" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="266" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
       <source>Expand all directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="413" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="369" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="317" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="274" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="220" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="401" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="359" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="309" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="268" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="216" />
       <source>Collapse all directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="416" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="372" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="320" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="277" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="222" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="404" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="362" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="271" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="218" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="303" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="292" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="295" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="284" />
       <source>Compile resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="595" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="574" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="555" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="583" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="562" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="543" />
       <source>New Resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="557" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="545" />
       <source>Qt Resource Files (*.qrc)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="575" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="563" />
       <source>The file already exists! Overwrite it?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="596" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="584" />
       <source>&lt;p&gt;The new resource file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="622" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="610" />
       <source>Delete resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="623" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="611" />
       <source>Do you really want to delete these resources from the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="717" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="708" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="701" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="705" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="696" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="689" />
       <source>Resource Compilation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="702" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="690" />
       <source>The compilation of the resource file was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="709" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="697" />
       <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="718" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="706" />
       <source>The compilation of the resource file failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="805" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="789" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="806" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="790" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="871" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="835" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="855" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="819" />
       <source>Compiling resources...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="949" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="872" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="836" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="933" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="856" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="820" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="952" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="875" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="839" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="936" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="859" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="823" />
       <source>%v/%m Resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="948" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="932" />
       <source>Determining changed resources...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="986" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="970" />
       <source>Compiling changed resources...</source>
       <translation type="unfinished" />
     </message>
@@ -66531,250 +66475,250 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="514" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="456" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="296" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="238" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="213" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="182" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="508" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="236" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="180" />
       <source>Open in Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="255" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="253" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="193" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="263" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="191" />
       <source>Generate translation (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="580" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="551" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="572" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="543" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="378" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="272" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="197" />
+      <source>Generate all translations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="581" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="274" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="199" />
-      <source>Generate all translations</source>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="281" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
+      <source>Generate all translations (with obsolete)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="446" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="207" />
+      <source>Open in Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="301" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <source>Release translation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="589" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="391" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="283" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
-      <source>Generate all translations (with obsolete)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="452" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
-      <source>Open in Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
-      <source>Release translation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="597" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="560" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="399" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="363" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="552" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="395" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="359" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Release all translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="226" />
       <source>Preview translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="368" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="232" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="557" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="364" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
       <source>Preview all translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="481" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="374" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="246" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="475" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="370" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="244" />
       <source>Extract messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="291" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="289" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="319" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Remove from project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="595" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="526" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="320" />
+      <source>Delete</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="600" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="402" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="324" />
+      <source>New translation...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="603" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="532" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="322" />
-      <source>Delete</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="608" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="406" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="326" />
-      <source>New translation...</source>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="327" />
+      <source>Add translation files...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="607" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="609" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <source>Copy Path to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="611" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="329" />
-      <source>Add translation files...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="615" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="413" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="617" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <source>Copy Path to Clipboard</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="619" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="535" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="416" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="338" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="490" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="440" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="484" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
       <source>Generate translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="500" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="445" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
       <source>Generate translations (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="515" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="455" />
       <source>Release translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
       <source>Preview translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="882" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="866" />
       <source>Delete translation files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="883" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="867" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1582" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1051" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1011" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1560" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1035" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="995" />
       <source>Write temporary project file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1583" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1307" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1012" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1561" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1287" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="996" />
       <source>No translation files (*.ts) selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1052" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1036" />
       <source>&lt;p&gt;The temporary project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1306" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1189" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1177" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1286" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1173" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1161" />
       <source>Translation file generation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1178" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1162" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1184" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1168" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1190" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1174" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1612" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1360" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1590" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1388" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1340" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1361" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1389" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1341" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1497" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1479" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1477" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1459" />
       <source>Translation file release</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1480" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1460" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1498" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1478" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1613" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1591" />
       <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -69279,38 +69223,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="214" />
+      <location filename="../UI/PythonAstViewer.py" line="216" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="224" />
+      <location filename="../UI/PythonAstViewer.py" line="226" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="230" />
+      <location filename="../UI/PythonAstViewer.py" line="232" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="248" />
+      <location filename="../UI/PythonAstViewer.py" line="250" />
       <source>Module</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="280" />
+      <location filename="../UI/PythonAstViewer.py" line="282" />
       <source>{0}: {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="297" />
-      <location filename="../UI/PythonAstViewer.py" line="287" />
+      <location filename="../UI/PythonAstViewer.py" line="299" />
+      <location filename="../UI/PythonAstViewer.py" line="289" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="304" />
+      <location filename="../UI/PythonAstViewer.py" line="306" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -71408,7 +71352,7 @@
   <context>
     <name>QtPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="154" />
+      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="139" />
       <source>Sample: {0}designer{1}</source>
       <translation type="unfinished" />
     </message>
@@ -71452,7 +71396,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Tools Directory:</source>
       <translation type="unfinished" />
     </message>
@@ -71537,7 +71480,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Virtual Environment:</source>
       <translation type="unfinished" />
     </message>
@@ -71545,7 +71487,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Select the virtual environment to be used</source>
       <translation type="unfinished" />
     </message>
@@ -71553,7 +71494,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to open the virtual environment manager dialog</source>
       <translation type="unfinished" />
     </message>
@@ -71561,7 +71501,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to refresh the list of vitual environments</source>
       <translation type="unfinished" />
     </message>
@@ -71590,7 +71529,6 @@
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Generate imports relative to '.'</source>
       <translation type="unfinished" />
     </message>
@@ -71623,26 +71561,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>pyside2-uic Options</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>PySide6</source>
       <translation type="unfinished" />
     </message>
@@ -87442,64 +87360,64 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="575" />
+      <location filename="../Templates/TemplateViewer.py" line="577" />
       <source>Remove Template</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="576" />
+      <location filename="../Templates/TemplateViewer.py" line="578" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="604" />
+      <location filename="../Templates/TemplateViewer.py" line="606" />
       <source>Import Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="621" />
-      <location filename="../Templates/TemplateViewer.py" line="606" />
+      <location filename="../Templates/TemplateViewer.py" line="623" />
+      <location filename="../Templates/TemplateViewer.py" line="608" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
-      <location filename="../Templates/TemplateViewer.py" line="619" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
+      <location filename="../Templates/TemplateViewer.py" line="621" />
       <source>Export Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="654" />
+      <location filename="../Templates/TemplateViewer.py" line="656" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="655" />
+      <location filename="../Templates/TemplateViewer.py" line="657" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="675" />
+      <location filename="../Templates/TemplateViewer.py" line="677" />
       <source>Template Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="676" />
+      <location filename="../Templates/TemplateViewer.py" line="678" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="938" />
+      <location filename="../Templates/TemplateViewer.py" line="940" />
       <source>Edit Template Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="939" />
+      <location filename="../Templates/TemplateViewer.py" line="941" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -90956,2585 +90874,2569 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="263" />
+      <location filename="../UI/UserInterface.py" line="265" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="319" />
+      <location filename="../UI/UserInterface.py" line="321" />
       <source>Initializing Plugin Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="327" />
+      <location filename="../UI/UserInterface.py" line="329" />
       <source>Generating Main User Interface...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="386" />
       <location filename="../UI/UserInterface.py" line="384" />
-      <location filename="../UI/UserInterface.py" line="382" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="593" />
+      <location filename="../UI/UserInterface.py" line="595" />
       <source>Initializing Tools...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="605" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Registering Objects...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="640" />
+      <location filename="../UI/UserInterface.py" line="642" />
       <source>Initializing Actions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="643" />
+      <location filename="../UI/UserInterface.py" line="645" />
       <source>Initializing Menus...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="648" />
       <source>Initializing Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Statusbar...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="676" />
       <location filename="../UI/UserInterface.py" line="674" />
-      <location filename="../UI/UserInterface.py" line="672" />
       <source>Initializing Single Application Server...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="683" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Activating Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="688" />
+      <location filename="../UI/UserInterface.py" line="690" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="692" />
+      <location filename="../UI/UserInterface.py" line="694" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
+      <location filename="../UI/UserInterface.py" line="705" />
       <source>Restoring Toolbarmanager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="714" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="726" />
+      <location filename="../UI/UserInterface.py" line="728" />
       <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="732" />
+      <location filename="../UI/UserInterface.py" line="734" />
       <source>Reading Templates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="738" />
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2212" />
-      <location filename="../UI/UserInterface.py" line="1099" />
+      <location filename="../UI/UserInterface.py" line="2214" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2258" />
-      <location filename="../UI/UserInterface.py" line="1109" />
+      <location filename="../UI/UserInterface.py" line="2260" />
+      <location filename="../UI/UserInterface.py" line="1111" />
       <source>Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2235" />
-      <location filename="../UI/UserInterface.py" line="1120" />
+      <location filename="../UI/UserInterface.py" line="2237" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2054" />
-      <location filename="../UI/UserInterface.py" line="1316" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1132" />
       <source>Multiproject-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2032" />
-      <location filename="../UI/UserInterface.py" line="1322" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>Project-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2594" />
-      <location filename="../UI/UserInterface.py" line="2593" />
-      <location filename="../UI/UserInterface.py" line="1329" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Find/Replace In Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
-      <location filename="../UI/UserInterface.py" line="2616" />
-      <location filename="../UI/UserInterface.py" line="1336" />
-      <location filename="../UI/UserInterface.py" line="1150" />
-      <source>Find File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1156" />
-      <source>VCS Status</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2187" />
-      <location filename="../UI/UserInterface.py" line="1349" />
-      <location filename="../UI/UserInterface.py" line="1163" />
-      <source>Template-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2120" />
-      <location filename="../UI/UserInterface.py" line="1356" />
-      <location filename="../UI/UserInterface.py" line="1170" />
-      <source>File-Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1177" />
-      <source>Symbols</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2076" />
-      <location filename="../UI/UserInterface.py" line="1385" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1187" />
-      <source>Debug-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <location filename="../UI/UserInterface.py" line="2447" />
-      <location filename="../UI/UserInterface.py" line="1392" />
-      <location filename="../UI/UserInterface.py" line="1194" />
-      <source>Code Documentation Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2663" />
-      <location filename="../UI/UserInterface.py" line="2662" />
-      <location filename="../UI/UserInterface.py" line="1399" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>Help Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3611" />
-      <location filename="../UI/UserInterface.py" line="2543" />
-      <location filename="../UI/UserInterface.py" line="2542" />
-      <location filename="../UI/UserInterface.py" line="1405" />
-      <location filename="../UI/UserInterface.py" line="1207" />
-      <source>Plugin Repository</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
-      <location filename="../UI/UserInterface.py" line="2566" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1213" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2475" />
-      <location filename="../UI/UserInterface.py" line="2474" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>PyPI Package Management</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2497" />
-      <location filename="../UI/UserInterface.py" line="2496" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1225" />
-      <source>Conda</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1232" />
-      <source>Cooperation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2375" />
-      <location filename="../UI/UserInterface.py" line="1436" />
-      <location filename="../UI/UserInterface.py" line="1237" />
-      <source>IRC</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
-      <location filename="../UI/UserInterface.py" line="2518" />
-      <location filename="../UI/UserInterface.py" line="1442" />
-      <location filename="../UI/UserInterface.py" line="1244" />
-      <source>MicroPython</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2098" />
-      <location filename="../UI/UserInterface.py" line="1450" />
-      <location filename="../UI/UserInterface.py" line="1252" />
-      <source>Shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <location filename="../UI/UserInterface.py" line="1456" />
-      <location filename="../UI/UserInterface.py" line="1256" />
-      <source>Task-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2142" />
-      <location filename="../UI/UserInterface.py" line="1462" />
-      <location filename="../UI/UserInterface.py" line="1260" />
-      <source>Log-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1469" />
-      <location filename="../UI/UserInterface.py" line="1267" />
-      <source>Numbers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1844" />
-      <source>{0} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <location filename="../UI/UserInterface.py" line="1847" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1885" />
-      <source>Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1887" />
-      <source>&amp;Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1888" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Quit the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1909" />
-      <location filename="../UI/UserInterface.py" line="1907" />
-      <source>Restart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1910" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1915" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1917" />
-      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <location filename="../UI/UserInterface.py" line="1928" />
-      <source>Save session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7892" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <location filename="../UI/UserInterface.py" line="1947" />
-      <source>Load session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
-      <source>Load session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
-      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1966" />
-      <source>New Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1968" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1969" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1974" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1990" />
-      <location filename="../UI/UserInterface.py" line="1988" />
-      <source>Edit Profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1997" />
-      <source>Activate the edit view profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1999" />
-      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2012" />
-      <location filename="../UI/UserInterface.py" line="2010" />
-      <source>Debug Profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2019" />
-      <source>Activate the debug view profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2021" />
-      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2033" />
-      <source>&amp;Project-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2034" />
-      <source>Alt+Shift+P</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2040" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2043" />
-      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2055" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2056" />
-      <source>Alt+Shift+M</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2062" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2077" />
-      <source>&amp;Debug-Viewer</source>
+      <location filename="../UI/UserInterface.py" line="1324" />
+      <location filename="../UI/UserInterface.py" line="1138" />
+      <source>Project-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2596" />
+      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="1331" />
+      <location filename="../UI/UserInterface.py" line="1145" />
+      <source>Find/Replace In Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2619" />
+      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="1338" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Find File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1344" />
+      <location filename="../UI/UserInterface.py" line="1158" />
+      <source>VCS Status</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="1351" />
+      <location filename="../UI/UserInterface.py" line="1165" />
+      <source>Template-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="1358" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>File-Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1365" />
+      <location filename="../UI/UserInterface.py" line="1179" />
+      <source>Symbols</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2078" />
-      <source>Alt+Shift+D</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2084" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2099" />
-      <source>&amp;Shell</source>
+      <location filename="../UI/UserInterface.py" line="1387" />
+      <location filename="../UI/UserInterface.py" line="1381" />
+      <location filename="../UI/UserInterface.py" line="1189" />
+      <source>Debug-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="1394" />
+      <location filename="../UI/UserInterface.py" line="1196" />
+      <source>Code Documentation Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2665" />
+      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="1401" />
+      <location filename="../UI/UserInterface.py" line="1203" />
+      <source>Help Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1209" />
+      <source>Plugin Repository</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2569" />
+      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2477" />
+      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
+      <source>PyPI Package Management</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2499" />
+      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="1427" />
+      <location filename="../UI/UserInterface.py" line="1227" />
+      <source>Conda</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1434" />
+      <location filename="../UI/UserInterface.py" line="1234" />
+      <source>Cooperation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1239" />
+      <source>IRC</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2521" />
+      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
+      <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2100" />
-      <source>Alt+Shift+S</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2106" />
-      <source>Switch the input focus to the Shell window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2109" />
-      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2121" />
-      <source>&amp;File-Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2122" />
-      <source>Alt+Shift+F</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2128" />
-      <source>Switch the input focus to the File-Browser window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2143" />
-      <source>Lo&amp;g-Viewer</source>
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1254" />
+      <source>Shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
+      <source>Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="1464" />
+      <location filename="../UI/UserInterface.py" line="1262" />
+      <source>Log-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1471" />
+      <location filename="../UI/UserInterface.py" line="1269" />
+      <source>Numbers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1846" />
+      <source>{0} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1855" />
+      <location filename="../UI/UserInterface.py" line="1849" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1861" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1887" />
+      <source>Quit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1889" />
+      <source>&amp;Quit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1890" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1895" />
+      <source>Quit the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1909" />
+      <source>Restart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1917" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1937" />
+      <location filename="../UI/UserInterface.py" line="1930" />
+      <source>Save session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1931" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7866" />
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1949" />
+      <source>Load session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1950" />
+      <source>Load session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1958" />
+      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1968" />
+      <source>New Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1970" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1971" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1976" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1992" />
+      <location filename="../UI/UserInterface.py" line="1990" />
+      <source>Edit Profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Activate the edit view profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2001" />
+      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2014" />
+      <location filename="../UI/UserInterface.py" line="2012" />
+      <source>Debug Profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Activate the debug view profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
+      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2035" />
+      <source>&amp;Project-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2036" />
+      <source>Alt+Shift+P</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2045" />
+      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2057" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2058" />
+      <source>Alt+Shift+M</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2067" />
+      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2079" />
+      <source>&amp;Debug-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2080" />
+      <source>Alt+Shift+D</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2089" />
+      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2101" />
+      <source>&amp;Shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2102" />
+      <source>Alt+Shift+S</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <source>Switch the input focus to the Shell window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2111" />
+      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2123" />
+      <source>&amp;File-Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2124" />
+      <source>Alt+Shift+F</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <source>Switch the input focus to the File-Browser window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2133" />
+      <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2145" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2146" />
       <source>Alt+Shift+G</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2150" />
+      <location filename="../UI/UserInterface.py" line="2152" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="2155" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2165" />
+      <location filename="../UI/UserInterface.py" line="2167" />
       <source>&amp;Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="2168" />
       <source>Alt+Shift+T</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2174" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2190" />
       <source>Templ&amp;ate-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="2191" />
       <source>Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2197" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2198" />
+      <location filename="../UI/UserInterface.py" line="2200" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2213" />
+      <location filename="../UI/UserInterface.py" line="2215" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2220" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2222" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2236" />
+      <location filename="../UI/UserInterface.py" line="2238" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2243" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2245" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2259" />
+      <location filename="../UI/UserInterface.py" line="2261" />
       <source>&amp;Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2266" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2268" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2281" />
+      <location filename="../UI/UserInterface.py" line="2283" />
       <source>Left Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2282" />
+      <location filename="../UI/UserInterface.py" line="2284" />
       <source>&amp;Left Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2289" />
-      <source>Toggle the left sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2291" />
+      <source>Toggle the left sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2304" />
+      <location filename="../UI/UserInterface.py" line="2306" />
       <source>Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2305" />
+      <location filename="../UI/UserInterface.py" line="2307" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2312" />
-      <source>Toggle the right sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2314" />
+      <source>Toggle the right sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2329" />
       <source>Bottom Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2328" />
+      <location filename="../UI/UserInterface.py" line="2330" />
       <source>&amp;Bottom Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2337" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2350" />
-      <source>Cooperation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2351" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2352" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2353" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2354" />
       <source>Alt+Shift+O</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
+      <location filename="../UI/UserInterface.py" line="2360" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2361" />
+      <location filename="../UI/UserInterface.py" line="2363" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2376" />
+      <location filename="../UI/UserInterface.py" line="2378" />
       <source>&amp;IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="2379" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2383" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2386" />
+      <location filename="../UI/UserInterface.py" line="2388" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2397" />
-      <source>Symbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2398" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2399" />
+      <source>Symbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2400" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2401" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2407" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2408" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2422" />
-      <source>Numbers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2423" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2424" />
+      <source>Numbers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2426" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
+      <location filename="../UI/UserInterface.py" line="2432" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2433" />
+      <location filename="../UI/UserInterface.py" line="2435" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="2451" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2455" />
+      <location filename="../UI/UserInterface.py" line="2457" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2460" />
+      <location filename="../UI/UserInterface.py" line="2462" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="2478" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2482" />
+      <location filename="../UI/UserInterface.py" line="2484" />
       <source>Switch the input focus to the PyPI Package Management window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2487" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="2500" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2504" />
+      <location filename="../UI/UserInterface.py" line="2506" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="2522" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2528" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2529" />
+      <location filename="../UI/UserInterface.py" line="2531" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="2546" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2552" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2553" />
+      <location filename="../UI/UserInterface.py" line="2555" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="2570" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2574" />
+      <location filename="../UI/UserInterface.py" line="2576" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2579" />
+      <location filename="../UI/UserInterface.py" line="2581" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="2597" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2603" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="2620" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2626" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2641" />
-      <location filename="../UI/UserInterface.py" line="2640" />
+      <location filename="../UI/UserInterface.py" line="2643" />
+      <location filename="../UI/UserInterface.py" line="2642" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2642" />
+      <location filename="../UI/UserInterface.py" line="2644" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2648" />
+      <location filename="../UI/UserInterface.py" line="2650" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2653" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="2666" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
+      <location filename="../UI/UserInterface.py" line="2672" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2673" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2686" />
-      <source>What's This?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2688" />
+      <source>What's This?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2690" />
       <source>&amp;What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2689" />
+      <location filename="../UI/UserInterface.py" line="2691" />
       <source>Shift+F1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>Context sensitive help</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2696" />
+      <source>Context sensitive help</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2709" />
-      <source>Helpviewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2711" />
+      <source>Helpviewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2713" />
       <source>&amp;Helpviewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2714" />
       <source>F1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2717" />
-      <source>Open the helpviewer window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2719" />
+      <source>Open the helpviewer window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2739" />
+      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2740" />
+      <location filename="../UI/UserInterface.py" line="2742" />
       <source>Show &amp;Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <source>Display version information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2748" />
+      <source>Display version information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2754" />
+      <location filename="../UI/UserInterface.py" line="2756" />
       <source>Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2757" />
       <source>&amp;Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2764" />
       <source>Copy version information to the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2765" />
+      <location filename="../UI/UserInterface.py" line="2767" />
       <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2781" />
-      <location filename="../UI/UserInterface.py" line="2774" />
-      <source>Show Error Log</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Show Error &amp;Log...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2783" />
+      <location filename="../UI/UserInterface.py" line="2776" />
+      <source>Show Error Log</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2777" />
+      <source>Show Error &amp;Log...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2785" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
+      <location filename="../UI/UserInterface.py" line="2794" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2795" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
-      <source>Show Installation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Show Installation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4738" />
-      <location filename="../UI/UserInterface.py" line="2811" />
+      <location filename="../UI/UserInterface.py" line="4712" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>Report Bug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2811" />
-      <source>Report &amp;Bug...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2813" />
-      <source>Report a bug</source>
+      <source>Report &amp;Bug...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2815" />
+      <source>Report a bug</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2821" />
+      <location filename="../UI/UserInterface.py" line="2823" />
       <source>Request Feature</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2824" />
       <source>Request &amp;Feature...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2828" />
-      <source>Send a feature request</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2830" />
+      <source>Send a feature request</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4174" />
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="4148" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2843" />
+      <location filename="../UI/UserInterface.py" line="2845" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2849" />
-      <source>Start the testing dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2851" />
+      <source>Start the testing dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
-      <source>Restart Last Test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2864" />
+      <source>Restart Last Test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2866" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2870" />
-      <source>Restarts the last test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2872" />
+      <source>Restarts the last test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2882" />
-      <source>Rerun Failed Tests</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2884" />
+      <source>Rerun Failed Tests</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2886" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
+      <location filename="../UI/UserInterface.py" line="2896" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2906" />
+      <source>Test Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2908" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2914" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2916" />
       <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2923" />
+      <source>Test Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2925" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Run tests of the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2931" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2933" />
       <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
-      <source>Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2942" />
+      <source>Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2944" />
       <source>Qt-&amp;Designer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2950" />
+      <source>Start Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2959" />
-      <source>Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2961" />
+      <source>Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2963" />
       <source>Qt-&amp;Linguist...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2967" />
-      <source>Start Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2969" />
+      <source>Start Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2971" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>UI Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2979" />
+      <source>UI Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
       <source>&amp;UI Previewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
-      <source>Start the UI Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2987" />
+      <source>Start the UI Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2993" />
-      <source>Translations Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2995" />
+      <source>Translations Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2997" />
       <source>&amp;Translations Previewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <source>Start the Translations Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3003" />
+      <source>Start the Translations Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3005" />
       <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3012" />
-      <source>Compare Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3014" />
+      <source>Compare Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3016" />
       <source>&amp;Compare Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
-      <location filename="../UI/UserInterface.py" line="3020" />
-      <source>Compare two files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
-      <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3031" />
-      <source>Compare Files side by side</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3033" />
-      <source>Compare &amp;Files side by side...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3022" />
+      <source>Compare two files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3024" />
+      <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3033" />
+      <source>Compare Files side by side</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3035" />
+      <source>Compare &amp;Files side by side...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3043" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>SQL Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3053" />
+      <source>SQL Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3055" />
       <source>SQL &amp;Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>Browse a SQL database</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3061" />
+      <source>Browse a SQL database</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3075" />
-      <location filename="../UI/UserInterface.py" line="3067" />
-      <source>Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>Mini &amp;Editor...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <location filename="../UI/UserInterface.py" line="3069" />
+      <source>Mini Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3071" />
+      <source>Mini &amp;Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3079" />
       <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3086" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3088" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3090" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3094" />
-      <source>Start the eric Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>Start the eric Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3106" />
-      <source>eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3108" />
+      <source>eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3110" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3114" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3116" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3118" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3126" />
-      <source>FIDO2 Security Key Management</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3128" />
+      <source>FIDO2 Security Key Management</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3130" />
       <source>FIDO2 Security Key Management...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3135" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>Start the FIDO2 Security Key Management tool</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
+      <location filename="../UI/UserInterface.py" line="3140" />
       <source>&lt;b&gt;FIDO2 Security Key Management&lt;/b&gt;&lt;p&gt;Start a tool to manage FIDO2 securit y keys.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3151" />
+      <source>Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3153" />
       <source>&amp;Icon Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
-      <source>Start the eric Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3159" />
+      <source>Start the eric Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3161" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6631" />
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="6605" />
+      <location filename="../UI/UserInterface.py" line="3173" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3173" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <source>Take snapshots of a screen region</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3181" />
+      <source>Take snapshots of a screen region</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3193" />
+      <source>eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>eric PDF &amp;Viewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3199" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3201" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
-      <source>Preferences</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3212" />
+      <source>Preferences</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Set the prefered configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3220" />
+      <source>Set the prefered configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3222" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Export Preferences</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3233" />
+      <source>Export Preferences</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>E&amp;xport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
-      <source>Export the current configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3241" />
+      <source>Export the current configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
-      <source>Import Preferences</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3252" />
+      <source>Import Preferences</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
       <source>I&amp;mport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3261" />
       <source>Import a previously exported configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3262" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
-      <source>Export Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3273" />
+      <source>Export Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3281" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3290" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3292" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
-      <source>Import a previously exported theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3300" />
+      <source>Import a previously exported theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3302" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload APIs</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload &amp;APIs</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3311" />
-      <source>Reload the API information</source>
+      <source>Reload APIs</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3311" />
+      <source>Reload &amp;APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Reload the API information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <location filename="../UI/UserInterface.py" line="3319" />
-      <source>Show external tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Show external &amp;tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3329" />
+      <location filename="../UI/UserInterface.py" line="3321" />
+      <source>Show external tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3323" />
+      <source>Show external &amp;tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3331" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>View Profiles</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3341" />
+      <source>View Profiles</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3343" />
       <source>&amp;View Profiles...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Configure view profiles</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Configure view profiles</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
-      <source>Toolbars</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3362" />
+      <source>Toolbars</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3364" />
       <source>Tool&amp;bars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
-      <source>Configure toolbars</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3370" />
+      <source>Configure toolbars</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3372" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
-      <source>Keyboard Shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3383" />
+      <source>Keyboard Shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3389" />
-      <source>Set the keyboard shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3391" />
+      <source>Set the keyboard shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7600" />
-      <location filename="../UI/UserInterface.py" line="7581" />
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7555" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
-      <source>Export the keyboard shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3411" />
+      <source>Export the keyboard shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3413" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7619" />
-      <location filename="../UI/UserInterface.py" line="3420" />
+      <location filename="../UI/UserInterface.py" line="7593" />
+      <location filename="../UI/UserInterface.py" line="3422" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3428" />
-      <source>Import the keyboard shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3430" />
+      <source>Import the keyboard shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3432" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3440" />
-      <source>Manage SSL Certificates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3442" />
+      <source>Manage SSL Certificates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3444" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Manage the saved SSL certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3454" />
       <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3462" />
-      <source>Edit Message Filters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3464" />
+      <source>Edit Message Filters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3466" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3474" />
+      <location filename="../UI/UserInterface.py" line="3476" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <location filename="../UI/UserInterface.py" line="3487" />
-      <location filename="../UI/UserInterface.py" line="3485" />
-      <source>Clear private data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3489" />
+      <location filename="../UI/UserInterface.py" line="3487" />
+      <source>Clear private data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3506" />
-      <location filename="../UI/UserInterface.py" line="3505" />
-      <source>Activate current editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../UI/UserInterface.py" line="3508" />
       <location filename="../UI/UserInterface.py" line="3507" />
+      <source>Activate current editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3518" />
-      <location filename="../UI/UserInterface.py" line="3517" />
+      <location filename="../UI/UserInterface.py" line="3520" />
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>Show next</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3519" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3530" />
-      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <source>Show previous</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3533" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3542" />
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <source>Switch between tabs</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../UI/UserInterface.py" line="3544" />
       <location filename="../UI/UserInterface.py" line="3543" />
+      <source>Switch between tabs</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3545" />
       <source>Ctrl+1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3553" />
-      <source>Plugin Infos</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3555" />
+      <source>Plugin Infos</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>&amp;Plugin Infos...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3561" />
-      <source>Show Plugin Infos</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3563" />
+      <source>Show Plugin Infos</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3565" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3581" />
-      <location filename="../UI/UserInterface.py" line="3573" />
-      <source>Install Plugins</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3575" />
-      <source>&amp;Install Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <source>Install Plugins</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>&amp;Install Plugins...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3600" />
-      <location filename="../UI/UserInterface.py" line="3592" />
-      <source>Uninstall Plugin</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3602" />
+      <location filename="../UI/UserInterface.py" line="3594" />
+      <source>Uninstall Plugin</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3596" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3615" />
       <source>Plugin &amp;Repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3619" />
-      <source>Show Plugins available for download</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3621" />
+      <source>Show Plugins available for download</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3623" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3651" />
-      <location filename="../UI/UserInterface.py" line="3650" />
+      <location filename="../UI/UserInterface.py" line="3653" />
+      <location filename="../UI/UserInterface.py" line="3652" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>Open Qt5 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3659" />
+      <source>Open Qt5 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3672" />
-      <location filename="../UI/UserInterface.py" line="3671" />
+      <location filename="../UI/UserInterface.py" line="3674" />
+      <location filename="../UI/UserInterface.py" line="3673" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3678" />
-      <source>Open Qt6 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3680" />
+      <source>Open Qt6 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3682" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3693" />
-      <location filename="../UI/UserInterface.py" line="3692" />
+      <location filename="../UI/UserInterface.py" line="3695" />
+      <location filename="../UI/UserInterface.py" line="3694" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3699" />
-      <source>Open PyQt5 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Open PyQt5 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3714" />
-      <location filename="../UI/UserInterface.py" line="3713" />
+      <location filename="../UI/UserInterface.py" line="3716" />
+      <location filename="../UI/UserInterface.py" line="3715" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3720" />
-      <source>Open PyQt6 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3722" />
+      <source>Open PyQt6 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3724" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3740" />
-      <location filename="../UI/UserInterface.py" line="3739" />
+      <location filename="../UI/UserInterface.py" line="3742" />
+      <location filename="../UI/UserInterface.py" line="3741" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3746" />
-      <source>Open Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3748" />
+      <source>Open Python 3 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3750" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3767" />
-      <location filename="../UI/UserInterface.py" line="3766" />
+      <location filename="../UI/UserInterface.py" line="3769" />
+      <location filename="../UI/UserInterface.py" line="3768" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3773" />
-      <source>Open eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3775" />
+      <source>Open eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3777" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3793" />
-      <location filename="../UI/UserInterface.py" line="3792" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3799" />
-      <source>Open PySide2 Documentation</source>
+      <location filename="../UI/UserInterface.py" line="3795" />
+      <location filename="../UI/UserInterface.py" line="3794" />
+      <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3801" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3819" />
-      <location filename="../UI/UserInterface.py" line="3818" />
-      <source>PySide6 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3825" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3827" />
+      <location filename="../UI/UserInterface.py" line="3803" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3863" />
+      <location filename="../UI/UserInterface.py" line="3839" />
       <source>Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3944" />
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>E&amp;xtras</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3954" />
+      <location filename="../UI/UserInterface.py" line="3930" />
       <source>Wi&amp;zards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3948" />
       <source>P&amp;lugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="3957" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3990" />
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="3983" />
       <source>Select Tool Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4018" />
+      <location filename="../UI/UserInterface.py" line="3994" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4051" />
+      <location filename="../UI/UserInterface.py" line="4027" />
       <source>&amp;Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4060" />
+      <location filename="../UI/UserInterface.py" line="4036" />
       <source>&amp;Windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4064" />
+      <location filename="../UI/UserInterface.py" line="4040" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4068" />
+      <location filename="../UI/UserInterface.py" line="4044" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4087" />
+      <location filename="../UI/UserInterface.py" line="4063" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4106" />
+      <location filename="../UI/UserInterface.py" line="4082" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4090" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="4096" />
       <source>&amp;Toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4133" />
+      <location filename="../UI/UserInterface.py" line="4109" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4190" />
-      <location filename="../UI/UserInterface.py" line="4173" />
+      <location filename="../UI/UserInterface.py" line="4164" />
+      <location filename="../UI/UserInterface.py" line="4147" />
       <source>Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4192" />
-      <location filename="../UI/UserInterface.py" line="4177" />
+      <location filename="../UI/UserInterface.py" line="4166" />
+      <location filename="../UI/UserInterface.py" line="4151" />
       <source>Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6361" />
-      <location filename="../UI/UserInterface.py" line="4193" />
-      <location filename="../UI/UserInterface.py" line="4178" />
+      <location filename="../UI/UserInterface.py" line="6335" />
+      <location filename="../UI/UserInterface.py" line="4167" />
+      <location filename="../UI/UserInterface.py" line="4152" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4194" />
-      <location filename="../UI/UserInterface.py" line="4179" />
+      <location filename="../UI/UserInterface.py" line="4168" />
+      <location filename="../UI/UserInterface.py" line="4153" />
       <source>Profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4195" />
-      <location filename="../UI/UserInterface.py" line="4180" />
+      <location filename="../UI/UserInterface.py" line="4169" />
+      <location filename="../UI/UserInterface.py" line="4154" />
       <source>Plugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4191" />
+      <location filename="../UI/UserInterface.py" line="4165" />
       <source>Unittest</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4368" />
+      <location filename="../UI/UserInterface.py" line="4342" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4377" />
+      <location filename="../UI/UserInterface.py" line="4351" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4386" />
+      <location filename="../UI/UserInterface.py" line="4360" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4395" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4404" />
+      <location filename="../UI/UserInterface.py" line="4378" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
+      <location filename="../UI/UserInterface.py" line="4387" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4427" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4501" />
-      <location filename="../UI/UserInterface.py" line="4460" />
+      <location filename="../UI/UserInterface.py" line="4475" />
+      <location filename="../UI/UserInterface.py" line="4434" />
       <source>External Tools/{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4609" />
+      <location filename="../UI/UserInterface.py" line="4583" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4679" />
+      <location filename="../UI/UserInterface.py" line="4653" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4683" />
+      <location filename="../UI/UserInterface.py" line="4657" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4739" />
+      <location filename="../UI/UserInterface.py" line="4713" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5048" />
+      <source>Restart application</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5049" />
+      <source>The application needs to be restarted. Do it now?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5073" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5074" />
-      <source>Restart application</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5075" />
-      <source>The application needs to be restarted. Do it now?</source>
+      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+
+Shall the upgrade be done now?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5098" />
+      <source>Upgrade Eric</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5099" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5100" />
-      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5124" />
-      <source>Upgrade Eric</source>
+      <source>Upgrade Eric and PyQt6</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5125" />
-      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
-
-Shall the upgrade be done now?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5150" />
-      <source>Upgrade Eric and PyQt6</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5151" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5213" />
+      <location filename="../UI/UserInterface.py" line="5187" />
       <source>&amp;Builtin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5233" />
+      <location filename="../UI/UserInterface.py" line="5207" />
       <source>&amp;Plugin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5210" />
+      <source>&amp;User Tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5236" />
-      <source>&amp;User Tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5262" />
       <source>Configure Tool Groups ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5266" />
+      <location filename="../UI/UserInterface.py" line="5240" />
       <source>Configure current Tool Group ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5305" />
-      <location filename="../UI/UserInterface.py" line="5285" />
+      <location filename="../UI/UserInterface.py" line="5279" />
+      <location filename="../UI/UserInterface.py" line="5259" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5381" />
+      <location filename="../UI/UserInterface.py" line="5355" />
       <source>&amp;Show all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5383" />
+      <location filename="../UI/UserInterface.py" line="5357" />
       <source>&amp;Hide all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6498" />
-      <location filename="../UI/UserInterface.py" line="6487" />
-      <location filename="../UI/UserInterface.py" line="6439" />
-      <location filename="../UI/UserInterface.py" line="6429" />
-      <location filename="../UI/UserInterface.py" line="6252" />
-      <location filename="../UI/UserInterface.py" line="6242" />
-      <location filename="../UI/UserInterface.py" line="6184" />
-      <location filename="../UI/UserInterface.py" line="6174" />
+      <location filename="../UI/UserInterface.py" line="6472" />
+      <location filename="../UI/UserInterface.py" line="6461" />
+      <location filename="../UI/UserInterface.py" line="6413" />
+      <location filename="../UI/UserInterface.py" line="6403" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6216" />
+      <location filename="../UI/UserInterface.py" line="6158" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <source>Problem</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6499" />
-      <location filename="../UI/UserInterface.py" line="6488" />
-      <location filename="../UI/UserInterface.py" line="6440" />
-      <location filename="../UI/UserInterface.py" line="6430" />
-      <location filename="../UI/UserInterface.py" line="6253" />
-      <location filename="../UI/UserInterface.py" line="6243" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6175" />
+      <location filename="../UI/UserInterface.py" line="6473" />
+      <location filename="../UI/UserInterface.py" line="6462" />
+      <location filename="../UI/UserInterface.py" line="6414" />
+      <location filename="../UI/UserInterface.py" line="6404" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6740" />
-      <location filename="../UI/UserInterface.py" line="6651" />
-      <location filename="../UI/UserInterface.py" line="6534" />
-      <location filename="../UI/UserInterface.py" line="6511" />
-      <location filename="../UI/UserInterface.py" line="6452" />
-      <location filename="../UI/UserInterface.py" line="6399" />
-      <location filename="../UI/UserInterface.py" line="6377" />
-      <location filename="../UI/UserInterface.py" line="6328" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6275" />
-      <location filename="../UI/UserInterface.py" line="6216" />
-      <location filename="../UI/UserInterface.py" line="6207" />
+      <location filename="../UI/UserInterface.py" line="6714" />
+      <location filename="../UI/UserInterface.py" line="6625" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6302" />
+      <location filename="../UI/UserInterface.py" line="6293" />
+      <location filename="../UI/UserInterface.py" line="6258" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6190" />
+      <location filename="../UI/UserInterface.py" line="6181" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6208" />
+      <location filename="../UI/UserInterface.py" line="6182" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6191" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6250" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6285" />
+      <location filename="../UI/UserInterface.py" line="6259" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6320" />
+      <location filename="../UI/UserInterface.py" line="6294" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6303" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6362" />
+      <location filename="../UI/UserInterface.py" line="6336" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6378" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6374" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6453" />
+      <location filename="../UI/UserInterface.py" line="6427" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6512" />
+      <location filename="../UI/UserInterface.py" line="6486" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6535" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6632" />
+      <location filename="../UI/UserInterface.py" line="6606" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6652" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6685" />
-      <location filename="../UI/UserInterface.py" line="6675" />
+      <location filename="../UI/UserInterface.py" line="6659" />
+      <location filename="../UI/UserInterface.py" line="6649" />
       <source>External Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6676" />
+      <location filename="../UI/UserInterface.py" line="6650" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6686" />
+      <location filename="../UI/UserInterface.py" line="6660" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6723" />
+      <location filename="../UI/UserInterface.py" line="6697" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6741" />
+      <location filename="../UI/UserInterface.py" line="6715" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6820" />
+      <location filename="../UI/UserInterface.py" line="6794" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7108" />
-      <location filename="../UI/UserInterface.py" line="7046" />
-      <location filename="../UI/UserInterface.py" line="7002" />
-      <location filename="../UI/UserInterface.py" line="6928" />
-      <location filename="../UI/UserInterface.py" line="6864" />
+      <location filename="../UI/UserInterface.py" line="7082" />
+      <location filename="../UI/UserInterface.py" line="7020" />
+      <location filename="../UI/UserInterface.py" line="6976" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6838" />
       <source>Documentation Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7109" />
-      <location filename="../UI/UserInterface.py" line="7047" />
-      <location filename="../UI/UserInterface.py" line="7003" />
-      <location filename="../UI/UserInterface.py" line="6929" />
-      <location filename="../UI/UserInterface.py" line="6865" />
+      <location filename="../UI/UserInterface.py" line="7083" />
+      <location filename="../UI/UserInterface.py" line="7021" />
+      <location filename="../UI/UserInterface.py" line="6977" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6839" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7090" />
-      <location filename="../UI/UserInterface.py" line="6972" />
+      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="6946" />
       <source>Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6973" />
+      <location filename="../UI/UserInterface.py" line="6947" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7091" />
+      <location filename="../UI/UserInterface.py" line="7065" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7270" />
-      <location filename="../UI/UserInterface.py" line="7206" />
+      <location filename="../UI/UserInterface.py" line="7244" />
+      <location filename="../UI/UserInterface.py" line="7180" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7207" />
+      <location filename="../UI/UserInterface.py" line="7181" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7271" />
+      <location filename="../UI/UserInterface.py" line="7245" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7595" />
+      <location filename="../UI/UserInterface.py" line="7557" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7601" />
+      <location filename="../UI/UserInterface.py" line="7575" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7805" />
+      <location filename="../UI/UserInterface.py" line="7779" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7808" />
+      <location filename="../UI/UserInterface.py" line="7782" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7845" />
+      <location filename="../UI/UserInterface.py" line="7819" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7846" />
+      <location filename="../UI/UserInterface.py" line="7820" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7869" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7894" />
-      <location filename="../UI/UserInterface.py" line="7871" />
+      <location filename="../UI/UserInterface.py" line="7868" />
+      <location filename="../UI/UserInterface.py" line="7845" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8400" />
+      <location filename="../UI/UserInterface.py" line="8374" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8401" />
+      <location filename="../UI/UserInterface.py" line="8375" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8598" />
+      <location filename="../UI/UserInterface.py" line="8550" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8551" />
+      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8599" />
-      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
       <source>First time usage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8600" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8622" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8790" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8791" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_es.ts	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/i18n/eric7_es.ts	Sun Apr 13 14:46:18 2025 +0200
@@ -1703,47 +1703,47 @@
   <context>
     <name>BackgroundService</name>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="168" />
+      <location filename="../Utilities/BackgroundService.py" line="169" />
       <source>{0} not configured.</source>
       <translation>{0} no configurado.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="230" />
-      <source>Initialization of Background Service</source>
-      <translation>Inicialización de Servicio en Segundo Plano</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>Initialization of Background Service</source>
+      <translation>Inicialización de Servicio en Segundo Plano</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="232" />
       <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Inicialización de Servicio en Segundo Plano &lt;b&gt;{0}&lt;/b&gt; fallida.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="244" />
-      <source>Restart background client?</source>
-      <translation>¿Reiniciar cliente en background?</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="245" />
+      <source>Restart background client?</source>
+      <translation>¿Reiniciar cliente en background?</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="246" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El cliente en background para &lt;b&gt;{0}&lt;/b&gt; se ha detenido debido a una excepción. Éste es utilizado por varios plug-ins como los distintos comprobadores.&lt;/p&gt;&lt;p&gt;Seleccionar&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Si'&lt;/b&gt; para reiniciar el cliente, abortando el último trabajo&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Reintentar'&lt;/b&gt; para reiniciar el cliente y el último trabajo&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; para dejar el cliente sin iniciar.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Nota: El cliente se puede reiniciar abriendo y aceptando el diálogo de preferencias o recargando/cambiando el proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="274" />
+      <location filename="../Utilities/BackgroundService.py" line="275" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation>Un error en el cliente en background de Eric ha detenido el servicio.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="515" />
+      <location filename="../Utilities/BackgroundService.py" line="516" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation>El cliente en background de Eric ha desconectado debido a una razón desconocida.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="524" />
-      <source>Background client disconnected.</source>
-      <translation>Cliente en background desconectado.</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="525" />
+      <source>Background client disconnected.</source>
+      <translation>Cliente en background desconectado.</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="526" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation>El cliente en background para &lt;b&gt;{0}&lt;/b&gt; ha desconectado por razón desconocida.&lt;br&gt;¿Reiniciarlo?</translation>
     </message>
@@ -3735,7 +3735,7 @@
       <translation>Pulse para limpiar la lista de hosts</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="526" />
+      <location filename="../Cooperation/ChatWidget.py" line="528" />
       <location filename="../Cooperation/ChatWidget.ui" line="0" />
       <source>Clear</source>
       <translation>Limpiar</translation>
@@ -3766,156 +3766,156 @@
       <translation>Muestra el estado del servidor</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="322" />
+      <location filename="../Cooperation/ChatWidget.py" line="324" />
       <location filename="../Cooperation/ChatWidget.py" line="85" />
       <source>Start Server</source>
       <translation>Iniciar servidor</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="153" />
+      <location filename="../Cooperation/ChatWidget.py" line="155" />
       <source>! Unknown command: {0}
 </source>
       <translation>! Comando desconocido: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="176" />
+      <location filename="../Cooperation/ChatWidget.py" line="178" />
       <source>* {0} has joined.
 </source>
       <translation>* {0} se ha unido.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="193" />
+      <location filename="../Cooperation/ChatWidget.py" line="195" />
       <source>New User</source>
       <translation>Nuevo Usuario</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="194" />
+      <location filename="../Cooperation/ChatWidget.py" line="196" />
       <source>{0} has joined.</source>
       <translation>{0} se ha unido.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="217" />
+      <location filename="../Cooperation/ChatWidget.py" line="219" />
       <source>* {0} has left.
 </source>
       <translation>* {0} ha abandonado el chat.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="226" />
+      <location filename="../Cooperation/ChatWidget.py" line="228" />
       <source>User Left</source>
       <translation>El Usuario Se Ha Ido</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="227" />
+      <location filename="../Cooperation/ChatWidget.py" line="229" />
       <source>{0} has left.</source>
       <translation>{0} se ha ido.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="255" />
+      <location filename="../Cooperation/ChatWidget.py" line="257" />
       <source>Message from &lt;{0}&gt;</source>
       <translation>Mensaje de &lt;{0}&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="330" />
+      <location filename="../Cooperation/ChatWidget.py" line="332" />
       <source>Stop Server</source>
       <translation>Detener servidor</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="336" />
+      <location filename="../Cooperation/ChatWidget.py" line="338" />
       <source>! Server Error: {0}
 </source>
       <translation>! Error del Servidor: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="347" />
+      <location filename="../Cooperation/ChatWidget.py" line="349" />
       <source>Disconnect</source>
       <translation>Desconectar</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="351" />
+      <location filename="../Cooperation/ChatWidget.py" line="353" />
       <source>Connect</source>
       <translation>Conectar</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="515" />
+      <location filename="../Cooperation/ChatWidget.py" line="517" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="519" />
+      <location filename="../Cooperation/ChatWidget.py" line="521" />
       <source>Cut all</source>
       <translation>Cortar todo</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="522" />
+      <location filename="../Cooperation/ChatWidget.py" line="524" />
       <source>Copy all</source>
       <translation>Copiar todo</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="530" />
+      <location filename="../Cooperation/ChatWidget.py" line="532" />
       <source>Save</source>
       <translation>Guardar</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="588" />
-      <location filename="../Cooperation/ChatWidget.py" line="573" />
+      <location filename="../Cooperation/ChatWidget.py" line="590" />
+      <location filename="../Cooperation/ChatWidget.py" line="575" />
       <source>Save Chat</source>
       <translation>Guardar Chat</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="575" />
+      <location filename="../Cooperation/ChatWidget.py" line="577" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="589" />
+      <location filename="../Cooperation/ChatWidget.py" line="591" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="604" />
+      <location filename="../Cooperation/ChatWidget.py" line="606" />
       <source>Error saving Chat</source>
       <translation>Error al guardar el Chat</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="605" />
+      <location filename="../Cooperation/ChatWidget.py" line="607" />
       <source>&lt;p&gt;The chat contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Los contenidos del chat no se han podido guardar en &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="644" />
+      <location filename="../Cooperation/ChatWidget.py" line="646" />
       <source>Kick User</source>
       <translation>Kickear al usuario</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="648" />
+      <location filename="../Cooperation/ChatWidget.py" line="650" />
       <source>Ban User</source>
       <translation>Banear usuario</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="652" />
+      <location filename="../Cooperation/ChatWidget.py" line="654" />
       <source>Ban and Kick User</source>
       <translation>Banear y Kickear Usuario</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="683" />
+      <location filename="../Cooperation/ChatWidget.py" line="685" />
       <source>* {0} has been kicked.
 </source>
       <translation>* {0} ha sido kickeado.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="700" />
+      <location filename="../Cooperation/ChatWidget.py" line="702" />
       <source>* {0} has been banned.
 </source>
       <translation>* {0} ha sido baneado.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="717" />
+      <location filename="../Cooperation/ChatWidget.py" line="719" />
       <source>* {0} has been banned and kicked.
 </source>
       <translation>* {0} ha sido baneado y kickeado.
@@ -4868,32 +4868,32 @@
   <context>
     <name>CodeDocumentationViewer</name>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="220" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="222" />
       <source>Code Info Provider:</source>
       <translation>Proveedor de Info del Código:</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="238" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="240" />
       <source>Select the code info provider</source>
       <translation>Seleccionar el proveedor de info del código</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="239" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="241" />
       <source>&lt;disabled&gt;</source>
       <translation>&lt;deshabilitado&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="420" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="422" />
       <source>No documentation available</source>
       <translation>No hay documentación disponible</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="441" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="443" />
       <source>No source code documentation provider has been registered. This function has been disabled.</source>
       <translation>No hay registrado ningún proveedor de documentación de código. Esta función se ha deshabilitado.</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="449" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="451" />
       <source>This function has been disabled.</source>
       <translation>Esta función se ha deshabilitado.</translation>
     </message>
@@ -8813,10 +8813,10 @@
       <translation>&lt;p&gt;La actualizacion de la lista de slots ha fallado porque se han recibido datos no validos.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Datos: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="608" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="505" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="467" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="455" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="604" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="501" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="463" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="451" />
       <location filename="../Project/CreateDialogCodeDialog.py" line="419" />
       <source>Code Generation</source>
       <translation>Generación de Código</translation>
@@ -8827,22 +8827,22 @@
       <translation>&lt;p&gt;La generación de código para el lenguaje de proyecto "{0}" no está soportada.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="456" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="452" />
       <source>&lt;p&gt;No code template file available for project type "{0}".&lt;/p&gt;</source>
       <translation>&lt;p&gt;No hay plantillas de archivo para proyectos del tipo  "{0}".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="468" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="464" />
       <source>&lt;p&gt;Could not open the code template file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido cargar el archivo con la plantilla de código "{0}".&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="506" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="502" />
       <source>&lt;p&gt;Could not open the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido abrir el archivo de codigo fuente "{0}".&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="609" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="605" />
       <source>&lt;p&gt;Could not write the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido escribir en el archivo de codigo fuente "{0}".&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
@@ -9350,676 +9350,676 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="207" />
+      <location filename="../Debugger/DebugUI.py" line="210" />
       <source>Notification</source>
       <translation>Notificación</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="234" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="237" />
       <source>Run Script</source>
       <translation>Ejecutar Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="236" />
+      <location filename="../Debugger/DebugUI.py" line="239" />
       <source>&amp;Run Script...</source>
       <translation>&amp;Ejecutar script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="242" />
+      <location filename="../Debugger/DebugUI.py" line="245" />
       <source>Run the current Script</source>
       <translation>Ejecutar el script actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="244" />
+      <location filename="../Debugger/DebugUI.py" line="247" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ejecutar Script&lt;/b&gt;&lt;p&gt;Establece los parámetros de la línea de comandos y ejecuta el script fuera del depurador. Si tiene cambios sin guardar, deben ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2386" />
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="255" />
+      <location filename="../Debugger/DebugUI.py" line="2389" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="258" />
       <source>Run Project</source>
       <translation>Ejecutar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="257" />
+      <location filename="../Debugger/DebugUI.py" line="260" />
       <source>Run &amp;Project...</source>
       <translation>Ejecutar &amp;Proyecto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="263" />
+      <location filename="../Debugger/DebugUI.py" line="266" />
       <source>Run the current Project</source>
       <translation>Ejecutar el proyecto Actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="265" />
+      <location filename="../Debugger/DebugUI.py" line="268" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ejecutar Proyecto&lt;/b&gt;&lt;p&gt;Establece los argumentos de la línea de comandos y ejecuta el proyecto actual fuera del depurador. Si los archivos del proyecto actual tienen archivos sin guardar, deben ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="277" />
+      <location filename="../Debugger/DebugUI.py" line="280" />
       <source>Coverage run of Script</source>
       <translation>Ejecutar Script con definición de cobertura</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="279" />
+      <location filename="../Debugger/DebugUI.py" line="282" />
       <source>Coverage run of Script...</source>
       <translation>Ejecutar Script con definición de cobertura...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="286" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Llevar a cabo una ejecución con definición de cobertura del Script actual</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Llevar a cabo una ejecución con definición de cobertura del Script actual</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ejecutar Script con definición de cobertura&lt;/b&gt;&lt;p&gt;Establece los argumentos de línea de comando y ejecuta el script bajo el control de una herramienta de análisis de cobertura. Si el archivo tiene cambios sin guardar, pueden ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="300" />
+      <location filename="../Debugger/DebugUI.py" line="303" />
       <source>Coverage run of Project</source>
       <translation>Ejecutar el Proyecto con definición de cobertura</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="302" />
+      <location filename="../Debugger/DebugUI.py" line="305" />
       <source>Coverage run of Project...</source>
       <translation>Ejecutar el Proyecto con definición de cobertura...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="309" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>Llevar a cabo una ejecución con definición de cobertura del Proyecto actual</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>Llevar a cabo una ejecución con definición de cobertura del Proyecto actual</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ejecutar Proyecto con definición de cobertura&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comando y ejecutar el proyecto actual bajo el control de una herramienta de análisis de cobertura. Si hay archivos con cambios sin guardar, se pueden guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="324" />
+      <location filename="../Debugger/DebugUI.py" line="327" />
       <source>Profile Script</source>
       <translation>Hacer Profiling del Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="326" />
+      <location filename="../Debugger/DebugUI.py" line="329" />
       <source>Profile Script...</source>
       <translation>Hacer Profiling del Script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="332" />
+      <location filename="../Debugger/DebugUI.py" line="335" />
       <source>Profile the current Script</source>
       <translation>Hacer Profiling del Script actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="334" />
+      <location filename="../Debugger/DebugUI.py" line="337" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hacer Profiling del Script&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y hacer profiling del script. Si el archivo tiene cambios sin guardar, se pueden guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="344" />
+      <location filename="../Debugger/DebugUI.py" line="347" />
       <source>Profile Project</source>
       <translation>Hacer Profiling del Proyecto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="346" />
+      <location filename="../Debugger/DebugUI.py" line="349" />
       <source>Profile Project...</source>
       <translation>Hacer Profiling del Proyecto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="352" />
+      <location filename="../Debugger/DebugUI.py" line="355" />
       <source>Profile the current Project</source>
       <translation>Hacer Profiling del Proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="354" />
+      <location filename="../Debugger/DebugUI.py" line="357" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hacer Profiling del Proyecto&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y hacer profiling del proyecto actual. Si hay archivos que tienen cambios sin guardar, se puede guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="365" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="368" />
       <source>Debug Script</source>
       <translation>Depurar Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="367" />
+      <location filename="../Debugger/DebugUI.py" line="370" />
       <source>&amp;Debug Script...</source>
       <translation>&amp;Depurar script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="373" />
+      <location filename="../Debugger/DebugUI.py" line="376" />
       <source>Debug the current Script</source>
       <translation>Depurar el script actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="375" />
+      <location filename="../Debugger/DebugUI.py" line="378" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Depurar Script&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y establecer la línea actual en la ventana actual de edición como la primera sentencia Python ejecutable. Si el archivo tiene cambios sin guardar, se puede guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2579" />
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="387" />
+      <location filename="../Debugger/DebugUI.py" line="2582" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="390" />
       <source>Debug Project</source>
       <translation>Depurar proyecto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="389" />
+      <location filename="../Debugger/DebugUI.py" line="392" />
       <source>Debug &amp;Project...</source>
       <translation>Depurar &amp;proyecto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="395" />
+      <location filename="../Debugger/DebugUI.py" line="398" />
       <source>Debug the current Project</source>
       <translation>Depurar el proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="397" />
+      <location filename="../Debugger/DebugUI.py" line="400" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Depurar Proyecto&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y establecer la línea actual en la ventana actual de edición como la primera sentencia Python ejecutable. Si hay archivos que tienen cambios sin guardar, se pueden guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2895" />
-      <location filename="../Debugger/DebugUI.py" line="411" />
-      <location filename="../Debugger/DebugUI.py" line="409" />
+      <location filename="../Debugger/DebugUI.py" line="2898" />
+      <location filename="../Debugger/DebugUI.py" line="414" />
+      <location filename="../Debugger/DebugUI.py" line="412" />
       <source>Restart</source>
       <translation>Reiniciar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="417" />
+      <location filename="../Debugger/DebugUI.py" line="420" />
       <source>Restart the last debugged script</source>
       <translation>Reiniciar el último script depurado</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="419" />
+      <location filename="../Debugger/DebugUI.py" line="422" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reiniciar&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y la línea actual para que sea la primera sentencia del script que se depuró en último lugar. Si hay cambios sin guardar, pueden ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="628" />
-      <location filename="../Debugger/DebugUI.py" line="433" />
-      <location filename="../Debugger/DebugUI.py" line="431" />
+      <location filename="../Debugger/DebugUI.py" line="631" />
+      <location filename="../Debugger/DebugUI.py" line="436" />
+      <location filename="../Debugger/DebugUI.py" line="434" />
       <source>Stop</source>
       <translation>Detener</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="439" />
+      <location filename="../Debugger/DebugUI.py" line="442" />
       <source>Stop the running script.</source>
       <translation>Detener el script en ejecución.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="441" />
+      <location filename="../Debugger/DebugUI.py" line="444" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Detener&lt;/b&gt;&lt;p&gt;Esto detiene el script que está corriendo en el backend del depurador.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="452" />
+      <location filename="../Debugger/DebugUI.py" line="455" />
       <source>Continue</source>
       <translation>Continuar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="454" />
+      <location filename="../Debugger/DebugUI.py" line="457" />
       <source>&amp;Continue</source>
       <translation>&amp;Continuar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="460" />
+      <location filename="../Debugger/DebugUI.py" line="463" />
       <source>Continue running the program from the current line</source>
       <translation>Continúa el programa a partir de la línea actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="462" />
+      <location filename="../Debugger/DebugUI.py" line="465" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuar&lt;/b&gt;&lt;p&gt;Continúa la ejecución del programa a partir de la línea actual. El programa se detendrá al terminar o al alcanzar un breakpoint.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="473" />
+      <location filename="../Debugger/DebugUI.py" line="476" />
       <source>Continue to Cursor</source>
       <translation>Continuar hasta el cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="475" />
+      <location filename="../Debugger/DebugUI.py" line="478" />
       <source>Continue &amp;To Cursor</source>
       <translation>Continuar &amp;hasta el cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="482" />
+      <location filename="../Debugger/DebugUI.py" line="485" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="488" />
+      <location filename="../Debugger/DebugUI.py" line="491" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuar hasta el Cursor&lt;/b&gt;&lt;p&gt;Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="498" />
+      <location filename="../Debugger/DebugUI.py" line="501" />
       <source>Continue Until</source>
       <translation>Continuar Hasta</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="500" />
+      <location filename="../Debugger/DebugUI.py" line="503" />
       <source>Continue &amp;Until</source>
       <translation>Contin&amp;uar Hasta</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="507" />
+      <location filename="../Debugger/DebugUI.py" line="510" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation>Continuar la ejecución del programa desde la línea actual hasta la posición del cursor o hasta abandonar el marco actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="513" />
+      <location filename="../Debugger/DebugUI.py" line="516" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuar Hasta&lt;/b&gt;&lt;p&gt;Continuar la ejecución del programa desde la línea actual hasta la posición del cursor o hasta abandonar el marco actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="524" />
+      <location filename="../Debugger/DebugUI.py" line="527" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation>Mover el Puntero de Instrucción hasta el Cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="526" />
+      <location filename="../Debugger/DebugUI.py" line="529" />
       <source>&amp;Jump To Cursor</source>
       <translation>Saltar al &amp;Cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="533" />
+      <location filename="../Debugger/DebugUI.py" line="536" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation>Omitir el código desde la línea actual hasta la posición actual del cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="539" />
+      <location filename="../Debugger/DebugUI.py" line="542" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mover Puntero de Instrucción hasta el Cursor&lt;/b&gt;&lt;p&gt;Mover el puntero interno de instrucción de Python hasta la posición actual del cursor sin executar el código entre ambos puntos.&lt;/p&gt;&lt;p&gt;No es posible saltar fuera de una función o saltar a un bloque de código, por ej. un bucle. En estos casos, se imprime un error de mensaje a la ventana de log.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="553" />
+      <location filename="../Debugger/DebugUI.py" line="556" />
       <source>Single Step</source>
       <translation>Un paso</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="555" />
+      <location filename="../Debugger/DebugUI.py" line="558" />
       <source>Sin&amp;gle Step</source>
       <translation>Un &amp;paso</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="561" />
+      <location filename="../Debugger/DebugUI.py" line="564" />
       <source>Execute a single Python statement</source>
       <translation>Ejecuta una sentencia python</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="563" />
+      <location filename="../Debugger/DebugUI.py" line="566" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Paso Único&lt;/b&gt;&lt;p&gt;Ejecutar una única sentencia Python. Si la sentencia es un &lt;tt&gt;import&lt;/tt&gt;, un constructor de clase, o un método o llamada a función entonces el control se devuelve al depurador en la siguiente sentencia.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="575" />
+      <location filename="../Debugger/DebugUI.py" line="578" />
       <source>Step Over</source>
       <translation>Saltar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="577" />
+      <location filename="../Debugger/DebugUI.py" line="580" />
       <source>Step &amp;Over</source>
       <translation>Salta&amp;r</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="584" />
+      <location filename="../Debugger/DebugUI.py" line="587" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Ejecutar una única sentencia Python sin salir del marco actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="590" />
+      <location filename="../Debugger/DebugUI.py" line="593" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Saltar&lt;/b&gt;&lt;p&gt;Eejcutar una única sentencia Python sin salir del marco actual. Si la sentencia es un &lt;tt&gt;import&lt;/tt&gt;, un constructor de clase, o un método o llamada a función, el control se devuelve al depurador despues de que la sentencia se haya completado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="603" />
+      <location filename="../Debugger/DebugUI.py" line="606" />
       <source>Step Out</source>
       <translation>Paso atras</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="605" />
+      <location filename="../Debugger/DebugUI.py" line="608" />
       <source>Step Ou&amp;t</source>
       <translation>Paso &amp;atras</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="612" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Ejecutar sentencia Python hasta abandonar el marco actual</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Ejecutar sentencia Python hasta abandonar el marco actual</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Saltar fuera&lt;/b&gt;&lt;p&gt;Ejecuta sentencias Python hasta salir del marco actual. Si las sentencias están dentro de una sentencia &lt;tt&gt;import&lt;/tt&gt;, un constructor de clase, o un método o llamada a función, el control se devuelve al depurador despues de que el marco actual ha sido abandonado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="630" />
+      <location filename="../Debugger/DebugUI.py" line="633" />
       <source>&amp;Stop</source>
       <translation>&amp;Parar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="636" />
+      <location filename="../Debugger/DebugUI.py" line="639" />
       <source>Stop debugging</source>
       <translation>Detener depuración</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="638" />
+      <location filename="../Debugger/DebugUI.py" line="641" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Detener&lt;/b&gt;&lt;p&gt;Detener la sesión de depuración en ejecución.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="644" />
+      <location filename="../Debugger/DebugUI.py" line="647" />
       <source>Variables Type Filter</source>
       <translation>Fitro por tipo de variable</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="645" />
+      <location filename="../Debugger/DebugUI.py" line="648" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>&amp;Fitro por tipo de variable...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="651" />
+      <location filename="../Debugger/DebugUI.py" line="654" />
       <source>Configure variables type filter</source>
       <translation>Configurar Fitro por tipo de variable</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="653" />
+      <location filename="../Debugger/DebugUI.py" line="656" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fitro por tipo de variable&lt;/b&gt;&lt;p&gt;Configurar el fitro por tipo de variable. Durante una sesión de depuración, solo se muestran en las ventanas de variables locales o globales los tipos de variable que no han sido seleccionados.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="664" />
+      <location filename="../Debugger/DebugUI.py" line="667" />
       <source>Exceptions Filter</source>
       <translation>Filtro de excepciones</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="665" />
+      <location filename="../Debugger/DebugUI.py" line="668" />
       <source>&amp;Exceptions Filter...</source>
       <translation>Filtro de e&amp;xcepciones...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="671" />
+      <location filename="../Debugger/DebugUI.py" line="674" />
       <source>Configure exceptions filter</source>
       <translation>Configurar Filtro de excepciones</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="673" />
+      <location filename="../Debugger/DebugUI.py" line="676" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtro de excepciones&lt;/b&gt;&lt;p&gt;Configurar el filtro de excepciones. Durante una sesión de depuración solo se resaltan los tipos de excepción de la lista.&lt;/p&gt;&lt;p&gt;Por favor, note que se resaltarán todas las excepciones que no sean gestionadas, independientemente de la lista de filtros.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="685" />
+      <location filename="../Debugger/DebugUI.py" line="688" />
       <source>Ignored Exceptions</source>
       <translation>Excepciones Ignoradas</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="686" />
+      <location filename="../Debugger/DebugUI.py" line="689" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>Excepciones &amp;Ignoradas...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="692" />
+      <location filename="../Debugger/DebugUI.py" line="695" />
       <source>Configure ignored exceptions</source>
       <translation>Configurar excepciones ignoradas</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="694" />
+      <location filename="../Debugger/DebugUI.py" line="697" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Excepciones ignoradas&lt;/b&gt;&lt;p&gt;Configurar las excepciones ignoradas. Durante una sesión de depuración se resaltarán solamente los tipos de excepción que no están en la lista.&lt;/p&gt;&lt;p&gt;Por favor, note que las excepciones no gestionadas no pueden ser ignoradas..&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="716" />
-      <location filename="../Debugger/DebugUI.py" line="710" />
-      <location filename="../Debugger/DebugUI.py" line="708" />
+      <location filename="../Debugger/DebugUI.py" line="719" />
+      <location filename="../Debugger/DebugUI.py" line="713" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Toggle Breakpoint</source>
       <translation>Alternar Punto de Interrupción (Breakpoint)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="714" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="718" />
+      <location filename="../Debugger/DebugUI.py" line="721" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Alternar Punto de Interrupción&lt;/b&gt;&lt;p&gt;Inserta o elimina un punto de interrupción en la línea actual del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="736" />
-      <location filename="../Debugger/DebugUI.py" line="728" />
+      <location filename="../Debugger/DebugUI.py" line="739" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Edit Breakpoint</source>
       <translation>Editar Punto de Interrupción (Breakpoint)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="730" />
+      <location filename="../Debugger/DebugUI.py" line="733" />
       <source>Edit Breakpoint...</source>
       <translation>Editar Punto de Interrupción (Breakpoint)...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="734" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="738" />
+      <location filename="../Debugger/DebugUI.py" line="741" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editar Punto de Interrupción (Breakpoint)&lt;/b&gt;&lt;p&gt;Abre un diálogo para editar las propiedades de los breakpoints. Se aplica a la línea actual del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="756" />
-      <location filename="../Debugger/DebugUI.py" line="750" />
-      <location filename="../Debugger/DebugUI.py" line="748" />
+      <location filename="../Debugger/DebugUI.py" line="759" />
+      <location filename="../Debugger/DebugUI.py" line="753" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Next Breakpoint</source>
       <translation>Siguiente Punto de Interrupción (Breakpoint)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="754" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="758" />
+      <location filename="../Debugger/DebugUI.py" line="761" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Siguiente Breakpoint&lt;/b&gt;&lt;p&gt;Mueve el cursor al siguiente breakpoint.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="775" />
-      <location filename="../Debugger/DebugUI.py" line="769" />
-      <location filename="../Debugger/DebugUI.py" line="767" />
+      <location filename="../Debugger/DebugUI.py" line="778" />
+      <location filename="../Debugger/DebugUI.py" line="772" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Previous Breakpoint</source>
       <translation>Breakpoint (Punto de interrupción) Anterior</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="773" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="777" />
+      <location filename="../Debugger/DebugUI.py" line="780" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Punto de Interrupción (Breakpoint) Anterior&lt;/b&gt;&lt;p&gt;Mueve el cursor al anterior punto de interrupción.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="793" />
-      <location filename="../Debugger/DebugUI.py" line="787" />
-      <location filename="../Debugger/DebugUI.py" line="786" />
+      <location filename="../Debugger/DebugUI.py" line="796" />
+      <location filename="../Debugger/DebugUI.py" line="790" />
+      <location filename="../Debugger/DebugUI.py" line="789" />
       <source>Clear Breakpoints</source>
       <translation>Eliminar  Puntos de Interrupción (Breakpoints)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="795" />
+      <location filename="../Debugger/DebugUI.py" line="798" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eliminar Puntos de Interrupción (Breakpoints)&lt;/b&gt;&lt;p&gt;Elimina todos los puntos de interrupción del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="819" />
+      <location filename="../Debugger/DebugUI.py" line="822" />
       <source>&amp;Debug</source>
       <translation>&amp;Depurar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="821" />
+      <location filename="../Debugger/DebugUI.py" line="824" />
       <source>Sta&amp;rt</source>
       <translation>Inicia&amp;r</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="823" />
+      <location filename="../Debugger/DebugUI.py" line="826" />
       <source>&amp;Breakpoints</source>
       <translation>Puntos de interrupción (&amp;Breakpoints)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="866" />
-      <location filename="../Debugger/DebugUI.py" line="864" />
+      <location filename="../Debugger/DebugUI.py" line="869" />
+      <location filename="../Debugger/DebugUI.py" line="867" />
       <source>Start</source>
       <translation>Iniciar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="879" />
-      <location filename="../Debugger/DebugUI.py" line="877" />
+      <location filename="../Debugger/DebugUI.py" line="882" />
+      <location filename="../Debugger/DebugUI.py" line="880" />
       <source>Debug</source>
       <translation>Depurar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1342" />
+      <location filename="../Debugger/DebugUI.py" line="1345" />
       <source>Message: {0}</source>
       <translation>Mensaje: {0}</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1348" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El programa ha terminato con estado de salida {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1353" />
+      <location filename="../Debugger/DebugUI.py" line="1356" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; ha terminado con estado de salida {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1365" />
+      <location filename="../Debugger/DebugUI.py" line="1368" />
       <source>Program terminated</source>
       <translation>Programa terminado</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1401" />
+      <location filename="../Debugger/DebugUI.py" line="1404" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>El programa en depuración contiene un error de sintaxis no especificado.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1421" />
+      <location filename="../Debugger/DebugUI.py" line="1424" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; contiene el error de sintaxis &lt;b&gt;{1}&lt;/b&gt; en la línea&lt;b&gt;{2}&lt;/b&gt;, carácter &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1449" />
+      <location filename="../Debugger/DebugUI.py" line="1452" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Ha saltado una excepción que no ha sido manejada. Vea la ventana de shell para mas detalles.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1498" />
+      <location filename="../Debugger/DebugUI.py" line="1501" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El programa en depuración ha lanzado la excepción &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;Archivo: &lt;b&gt;{2}&lt;/b&gt;, Línea: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;¿Interrumpir aquí?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1516" />
+      <location filename="../Debugger/DebugUI.py" line="1519" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;El programa en depuración ha lanzado la excepción &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;Archivo: &lt;b&gt;{2}&lt;/b&gt;, Línea: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1532" />
+      <location filename="../Debugger/DebugUI.py" line="1535" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation>&lt;p&gt;El programa en depuración ha lanzado la excepción &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1594" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;El programa ha generado la señal "{0}".&lt;br/&gt;Archivo: &lt;b&gt;{1}&lt;/b&gt;, Línea: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1609" />
+      <location filename="../Debugger/DebugUI.py" line="1612" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>El programa en depuración ha terminado inesperadamente.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1670" />
+      <location filename="../Debugger/DebugUI.py" line="1673" />
       <source>No locals available.</source>
       <translation>No hay locals disponibles.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1717" />
+      <location filename="../Debugger/DebugUI.py" line="1720" />
       <source>Breakpoint Condition Error</source>
       <translation>Error en la condición del Breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1718" />
+      <location filename="../Debugger/DebugUI.py" line="1721" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La condición del punto de ruptura &lt;b&gt;{0},{1}&lt;/b&gt; tiene un error de sintaxis.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1779" />
+      <location filename="../Debugger/DebugUI.py" line="1782" />
       <source>Watch Expression Error</source>
       <translation>Error en la Expresión a Examinar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1780" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La expresión a examinar &lt;b&gt;{0}&lt;/b&gt; contiene un error de sintaxis.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1810" />
+      <location filename="../Debugger/DebugUI.py" line="1813" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Una expresión a examinar '&lt;b&gt;{0}&lt;/b&gt;' ya existe.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1815" />
+      <location filename="../Debugger/DebugUI.py" line="1818" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Una expresión a examinar '&lt;b&gt;{0}&lt;/b&gt;' para la variable &lt;b&gt;{1}&lt;/b&gt; ya existe.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1821" />
+      <location filename="../Debugger/DebugUI.py" line="1824" />
       <source>Watch expression already exists</source>
       <translation>La expresión a Examinar ya existe</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1986" />
-      <location filename="../Debugger/DebugUI.py" line="1977" />
+      <location filename="../Debugger/DebugUI.py" line="1989" />
+      <location filename="../Debugger/DebugUI.py" line="1980" />
       <source>Coverage Run of Project</source>
       <translation>Ejecución de Cobertura del Proyecto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1979" />
+      <location filename="../Debugger/DebugUI.py" line="1982" />
       <source>Coverage Run of Script</source>
       <translation>Ejecución de Cobertura del Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2387" />
-      <location filename="../Debugger/DebugUI.py" line="2189" />
-      <location filename="../Debugger/DebugUI.py" line="1987" />
+      <location filename="../Debugger/DebugUI.py" line="2390" />
+      <location filename="../Debugger/DebugUI.py" line="2192" />
+      <location filename="../Debugger/DebugUI.py" line="1990" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>No hay script principal definido para el proyecto actual. Abortando</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2188" />
-      <location filename="../Debugger/DebugUI.py" line="2179" />
+      <location filename="../Debugger/DebugUI.py" line="2191" />
+      <location filename="../Debugger/DebugUI.py" line="2182" />
       <source>Profile Run of Project</source>
       <translation>Ejecución de Profile del Proyecto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2181" />
+      <location filename="../Debugger/DebugUI.py" line="2184" />
       <source>Profile Run of Script</source>
       <translation>Ejecución de Profile del Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2580" />
+      <location filename="../Debugger/DebugUI.py" line="2583" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>No hay script principal definido para el proyecto actual. La depuración no es posible.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3252" />
+      <location filename="../Debugger/DebugUI.py" line="3255" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo seleccionado &lt;b&gt;{0}&lt;/b&gt; se localiza en un servidor de eric-ide pero no hay un servidor conectado.Abortando...&lt;/p&gt;</translation>
     </message>
@@ -33477,7 +33477,6 @@
   <context>
     <name>HelpDocumentationPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="64" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="60" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="56" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="52" />
@@ -33604,21 +33603,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>PySide2 Documentation</source>
-      <translation>Documentación de PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>Enter the PySide2 documentation directory</source>
-      <translation>Introducir el directorio con la documentación de PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
-      <translation>&lt;b&gt;Nota&lt;/b&gt;: Dejar en blanco para utilizar la variable de entorno PYSIDE2DOCDIR, si ha sido establecida.</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
       <source>PySide6 Documentation</source>
       <translation>Documentación de PySide6</translation>
     </message>
@@ -33632,6 +33616,18 @@
       <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE6DOCDIR environment variable, if set.</source>
       <translation>&lt;b&gt;Nota&lt;/b&gt;: Dejar en blanco para utilizar la variable de entorno PYSIDE6DOCDIR, si ha sido establecida.</translation>
     </message>
+    <message>
+      <source>PySide2 Documentation</source>
+      <translation type="vanished">Documentación de PySide2</translation>
+    </message>
+    <message>
+      <source>Enter the PySide2 documentation directory</source>
+      <translation type="vanished">Introducir el directorio con la documentación de PySide2</translation>
+    </message>
+    <message>
+      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
+      <translation type="vanished">&lt;b&gt;Nota&lt;/b&gt;: Dejar en blanco para utilizar la variable de entorno PYSIDE2DOCDIR, si ha sido establecida.</translation>
+    </message>
   </context>
   <context>
     <name>HelpIndexWidget</name>
@@ -34034,29 +34030,19 @@
       <translation>Mostrar lista de marcadores</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
       <source>eric API Documentation</source>
       <translation>Documentación de API de Eric</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>Python 3 Documentation</source>
-      <translation>Documentación de Python 3</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>Qt5 Documentation</source>
-      <translation>Documentación de Qt5</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
-      <source>Qt6 Documentation</source>
-      <translation>Documentación de Qt6</translation>
+      <source>Python 3 Documentation</source>
+      <translation>Documentación de Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
-      <source>PyQt5 Documentation</source>
-      <translation>Documentación de PyQt5</translation>
+      <source>Qt6 Documentation</source>
+      <translation>Documentación de Qt6</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="453" />
@@ -34065,76 +34051,83 @@
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="454" />
-      <source>PySide2 Documentation</source>
-      <translation>Documentación de PySide2</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="455" />
       <source>PySide6 Documentation</source>
       <translation>Documentación de PySide6</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="512" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>Open HTML File</source>
       <translation>Abrir archivo HTML</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="514" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="513" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation>Archivos HTML (*.html *.htm);;Todos los Archivos (*)</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="701" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="700" />
       <source>Help Engine</source>
       <translation>Motor de Ayuda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="725" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="724" />
       <source>Looking for Documentation...</source>
       <translation>Buscando Documentación...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="736" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="735" />
       <source>eric Help Viewer</source>
       <translation>Visor de Ayuda de eric</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
       <source>Manage QtHelp Documents</source>
       <translation>Gestionar Documentos de QtHelp</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="764" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="763" />
       <source>Reindex Documentation</source>
       <translation>Reindexar Documentación</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="769" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="768" />
       <source>Configure Help Documentation</source>
       <translation>Configurar Documentación de Ayuda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="862" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="842" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="861" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="841" />
       <source>Clear History</source>
       <translation>Limpiar Historial</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="966" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="965" />
       <source>Updating search index</source>
       <translation>Actualizando índice de búsqueda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1024" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1023" />
       <source>Filtered by: </source>
       <translation>Filtrado por: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1060" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1054" />
       <source>Unfiltered</source>
       <translation>Sin filtrar</translation>
     </message>
+    <message>
+      <source>Qt5 Documentation</source>
+      <translation type="vanished">Documentación de Qt5</translation>
+    </message>
+    <message>
+      <source>PyQt5 Documentation</source>
+      <translation type="vanished">Documentación de PyQt5</translation>
+    </message>
+    <message>
+      <source>PySide2 Documentation</source>
+      <translation type="vanished">Documentación de PySide2</translation>
+    </message>
   </context>
   <context>
     <name>HelpViewersPage</name>
@@ -52282,7 +52275,7 @@
       <translation>&lt;p&gt;No se ha podido descargar la lista de diccionarios desde {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="415" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="416" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="221" />
       <source>No connection to Internet.</source>
       <translation>Sin conexión a Internet.</translation>
@@ -52318,24 +52311,24 @@
       <translation>{0} ({1})</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="435" />
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="411" />
-      <source>Error downloading dictionary file</source>
-      <translation>Error descargando archivo de diccionario</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="436" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="412" />
+      <source>Error downloading dictionary file</source>
+      <translation>Error descargando archivo de diccionario</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="437" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="413" />
       <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido descargar el archivo de diccionario requerido de {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="450" />
-      <source>Error downloading dictionary</source>
-      <translation>Error descargando diccionario</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="451" />
+      <source>Error downloading dictionary</source>
+      <translation>Error descargando diccionario</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="452" />
       <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de diccionario que se ha descargado no es válido. Cancelando.&lt;/p&gt;</translation>
     </message>
@@ -54212,7 +54205,7 @@
       <translation>Pulsar para abrir una ventana de gráfica para mostrar datos recibidos desde el dispositivo seleccionado</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="459" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="460" />
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
       <source>Press to connect the selected device</source>
       <translation>Pulsar para conectar el dispositivo seleccionado</translation>
@@ -54228,7 +54221,7 @@
       <translation>&lt;h3&gt;El package QtSerialPort no está disponible.&lt;br/&gt;Soporte para MicroPython desactivado.&lt;/h3&gt;</translation>
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="192" />
       <source>%n supported serial device(s) detected.</source>
       <translation>
         <numerusform>%n dispositivo de serie soportado detectado.</numerusform>
@@ -54236,18 +54229,18 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="205" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="206" />
       <source>{0} - {1} ({2})</source>
       <comment>board name, description, port name</comment>
       <translation>{0} - {1} ({2})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="228" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="229" />
       <source>No supported serial devices detected.</source>
       <translation>No se han detectado dispositivos de serie soportados.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="233" />
       <source>
 %n unknown device(s) for manual selection.</source>
       <translation>
@@ -54258,17 +54251,17 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="239" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="240" />
       <source>Manual Selection</source>
       <translation>Selección Manual</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="250" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="251" />
       <source>WebREPL (manual)</source>
       <translation>WebREPL (manual)</translation>
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="270" />
       <source>
 %n WebREPL connection(s) defined.</source>
       <translation>
@@ -54279,39 +54272,39 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="329" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="300" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
       <source>Unknown MicroPython Device</source>
       <translation>Dispositivo MicroPython Desconocido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="302" />
       <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href="mailto:{1}"&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Detectados estos dispositivos de serie desconocidos&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Reportarlos por favor junto con el nombre de la placa y una descripción corta a &lt;a href="mailto:{1}"&gt; la dirección de reporte de bugs de eric &lt;/a&gt; si es una placa MicroPython.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="313" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="314" />
       <source>{0} (0x{1:04x}/0x{2:04x})</source>
       <comment>description, VID, PID</comment>
       <translation>{0} (0x{1:04x}/0x{2:04x})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="331" />
       <source>Would you like to add them to the list of manually configured devices?</source>
       <translation>¿Desea añadirlos a la lista de dispositivos configurados manualmente?</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="454" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="455" />
       <source>Press to disconnect the current device</source>
       <translation>Pulsar para desconectar el dispositivo seleccionado</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="491" />
-      <source>No device attached</source>
-      <translation>No hay dispositivo conectado</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="492" />
+      <source>No device attached</source>
+      <translation>No hay dispositivo conectado</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="493" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -54324,353 +54317,353 @@
 Finalmente, pulsar el botón de reset del dispositivo y esperar unos pocos segundos antes de intentar de nuevo.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
       <source>Start REPL</source>
       <translation>Iniciar REPL</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="523" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El REPL no se puede iniciar.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="731" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="718" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
       <source>Serial Device Connect</source>
       <translation>Conexión de Dispositivo en Serie</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="720" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El dispositivo en el puerto de serie &lt;b&gt;{0}&lt;/b&gt; no responde. Puede que no tenga un firmware MicroPython flasheado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="726" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;No es posible conectar al dispositivo por el puerto de serie &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Razón:&lt;/b&gt; {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1198" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1190" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="729" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="730" />
       <source>unknown</source>
       <translation>desconocido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="772" />
-      <source>Run Script</source>
-      <translation>Ejecutar Script</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
-      <source>There is no editor open. Abort...</source>
-      <translation>No hay editor abierto. Abortando...</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
-      <source>The current editor does not contain a script. Abort...</source>
-      <translation>El editor actual no contiene un script. Abortando...</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
+      <source>Run Script</source>
+      <translation>Ejecutar Script</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="774" />
+      <source>There is no editor open. Abort...</source>
+      <translation>No hay editor abierto. Abortando...</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="783" />
+      <source>The current editor does not contain a script. Abort...</source>
+      <translation>El editor actual no contiene un script. Abortando...</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="792" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se puede ejecutar el script.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="827" />
-      <source>Start Chart</source>
-      <translation>Iniciar Gráfica</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="828" />
+      <source>Start Chart</source>
+      <translation>Iniciar Gráfica</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="829" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se puede iniciar la gráfica.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="843" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="844" />
       <source>µPy Chart</source>
       <translation>Gráfico µPy</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="860" />
-      <source>Unsaved Chart Data</source>
-      <translation>Datos de Gráfica sin Guardar</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="861" />
+      <source>Unsaved Chart Data</source>
+      <translation>Datos de Gráfica sin Guardar</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="862" />
       <source>The chart contains unsaved data.</source>
       <translation>La gráfica contiene datos sin guardar.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="909" />
-      <source>Start File Manager</source>
-      <translation>Comenzar Gestor de Archivos</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="910" />
+      <source>Start File Manager</source>
+      <translation>Comenzar Gestor de Archivos</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="911" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El Gestor de Archivos no se puede iniciar.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="930" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="931" />
       <source>µPy Files</source>
       <translation>Archivos µPy</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1017" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1018" />
       <source>Downloads</source>
       <translation>Descargas</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
       <source>Show Version</source>
       <translation>Mostrar Versión</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1067" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Implementation</source>
       <translation>Mostrar Implementación</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1071" />
       <source>Show Board Data</source>
       <translation>Mostrar Datos de Microprocesador</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Synchronize Time</source>
       <translation>Sincronizar Hora</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1079" />
       <source>Show Device Time</source>
       <translation>Mostrar Hora del Dispositivo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1080" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Local Time</source>
       <translation>Mostrar Hora Local</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1083" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1084" />
       <source>Show Time</source>
       <translation>Mostrar Tiempo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1087" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1088" />
       <source>Show Builtin Modules</source>
       <translation>Mostrar Módulos Incorporados</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1691" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1099" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1091" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1092" />
       <source>Install Package</source>
       <translation>Instalar Package</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1730" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1727" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1095" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1096" />
       <source>Install Packages</source>
       <translation>Instalar Packages</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1503" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1105" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1504" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1106" />
       <source>Compile Python File</source>
       <translation>Compilar Archivo de Python</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1529" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1520" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1109" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1530" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1110" />
       <source>Compile Current Editor</source>
       <translation>Compilar Editor Actual</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1130" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1131" />
       <source>Download Firmware</source>
       <translation>Descargar Firmware</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1137" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Show Documentation</source>
       <translation>Mostrar Documentación</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1140" />
-      <source>Convert To UF2</source>
-      <translation>Convertir a UF2</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1141" />
+      <source>Convert To UF2</source>
+      <translation>Convertir a UF2</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
       <source>Flash UF2 Device</source>
       <translation>Flashear Dispositivo UF2</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
       <source>Manage Unknown Devices</source>
       <translation>Gestión Dispositivos Desconocidos</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
       <source>Ignored Serial Devices</source>
       <translation>Dispositivos de Serie Ignorados</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1150" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Configure</source>
       <translation>Configurar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1153" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1154" />
       <source>Quit</source>
       <translation>Salir</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1162" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1163" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation>&lt;h3&gt;Información de Versión de Dispositivo&lt;/h3&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1173" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
-      <source>Device Version Information</source>
-      <translation>Información de Versión de Dispositivo</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1174" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1170" />
+      <source>Device Version Information</source>
+      <translation>Información de Versión de Dispositivo</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1175" />
       <source>No version information available.</source>
       <translation>No hay información de versión disponible.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1204" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1205" />
       <source> ({0})</source>
       <translation> ({0})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1220" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1211" />
-      <source>Device Implementation Information</source>
-      <translation>Información de Implementación de Dispositivo</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
-      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation>&lt;h3&gt;Información de Implementación de Dispositivo&lt;/h3&gt;&lt;p&gt;Este dispositivo contiene &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
+      <source>Device Implementation Information</source>
+      <translation>Información de Implementación de Dispositivo</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1213" />
+      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation>&lt;h3&gt;Información de Implementación de Dispositivo&lt;/h3&gt;&lt;p&gt;Este dispositivo contiene &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>No device implementation information available.</source>
       <translation>Sin información disponible de implementación de dispositivo.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La hora del dispositivo conectado está sincronizada con la hora local.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1296" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1297" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Fecha y Hora del Dispositivo&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1304" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1305" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Fecha y Hora del Dispositivo&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1320" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1321" />
       <source>Device Date and Time</source>
       <translation>Fecha y Hora del Dispositivo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1332" />
-      <source>Local Date and Time</source>
-      <translation>Fecha y Hora Local</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1333" />
+      <source>Local Date and Time</source>
+      <translation>Fecha y Hora Local</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1334" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Fecha y Hora del Local&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1374" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1357" />
-      <source>Date and Time</source>
-      <translation>Fecha y Hora</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
-      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-      <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Fecha y Hora Local&lt;/th&gt;&lt;th&gt;Fecha y Hora del Dispositivo&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1375" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
+      <source>Date and Time</source>
+      <translation>Fecha y Hora</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1359" />
+      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+      <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Fecha y Hora Local&lt;/th&gt;&lt;th&gt;Fecha y Hora del Dispositivo&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1376" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Fecha y Hora Local&lt;/th&gt;&lt;th&gt;Fecha y Hora del Dispositivo&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1399" />
-      <source>Error handling device</source>
-      <translation>Error de gestión del dispositivo</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1400" />
+      <source>Error handling device</source>
+      <translation>Error de gestión del dispositivo</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1401" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ha ocurrido un error al comunicar con el dispositivo conectado.&lt;/p&gt;&lt;p&gt;Método: {0}&lt;/p&gt;&lt;p&gt;Mensaje: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1442" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1443" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation>El compilador multiplataforma de MicroPython &lt;b&gt;mpy-cross&lt;/b&gt; no se encuentra. Asegúrese de que está en la ruta de búsqueda o configurarlo en la página de configuración de MicroPython.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1468" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1469" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation>Archivos Python (*.py);;Todos los Archivos (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1478" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1479" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation>El archivo de Python &lt;b&gt;{0}&lt;/b&gt; no existe. Abortando...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1488" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1489" />
       <source>'mpy-cross' Output</source>
       <translation>Salida de 'mpy-cross'</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1522" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation>El editor actual no contiene un archivo de Python. Abortando...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1613" />
-      <source>Add Unknown Devices</source>
-      <translation>Añadir Dispositivos Desconocidos</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1614" />
+      <source>Add Unknown Devices</source>
+      <translation>Añadir Dispositivos Desconocidos</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
       <source>Select the devices to be added:</source>
       <translation>Seleccionar los dispositivos a añadir:</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1664" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1665" />
       <source>Plus any modules on the filesystem.</source>
       <translation>Más cualesquiera módulos en el sistema de archivos.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1716" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1717" />
       <source>Package '{0}' was installed successfully.</source>
       <translation>El Package '{0}' se ha instalado correctamente.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation>Introducir los packages a instalar separados por espacios:</translation>
     </message>
@@ -54678,17 +54671,17 @@
   <context>
     <name>MicroPythonWindow</name>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="81" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="83" />
       <source>MicroPython / CircuitPython Devices</source>
       <translation>Dispositivos MicroPython / CircuitPython</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Open Browser</source>
       <translation>Abrir Navegador</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Could not start a web browser</source>
       <translation>No se ha podido iniciar el navegador web</translation>
     </message>
@@ -59837,164 +59830,164 @@
   <context>
     <name>Pip</name>
     <message>
-      <location filename="../PipInterface/Pip.py" line="157" />
+      <location filename="../PipInterface/Pip.py" line="161" />
       <source>python exited with an error ({0}).</source>
       <translation>python ha salido con un error ({0}).</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="166" />
+      <location filename="../PipInterface/Pip.py" line="170" />
       <source>python did not finish within 30 seconds.</source>
       <translation>python no ha terminado en 30 segundos.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="168" />
+      <location filename="../PipInterface/Pip.py" line="172" />
       <source>python could not be started.</source>
       <translation>No se ha podido iniciar python.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="229" />
+      <location filename="../PipInterface/Pip.py" line="233" />
       <source>&lt;project&gt;</source>
       <translation>&lt;project&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="254" />
+      <location filename="../PipInterface/Pip.py" line="258" />
       <source>Interpreter for Virtual Environment</source>
       <translation>Intérprete para el Entorno Virtual</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="255" />
+      <location filename="../PipInterface/Pip.py" line="259" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation>No se ha configurado ningún intérprete para el entorno virtual seleccionado.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="308" />
+      <location filename="../PipInterface/Pip.py" line="312" />
       <source>Install PIP</source>
       <translation>Instalar PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="355" />
+      <location filename="../PipInterface/Pip.py" line="359" />
       <source>Repair PIP</source>
       <translation>Reparar PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="487" />
-      <location filename="../PipInterface/Pip.py" line="469" />
+      <location filename="../PipInterface/Pip.py" line="491" />
+      <location filename="../PipInterface/Pip.py" line="473" />
       <source>Upgrade Packages</source>
       <translation>Actualizar Packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="470" />
+      <location filename="../PipInterface/Pip.py" line="474" />
       <source>There are no packages except 'eric-ide' or 'PyQt6' left for upgrade.</source>
       <translation>No hay packages excepto 'eric-ide' o 'PyQt6' dejados por actualizar.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="533" />
+      <location filename="../PipInterface/Pip.py" line="537" />
       <source>Install Packages</source>
       <translation>Instalar Packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="564" />
+      <location filename="../PipInterface/Pip.py" line="568" />
       <source>Install Packages from Requirements</source>
       <translation>Instalar Packages a partir de Requisitos</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="586" />
+      <location filename="../PipInterface/Pip.py" line="590" />
       <source>Install Project</source>
       <translation>Instalar Proyecto</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="621" />
-      <location filename="../PipInterface/Pip.py" line="611" />
+      <location filename="../PipInterface/Pip.py" line="625" />
+      <location filename="../PipInterface/Pip.py" line="615" />
       <source>Install 'pyproject' Dependencies</source>
       <translation>Instalar Dependencias de 'pyproject'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="612" />
+      <location filename="../PipInterface/Pip.py" line="753" />
+      <location filename="../PipInterface/Pip.py" line="616" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation>El archivo seleccionado 'pyproject.toml' no contiene una sección 'project.dependencies'. Abortando...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="622" />
+      <location filename="../PipInterface/Pip.py" line="626" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo 'pyproject.toml' seleccionado no se ha podido leer. .&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="642" />
+      <location filename="../PipInterface/Pip.py" line="646" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation>Instalar Packages desde 'pyproject.toml'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="776" />
-      <location filename="../PipInterface/Pip.py" line="702" />
-      <location filename="../PipInterface/Pip.py" line="672" />
-      <location filename="../PipInterface/Pip.py" line="663" />
+      <location filename="../PipInterface/Pip.py" line="780" />
+      <location filename="../PipInterface/Pip.py" line="706" />
+      <location filename="../PipInterface/Pip.py" line="676" />
+      <location filename="../PipInterface/Pip.py" line="667" />
       <source>Uninstall Packages</source>
       <translation>Desinstalar Packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
-      <location filename="../PipInterface/Pip.py" line="703" />
-      <location filename="../PipInterface/Pip.py" line="664" />
+      <location filename="../PipInterface/Pip.py" line="781" />
+      <location filename="../PipInterface/Pip.py" line="707" />
+      <location filename="../PipInterface/Pip.py" line="668" />
       <source>Do you really want to uninstall these packages?</source>
       <translation>¿Realmente desea desinstalar estos packages?</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="720" />
+      <location filename="../PipInterface/Pip.py" line="724" />
       <source>Uninstall Packages from Requirements</source>
       <translation>Desinstalar Packages a partir de Requisitos</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="759" />
-      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="763" />
+      <location filename="../PipInterface/Pip.py" line="752" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation>Desinstalar Dependencias de 'pyproject'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="760" />
+      <location filename="../PipInterface/Pip.py" line="764" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo 'pyproject.toml' seleccionado no se ha podido leer. .&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="787" />
+      <location filename="../PipInterface/Pip.py" line="791" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation>Desinstalar Packages desde 'pyproject.toml'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1198" />
+      <location filename="../PipInterface/Pip.py" line="1203" />
       <source>Cache Info</source>
       <translation>Info de Cache</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1224" />
-      <location filename="../PipInterface/Pip.py" line="1215" />
+      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1220" />
       <source>List Cached Files</source>
       <translation>Listar Archivos en Cache</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1216" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
       <source>Enter a file pattern (empty for all):</source>
       <translation>Introducir un patrón de archivo (dejar en blanco para todos):</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1248" />
-      <location filename="../PipInterface/Pip.py" line="1241" />
+      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1246" />
       <source>Remove Cached Files</source>
       <translation>Eliminar Archivos en Cache</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1242" />
+      <location filename="../PipInterface/Pip.py" line="1247" />
       <source>Enter a file pattern:</source>
       <translation>Introducir un patrón de archivo:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1273" />
-      <location filename="../PipInterface/Pip.py" line="1265" />
+      <location filename="../PipInterface/Pip.py" line="1278" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
       <source>Purge Cache</source>
       <translation>Purgar Cache</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1266" />
+      <location filename="../PipInterface/Pip.py" line="1271" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation>Desear realmente purgar la cache de pip? Todos los archivos necesitarán descargarse de nuevo.</translation>
     </message>
@@ -60914,205 +60907,205 @@
       <translation>Obteniendo packages antiguos...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="737" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="731" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
       <source>Cleanup Environment</source>
       <translation>Limpieza de Entorno</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="733" />
       <source>The environment cleanup was successful.</source>
       <translation>La limpieza de entorno ha tenido éxito.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="739" />
       <source>Some leftover package directories could not been removed. Delete them manually.</source>
       <translation>Algunos directorios residuales de package no se han podido eliminar. Borrarlos manualmente.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="834" />
-      <source>Search PyPI</source>
-      <translation>Buscar PyPI</translation>
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="835" />
+      <source>Search PyPI</source>
+      <translation>Buscar PyPI</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="836" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No hay info de detalles de package disponible para &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="854" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="855" />
       <source>Pip</source>
       <translation>Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="856" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="857" />
       <source>Install Pip</source>
       <translation>Instalar Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="860" />
       <source>Install Pip to User-Site</source>
       <translation>Instalar Pip en el Sitio de Usuario</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="862" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="863" />
       <source>Repair Pip</source>
       <translation>Reparar Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="869" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="870" />
       <source>Install</source>
       <translation>Instalar</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1048" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="871" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1049" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="872" />
       <source>Install Packages</source>
       <translation>Instalar Packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="874" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="875" />
       <source>Install Local Package</source>
       <translation>Instalar Package Local</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="877" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="878" />
       <source>Re-Install Selected Packages</source>
       <translation>Reinstalar los Packages Seleccionados</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="884" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="885" />
       <source>Requirements/Constraints</source>
       <translation>Requisitos/Restricciones</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="886" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="887" />
       <source>Install Requirements</source>
       <translation>Instalar Requisitos</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="889" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="890" />
       <source>Uninstall Requirements</source>
       <translation>Desinstalar Requisitos</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="892" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="893" />
       <source>Generate Requirements...</source>
       <translation>Generar Requisitos...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="896" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="897" />
       <source>Install from 'pyproject.toml'</source>
       <translation>Instalar desde 'pyproject.toml'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="900" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="901" />
       <source>Uninstall from 'pyproject.toml'</source>
       <translation>Desinstalar desde 'pyproject.toml'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="905" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="906" />
       <source>Generate Constraints...</source>
       <translation>Generar Restricciones...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="912" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="913" />
       <source>Cache</source>
       <translation>Caché</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="914" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="915" />
       <source>Show Cache Info...</source>
       <translation>Mostrar info de Cache...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="917" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="918" />
       <source>Show Cached Files...</source>
       <translation>Mostrar Archivos en Cache...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="920" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="921" />
       <source>Remove Cached Files...</source>
       <translation>Eliminar Archivos en Cache...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="923" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="924" />
       <source>Purge Cache...</source>
       <translation>Purgar Cache...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="940" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="941" />
       <source>Show Licenses...</source>
       <translation>Mostrar Licencias...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="944" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="945" />
       <source>Check Vulnerabilities</source>
       <translation>Comprobar Vulnerabilidades</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="948" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="949" />
       <source>Update Vulnerability Database</source>
       <translation>Actualizar Base de Datos de Vulnerabilidades</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="952" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="953" />
       <source>Create SBOM file</source>
       <translation>Crear archivo SBOM</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="959" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="960" />
       <source>Edit User Configuration...</source>
       <translation>Editar Configuración de Usuario...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="962" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="963" />
       <source>Edit Environment Configuration...</source>
       <translation>Editar Configuración de Entorno...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="967" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="968" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1211" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1198" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1187" />
-      <source>Edit Configuration</source>
-      <translation>Editar Configuración</translation>
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1212" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1199" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1188" />
+      <source>Edit Configuration</source>
+      <translation>Editar Configuración</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1213" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1200" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1189" />
       <source>No valid configuration path determined. Aborting</source>
       <translation>No hay una ruta válida de configuración determinada. Abortando</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1421" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1422" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation>{0} {1}</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1442" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1443" />
       <source>Affected Version:</source>
       <translation>Versión Afectada:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1445" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1446" />
       <source>Advisory:</source>
       <translation>Recomendatorio:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1585" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1560" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1586" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1561" />
       <source>unknown</source>
       <translation>desconocido</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1582" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1583" />
       <source>any</source>
       <translation>cualquiera</translation>
     </message>
@@ -61120,7 +61113,7 @@
   <context>
     <name>PipPackagesWindow</name>
     <message>
-      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <location filename="../PipInterface/PipPackagesWindow.py" line="60" />
       <source>Manage Packages</source>
       <translation>Gestionar Packages</translation>
     </message>
@@ -61640,52 +61633,52 @@
   <context>
     <name>PluginManager</name>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="230" />
+      <location filename="../PluginManager/PluginManager.py" line="232" />
       <source>Could not create a package for {0}.</source>
       <translation>No se ha podido crear un paquete para {0}.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="262" />
+      <location filename="../PluginManager/PluginManager.py" line="264" />
       <source>The internal plugin directory &lt;b&gt;{0}&lt;/b&gt; does not exits.</source>
       <translation>El directorio interno de plugin &lt;b&gt;{0}&lt;/b&gt; no existe.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="439" />
+      <location filename="../PluginManager/PluginManager.py" line="441" />
       <source>Module is missing the 'autoactivate' attribute.</source>
       <translation>El módulo no tiene el atributo 'autoactivate'.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="450" />
+      <location filename="../PluginManager/PluginManager.py" line="452" />
       <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source>
       <translation>El módulo no tiene el atributo 'pluginType' y/o el atributo 'pluginTypename'.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="478" />
+      <location filename="../PluginManager/PluginManager.py" line="480" />
       <source>Module failed to load. Error: {0}</source>
       <translation>Ha fallado la carga del módulo. Error: {0}</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="661" />
+      <location filename="../PluginManager/PluginManager.py" line="663" />
       <source>Incompatible plugin activation method.</source>
       <translation>Metodo de activación del plugin incompatible.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1269" />
+      <location filename="../PluginManager/PluginManager.py" line="1271" />
       <source>Plugin Manager Error</source>
       <translation>Error del Gestor de Plugins</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1270" />
+      <location filename="../PluginManager/PluginManager.py" line="1272" />
       <source>&lt;p&gt;The plugin download directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Please configure it via the configuration dialog.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El directorio de descaga del plugin &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado. Por favor, configúrelo a través del diálogo de configuración.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1358" />
+      <location filename="../PluginManager/PluginManager.py" line="1360" />
       <source>Error downloading file</source>
       <translation>Error al descargar el fichero</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1359" />
+      <location filename="../PluginManager/PluginManager.py" line="1361" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se pudo descargar el archivo solicitado desde {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</translation>
     </message>
@@ -62571,18 +62564,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1911" />
+      <location filename="../Preferences/__init__.py" line="1891" />
       <source>Export Preferences</source>
       <translation>Exportar Preferencias</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1940" />
-      <location filename="../Preferences/__init__.py" line="1913" />
+      <location filename="../Preferences/__init__.py" line="1920" />
+      <location filename="../Preferences/__init__.py" line="1893" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Archivo de Propiedades (*.ini);;Todos los archivos (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1938" />
+      <location filename="../Preferences/__init__.py" line="1918" />
       <source>Import Preferences</source>
       <translation>Importar Preferencias</translation>
     </message>
@@ -63107,116 +63100,113 @@
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="204" />
-      <source>Translation Extractor (Python, PySide2)</source>
-      <translation>Extractor de Traducciones (Python, PySide2)</translation>
+      <source>Translation Extractor (Python, PySide6)</source>
+      <translation>Extractor de Traducciones (Python, PySide6)</translation>
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="213" />
-      <source>Forms Compiler (Python, PySide2)</source>
-      <translation>Compilador de Formularios (Python, PySide2)</translation>
+      <source>Forms Compiler (Python, PySide6)</source>
+      <translation>Compilador de Formularios (Python, PySide6)</translation>
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="222" />
-      <source>Resource Compiler (Python, PySide2)</source>
-      <translation>Compilador de Recursos (Python, PySide2)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="232" />
-      <source>Translation Extractor (Python, PySide6)</source>
-      <translation>Extractor de Traducciones (Python, PySide6)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="241" />
-      <source>Forms Compiler (Python, PySide6)</source>
-      <translation>Compilador de Formularios (Python, PySide6)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="250" />
       <source>Resource Compiler (Python, PySide6)</source>
       <translation>Compilador de Recursos (Python, PySide6)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="265" />
+      <location filename="../Preferences/ProgramsDialog.py" line="237" />
       <source>conda Manager</source>
       <translation>Gestor de conda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="275" />
+      <location filename="../Preferences/ProgramsDialog.py" line="247" />
       <source>PyPI Package Management</source>
       <translation>Gestor de Packages PyPI</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="527" />
-      <location filename="../Preferences/ProgramsDialog.py" line="524" />
-      <location filename="../Preferences/ProgramsDialog.py" line="508" />
-      <location filename="../Preferences/ProgramsDialog.py" line="378" />
-      <location filename="../Preferences/ProgramsDialog.py" line="311" />
-      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <location filename="../Preferences/ProgramsDialog.py" line="499" />
+      <location filename="../Preferences/ProgramsDialog.py" line="496" />
+      <location filename="../Preferences/ProgramsDialog.py" line="480" />
+      <location filename="../Preferences/ProgramsDialog.py" line="350" />
+      <location filename="../Preferences/ProgramsDialog.py" line="283" />
+      <location filename="../Preferences/ProgramsDialog.py" line="266" />
       <source>(unknown)</source>
       <translation>(desconocido)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="298" />
+      <location filename="../Preferences/ProgramsDialog.py" line="270" />
       <source>Spell Checker - PyEnchant</source>
       <translation>Corrección Ortográfica - PyEnchant</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="315" />
+      <location filename="../Preferences/ProgramsDialog.py" line="287" />
       <source>Source Highlighter - Pygments</source>
       <translation>Resaltador de Código Fuente - Pygments</translation>
     </message>
     <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <source>MicroPython - MPY Cross Compiler</source>
+      <translation>MicroPython - MPY Cross Compiler</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="301" />
+      <source>MicroPython - ESP Tool</source>
+      <translation>MicroPython - ESP Tool</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="312" />
+      <source>MicroPython - PyBoard Flasher</source>
+      <translation>MicroPython - PyBoard Flasher</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ProgramsDialog.py" line="322" />
-      <source>MicroPython - MPY Cross Compiler</source>
-      <translation>MicroPython - MPY Cross Compiler</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="329" />
-      <source>MicroPython - ESP Tool</source>
-      <translation>MicroPython - ESP Tool</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="340" />
-      <source>MicroPython - PyBoard Flasher</source>
-      <translation>MicroPython - PyBoard Flasher</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="350" />
       <source>MicroPython - STLink Info</source>
       <translation>MicroPython - STLink Info</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="360" />
+      <location filename="../Preferences/ProgramsDialog.py" line="332" />
       <source>MicroPython - STLink Flasher</source>
       <translation>MicroPython - STLink Flasher</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="382" />
+      <location filename="../Preferences/ProgramsDialog.py" line="354" />
       <source>Code Assistant - Jedi</source>
       <translation>Asistente de Código - Jedi</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="462" />
+      <location filename="../Preferences/ProgramsDialog.py" line="434" />
       <source>(not configured)</source>
       <translation>(no configurado)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="497" />
+      <location filename="../Preferences/ProgramsDialog.py" line="469" />
       <source>(module not found)</source>
       <translation>(módule no encontrado)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="530" />
+      <location filename="../Preferences/ProgramsDialog.py" line="502" />
       <source>(not executable)</source>
       <translation>(no ejecutable)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="576" />
-      <location filename="../Preferences/ProgramsDialog.py" line="544" />
-      <location filename="../Preferences/ProgramsDialog.py" line="542" />
+      <location filename="../Preferences/ProgramsDialog.py" line="548" />
+      <location filename="../Preferences/ProgramsDialog.py" line="516" />
+      <location filename="../Preferences/ProgramsDialog.py" line="514" />
       <source>(not found)</source>
       <translation>(no encontrado)</translation>
     </message>
+    <message>
+      <source>Translation Extractor (Python, PySide2)</source>
+      <translation type="vanished">Extractor de Traducciones (Python, PySide2)</translation>
+    </message>
+    <message>
+      <source>Forms Compiler (Python, PySide2)</source>
+      <translation type="vanished">Compilador de Formularios (Python, PySide2)</translation>
+    </message>
+    <message>
+      <source>Resource Compiler (Python, PySide2)</source>
+      <translation type="vanished">Compilador de Recursos (Python, PySide2)</translation>
+    </message>
   </context>
   <context>
     <name>Project</name>
@@ -63272,379 +63262,369 @@
     </message>
     <message>
       <location filename="../Project/Project.py" line="362" />
-      <source>PySide2 GUI</source>
-      <translation>GUI de PySide2</translation>
+      <source>PySide6 GUI</source>
+      <translation>GUI de PySide6</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="363" />
-      <source>PySide2 Console</source>
-      <translation>Consola PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="367" />
-      <source>PySide6 GUI</source>
-      <translation>GUI de PySide6</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation>Consola PySide6</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="466" />
-      <location filename="../Project/Project.py" line="454" />
-      <location filename="../Project/Project.py" line="443" />
+      <location filename="../Project/Project.py" line="461" />
+      <location filename="../Project/Project.py" line="449" />
+      <location filename="../Project/Project.py" line="438" />
       <source>Registering Project Type</source>
       <translation>Registrando Tipo de Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="444" />
+      <location filename="../Project/Project.py" line="439" />
       <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
       <translation>&lt;p&gt;El Lenguaje de Programación &lt;b&gt;{0}&lt;/b&gt; no está soportado (tipo de proyecto: {1}).&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="455" />
+      <location filename="../Project/Project.py" line="450" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El tipo de Proyecto &lt;b&gt;{0}&lt;/b&gt; ya está registrado con el Lenguaje de Programación &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="467" />
+      <location filename="../Project/Project.py" line="462" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El Tipo de Proyecto &lt;b&gt;{0}&lt;/b&gt; ya está registrado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="772" />
+      <location filename="../Project/Project.py" line="767" />
       <source>All Files (*)</source>
       <translation>Todos los archivos (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1321" />
       <source>Read Project Session</source>
       <translation>Leer Sesion de Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1579" />
-      <location filename="../Project/Project.py" line="1553" />
-      <location filename="../Project/Project.py" line="1517" />
-      <location filename="../Project/Project.py" line="1435" />
-      <location filename="../Project/Project.py" line="1396" />
-      <location filename="../Project/Project.py" line="1371" />
-      <location filename="../Project/Project.py" line="1334" />
+      <location filename="../Project/Project.py" line="1567" />
+      <location filename="../Project/Project.py" line="1541" />
+      <location filename="../Project/Project.py" line="1505" />
+      <location filename="../Project/Project.py" line="1423" />
+      <location filename="../Project/Project.py" line="1384" />
+      <location filename="../Project/Project.py" line="1359" />
+      <location filename="../Project/Project.py" line="1322" />
       <source>Please save the project first.</source>
       <translation>Por favor guarde primero el proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1370" />
+      <location filename="../Project/Project.py" line="1358" />
       <source>Save Project Session</source>
       <translation>Guardar Sesion de Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1412" />
-      <location filename="../Project/Project.py" line="1395" />
+      <location filename="../Project/Project.py" line="1400" />
+      <location filename="../Project/Project.py" line="1383" />
       <source>Delete Project Session</source>
       <translation>Borrar Sesión de Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1402" />
+      <location filename="../Project/Project.py" line="1390" />
       <source>Delete Remote Project Session</source>
       <translation>Borrar Sesión de Proyecto Remoto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1421" />
+      <location filename="../Project/Project.py" line="1409" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de sesión de proyecto &lt;b&gt;{0}&lt;/b&gt; no ha podido borrarse.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1422" />
       <source>Read Tasks</source>
       <translation>Leer Tareas</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1516" />
+      <location filename="../Project/Project.py" line="1504" />
       <source>Read Debugger Properties</source>
       <translation>Leer Propiedades del Depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1552" />
+      <location filename="../Project/Project.py" line="1540" />
       <source>Save Debugger Properties</source>
       <translation>Guardar Propiedades del Depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1595" />
-      <location filename="../Project/Project.py" line="1578" />
+      <location filename="../Project/Project.py" line="1583" />
+      <location filename="../Project/Project.py" line="1566" />
       <source>Delete Debugger Properties</source>
       <translation>Borrar Propiedades del Depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1585" />
+      <location filename="../Project/Project.py" line="1573" />
       <source>Delete Remote Debugger Properties</source>
       <translation>Borrar Propiedades del Depurador Remoto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1604" />
+      <location filename="../Project/Project.py" line="1592" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de propiedades del depurador del proyecto  &lt;b&gt;{0}&lt;/b&gt; no pudo ser borrado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1777" />
+      <location filename="../Project/Project.py" line="1765" />
       <source>Add Language</source>
       <translation>Añadir lenguaje</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1778" />
+      <location filename="../Project/Project.py" line="1766" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Debe especificar primero un patrón de traducción.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1919" />
+      <location filename="../Project/Project.py" line="1905" />
       <source>Delete Translation</source>
       <translation>Borrar Traducción</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1946" />
-      <location filename="../Project/Project.py" line="1920" />
+      <location filename="../Project/Project.py" line="1932" />
+      <location filename="../Project/Project.py" line="1906" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de traducción seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1945" />
+      <location filename="../Project/Project.py" line="1931" />
       <source>Delete translation</source>
       <translation>Borrar traducción</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2098" />
-      <location filename="../Project/Project.py" line="2081" />
+      <location filename="../Project/Project.py" line="2084" />
+      <location filename="../Project/Project.py" line="2067" />
       <source>Add File</source>
       <translation>Añadir archivo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2200" />
-      <location filename="../Project/Project.py" line="2082" />
+      <location filename="../Project/Project.py" line="2186" />
+      <location filename="../Project/Project.py" line="2068" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2099" />
+      <location filename="../Project/Project.py" line="2085" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo seleccionado &lt;b&gt;{0}&lt;/b&gt; no ha podido se añadido a &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Razón: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2097" />
       <source>Add file</source>
       <translation>Agregar archivo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2296" />
-      <location filename="../Project/Project.py" line="2112" />
+      <location filename="../Project/Project.py" line="2282" />
+      <location filename="../Project/Project.py" line="2098" />
       <source>The target directory must not be empty.</source>
       <translation>El directorio de destino no puede estar vacío.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2172" />
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2185" />
+      <location filename="../Project/Project.py" line="2158" />
+      <location filename="../Project/Project.py" line="2138" />
       <source>Add Directory</source>
       <translation>Añadir Directorio</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2153" />
+      <location filename="../Project/Project.py" line="2139" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El directorio de origen no contiene archivos que pertenezcan a la categoría seleccionada.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2173" />
+      <location filename="../Project/Project.py" line="2159" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El directorio de destino &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2307" />
-      <location filename="../Project/Project.py" line="2295" />
+      <location filename="../Project/Project.py" line="2293" />
+      <location filename="../Project/Project.py" line="2281" />
       <source>Add directory</source>
       <translation>Añadir directorio</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2308" />
+      <location filename="../Project/Project.py" line="2294" />
       <source>The source directory must not be empty.</source>
       <translation>El directorio de origen no puede estar vacío.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2422" />
-      <location filename="../Project/Project.py" line="2404" />
-      <location filename="../Project/Project.py" line="2388" />
-      <location filename="../Project/Project.py" line="2381" />
+      <location filename="../Project/Project.py" line="2408" />
+      <location filename="../Project/Project.py" line="2390" />
+      <location filename="../Project/Project.py" line="2374" />
+      <location filename="../Project/Project.py" line="2367" />
       <source>Rename File</source>
       <translation>Renombrar Archivo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8089" />
-      <location filename="../Project/Project.py" line="3909" />
-      <location filename="../Project/Project.py" line="2405" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2423" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser renombrado.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2690" />
-      <source>Delete File</source>
-      <translation>Borrar Archivo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2691" />
-      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El archivo seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2719" />
-      <source>Delete Directory</source>
-      <translation>Borrar Directorio</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2720" />
-      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El directorio seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2853" />
-      <source>Create project directory</source>
-      <translation>Crear directorio de proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2854" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El directorio de proyecto &lt;b&gt;{0}&lt;/b&gt; no pudo ser creado.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3682" />
-      <location filename="../Project/Project.py" line="2954" />
-      <source>Create project management directory</source>
-      <translation>Crear directorio de gestión del proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3683" />
-      <location filename="../Project/Project.py" line="2955" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El directorio del proyecto &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2995" />
-      <source>Create main script</source>
-      <translation>Crear script principal</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2996" />
-      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El script principal &lt;b&gt;{0}&lt;/b&gt; no se ha podido crear.&lt;br/&gt;Razón: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3463" />
-      <location filename="../Project/Project.py" line="3020" />
-      <source>Create Makefile</source>
-      <translation>Crear Makefile</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3464" />
-      <location filename="../Project/Project.py" line="3021" />
-      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El makefile &lt;b&gt;{0}&lt;/b&gt; no se ha podido crear.&lt;br/&gt;Razón: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3712" />
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3144" />
-      <location filename="../Project/Project.py" line="3112" />
-      <location filename="../Project/Project.py" line="3094" />
-      <location filename="../Project/Project.py" line="3069" />
-      <location filename="../Project/Project.py" line="3031" />
-      <source>New Project</source>
-      <translation>Proyecto nuevo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3032" />
-      <source>Add existing files to the project?</source>
-      <translation>¿Agregar archivos existentes al proyecto?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3713" />
-      <location filename="../Project/Project.py" line="3070" />
-      <source>Select Version Control System</source>
-      <translation>Seleccion el Sistema de control de versiones (VCS)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3174" />
-      <location filename="../Project/Project.py" line="3095" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>¿Le gustaría editar las opciones de comando para VCS?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3113" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>¿Debe añadirse el archivo de proyecto al repositorio?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3150" />
-      <location filename="../Project/Project.py" line="3139" />
-      <source>None</source>
-      <translation>Ninguno</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3145" />
-      <source>Select version control system for the project</source>
-      <translation>Seleccione el sistema de control de versiones para el proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3356" />
-      <source>Translation Pattern</source>
-      <translation>Patrón de Traducción</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3357" />
-      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
-      <translation>Introduzca el patrón de ruta para los archivos de traducción (use '%language%' in lugar del código de idioma):</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3661" />
-      <source>Open Project</source>
-      <translation>Abrir proyecto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="8075" />
-      <location filename="../Project/Project.py" line="8069" />
-      <location filename="../Project/Project.py" line="8059" />
-      <location filename="../Project/Project.py" line="3894" />
-      <location filename="../Project/Project.py" line="3884" />
-      <location filename="../Project/Project.py" line="3663" />
+      <location filename="../Project/Project.py" line="3895" />
+      <location filename="../Project/Project.py" line="2391" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2409" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser renombrado.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2676" />
+      <source>Delete File</source>
+      <translation>Borrar Archivo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2677" />
+      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El archivo seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2705" />
+      <source>Delete Directory</source>
+      <translation>Borrar Directorio</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2706" />
+      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El directorio seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2839" />
+      <source>Create project directory</source>
+      <translation>Crear directorio de proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2840" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El directorio de proyecto &lt;b&gt;{0}&lt;/b&gt; no pudo ser creado.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3668" />
+      <location filename="../Project/Project.py" line="2940" />
+      <source>Create project management directory</source>
+      <translation>Crear directorio de gestión del proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3669" />
+      <location filename="../Project/Project.py" line="2941" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El directorio del proyecto &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2981" />
+      <source>Create main script</source>
+      <translation>Crear script principal</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2982" />
+      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El script principal &lt;b&gt;{0}&lt;/b&gt; no se ha podido crear.&lt;br/&gt;Razón: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3449" />
+      <location filename="../Project/Project.py" line="3006" />
+      <source>Create Makefile</source>
+      <translation>Crear Makefile</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3450" />
+      <location filename="../Project/Project.py" line="3007" />
+      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El makefile &lt;b&gt;{0}&lt;/b&gt; no se ha podido crear.&lt;br/&gt;Razón: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3698" />
+      <location filename="../Project/Project.py" line="3159" />
+      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3098" />
+      <location filename="../Project/Project.py" line="3080" />
+      <location filename="../Project/Project.py" line="3055" />
+      <location filename="../Project/Project.py" line="3017" />
+      <source>New Project</source>
+      <translation>Proyecto nuevo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3018" />
+      <source>Add existing files to the project?</source>
+      <translation>¿Agregar archivos existentes al proyecto?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3699" />
+      <location filename="../Project/Project.py" line="3056" />
+      <source>Select Version Control System</source>
+      <translation>Seleccion el Sistema de control de versiones (VCS)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3160" />
+      <location filename="../Project/Project.py" line="3081" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>¿Le gustaría editar las opciones de comando para VCS?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3099" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>¿Debe añadirse el archivo de proyecto al repositorio?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3125" />
+      <source>None</source>
+      <translation>Ninguno</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3131" />
+      <source>Select version control system for the project</source>
+      <translation>Seleccione el sistema de control de versiones para el proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3342" />
+      <source>Translation Pattern</source>
+      <translation>Patrón de Traducción</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3343" />
+      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
+      <translation>Introduzca el patrón de ruta para los archivos de traducción (use '%language%' in lugar del código de idioma):</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3647" />
+      <source>Open Project</source>
+      <translation>Abrir proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8061" />
+      <location filename="../Project/Project.py" line="8055" />
+      <location filename="../Project/Project.py" line="8045" />
+      <location filename="../Project/Project.py" line="3880" />
+      <location filename="../Project/Project.py" line="3870" />
+      <location filename="../Project/Project.py" line="3649" />
       <source>Project Files (*.epj)</source>
       <translation>Archivos de proyecto (*.epj)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="3892" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3878" />
       <source>Save Project</source>
       <translation>Guardar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3947" />
+      <location filename="../Project/Project.py" line="3933" />
       <source>Close Project</source>
       <translation>Cerrar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3948" />
+      <location filename="../Project/Project.py" line="3934" />
       <source>The current project has unsaved changes.</source>
       <translation>El proyecto actual tiene cambios sin guardar.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4134" />
+      <location filename="../Project/Project.py" line="4098" />
       <source>Syntax Errors Detected</source>
       <translation>Detectados Errores Sintácticos</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4149" />
-      <location filename="../Project/Project.py" line="4113" />
+      <location filename="../Project/Project.py" line="4135" />
+      <location filename="../Project/Project.py" line="4099" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>El archivo contiene %n archivo(s) con errores de sintaxis.</numerusform>
@@ -63652,1271 +63632,1279 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4793" />
       <source>New project</source>
       <translation>Proyecto nuevo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4809" />
+      <location filename="../Project/Project.py" line="4795" />
       <source>&amp;New...</source>
       <translation>&amp;Nuevo...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4801" />
+      <source>Generate a new project</source>
+      <translation>Generar un nuevo proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4803" />
+      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Nuevo...&lt;/b&gt;&lt;p&gt;Abre un diálogo para introducir la información para un nuevo proyecto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4813" />
+      <source>Open project</source>
+      <translation>Abrir proyecto</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4815" />
-      <source>Generate a new project</source>
-      <translation>Generar un nuevo proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4817" />
-      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Nuevo...&lt;/b&gt;&lt;p&gt;Abre un diálogo para introducir la información para un nuevo proyecto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4827" />
-      <source>Open project</source>
-      <translation>Abrir proyecto</translation>
+      <source>&amp;Open...</source>
+      <translation>&amp;Abrir...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4821" />
+      <source>Open an existing project</source>
+      <translation>Abrir un proyecto existente</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4823" />
+      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Abrir...&lt;/b&gt;&lt;p&gt;Abre un proyecto existente..&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4829" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Abrir...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4835" />
-      <source>Open an existing project</source>
-      <translation>Abrir un proyecto existente</translation>
+      <source>Open remote project</source>
+      <translation>Abrir proyecto remoto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4831" />
+      <source>Open (Remote)...</source>
+      <translation>Abrir (Remoto)...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4837" />
-      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Abrir...&lt;/b&gt;&lt;p&gt;Abre un proyecto existente..&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4843" />
-      <source>Open remote project</source>
-      <translation>Abrir proyecto remoto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4845" />
-      <source>Open (Remote)...</source>
-      <translation>Abrir (Remoto)...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation>Abrir un proyecto remoto existente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4853" />
+      <location filename="../Project/Project.py" line="4839" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abrir (Remoto)...&lt;/b&gt;&lt;p&gt;Esto abre un proyecto remoto existente..&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4862" />
+      <location filename="../Project/Project.py" line="4848" />
       <source>Reload project</source>
       <translation>Recargar proyecto</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4850" />
+      <source>Re&amp;load</source>
+      <translation>Re&amp;cargar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4856" />
+      <source>Reload the current project</source>
+      <translation>Regargar el proyecto actual</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4858" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Recargar&lt;/b&gt;&lt;p&gt;Esto recarga el proyecto actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4864" />
-      <source>Re&amp;load</source>
-      <translation>Re&amp;cargar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4870" />
-      <source>Reload the current project</source>
-      <translation>Regargar el proyecto actual</translation>
+      <source>Close project</source>
+      <translation>Cerrar proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4866" />
+      <source>&amp;Close</source>
+      <translation>&amp;Cerrar</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4872" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Recargar&lt;/b&gt;&lt;p&gt;Esto recarga el proyecto actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4878" />
-      <source>Close project</source>
-      <translation>Cerrar proyecto</translation>
+      <source>Close the current project</source>
+      <translation>Cierra el proyecto actual</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4874" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Cerrar&lt;/b&gt;&lt;p&gt;Cierra el proyecto actualt.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4880" />
-      <source>&amp;Close</source>
-      <translation>&amp;Cerrar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4886" />
-      <source>Close the current project</source>
-      <translation>Cierra el proyecto actual</translation>
+      <source>Save project</source>
+      <translation>Guardar proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5177" />
+      <location filename="../Project/Project.py" line="4882" />
+      <source>&amp;Save</source>
+      <translation>&amp;Guardar</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4888" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Cerrar&lt;/b&gt;&lt;p&gt;Cierra el proyecto actualt.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4894" />
-      <source>Save project</source>
-      <translation>Guardar proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5191" />
-      <location filename="../Project/Project.py" line="4896" />
-      <source>&amp;Save</source>
-      <translation>&amp;Guardar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Guarda el proyecto actual</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4890" />
+      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Guardar&lt;/b&gt;&lt;p&gt;Guarda el proyecto actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
+      <source>Save project as</source>
+      <translation>Guardar proyecto como</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4898" />
+      <source>Save &amp;as...</source>
+      <translation>Guardar co&amp;mo...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4904" />
-      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Guardar&lt;/b&gt;&lt;p&gt;Guarda el proyecto actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4910" />
-      <source>Save project as</source>
-      <translation>Guardar proyecto como</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4912" />
-      <source>Save &amp;as...</source>
-      <translation>Guardar co&amp;mo...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation>Guardar el proyecto actual en un nuevo archivo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4920" />
+      <location filename="../Project/Project.py" line="4906" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar como&lt;/b&gt;&lt;p&gt;Guarda el proyecto en otro archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4929" />
+      <location filename="../Project/Project.py" line="4915" />
       <source>Save project as (Remote)</source>
       <translation>Guardar proyecto como (Remoto)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4931" />
+      <location filename="../Project/Project.py" line="4917" />
       <source>Save as (Remote)...</source>
       <translation>Guardar como (Remoto)...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4938" />
+      <location filename="../Project/Project.py" line="4924" />
       <source>Save the current project to a new remote file</source>
       <translation>Guardar el proyecto actual a un nuevo archivo remoto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4927" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar como (Remoto)&lt;/b&gt;&lt;p&gt;Esto guarda el proyecto actual en un nuevo archivo remoto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4957" />
+      <location filename="../Project/Project.py" line="4943" />
       <source>Add files to project</source>
       <translation>Agregar archivos al proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4959" />
+      <location filename="../Project/Project.py" line="4945" />
       <source>Add &amp;files...</source>
       <translation>&amp;Agregar archivos...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4965" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>Add files to the current project</source>
       <translation>Añadir archivos al proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4967" />
+      <location filename="../Project/Project.py" line="4953" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Añadir archivos...&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir archivos al proyecto actual. El lugar donde se van a añadir es determinado por la extensión del nombre de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4978" />
+      <location filename="../Project/Project.py" line="4964" />
       <source>Add directory to project</source>
       <translation>Agregar directorio al proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4980" />
+      <location filename="../Project/Project.py" line="4966" />
       <source>Add directory...</source>
       <translation>Agregar directorio...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4987" />
+      <location filename="../Project/Project.py" line="4973" />
       <source>Add a directory to the current project</source>
       <translation>Agregar directorio al proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4990" />
+      <location filename="../Project/Project.py" line="4976" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Añadir directorio...&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir un directorio al proyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5000" />
+      <location filename="../Project/Project.py" line="4986" />
       <source>Add translation to project</source>
       <translation>Añadir traducción al proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5002" />
+      <location filename="../Project/Project.py" line="4988" />
       <source>Add &amp;translation...</source>
       <translation>Añadir &amp;Traducción...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4995" />
+      <source>Add a translation to the current project</source>
+      <translation>Añadir una traducción al proyecto actual</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4998" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Añadir traducción...&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir una traducción al proyecto actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5008" />
+      <source>Search new files</source>
+      <translation>Buscar archivos nuevos</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5009" />
-      <source>Add a translation to the current project</source>
-      <translation>Añadir una traducción al proyecto actual</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5012" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Añadir traducción...&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir una traducción al proyecto actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5022" />
-      <source>Search new files</source>
-      <translation>Buscar archivos nuevos</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>Bus&amp;car archivos nuevos...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5015" />
+      <source>Search new files in the project directory.</source>
+      <translation>Bucar nuevos archivos en el directorio de proyecto.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5017" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Buscar nuevos archivos...&lt;/b&gt;&lt;p&gt;Busca nuevos archivos (fuentes, forms, ...) en el directorio del proyecto y en los subdirectorios registrados.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5027" />
+      <source>Search Project File</source>
+      <translation>Buscar Archivo en Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5028" />
+      <source>Search Project File...</source>
+      <translation>Buscar Archivo en Proyecto...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5029" />
-      <source>Search new files in the project directory.</source>
-      <translation>Bucar nuevos archivos en el directorio de proyecto.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5031" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Buscar nuevos archivos...&lt;/b&gt;&lt;p&gt;Busca nuevos archivos (fuentes, forms, ...) en el directorio del proyecto y en los subdirectorios registrados.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File</source>
-      <translation>Buscar Archivo en Proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5042" />
-      <source>Search Project File...</source>
-      <translation>Buscar Archivo en Proyecto...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5048" />
+      <location filename="../Project/Project.py" line="5034" />
       <source>Search for a file in the project list of files.</source>
       <translation>Bucar un archivo en el listado de archivos del proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5050" />
+      <location filename="../Project/Project.py" line="5036" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar Archivo en el Proyecto&lt;/b&gt;&lt;p&gt;Busca un archivo en el listado de archivos del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5059" />
+      <location filename="../Project/Project.py" line="5045" />
       <source>Project properties</source>
       <translation>Propiedades del proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5061" />
+      <location filename="../Project/Project.py" line="5047" />
       <source>&amp;Properties...</source>
       <translation>&amp;Propiedades...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5067" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Show the project properties</source>
       <translation>Ver las propiedades del proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5069" />
+      <location filename="../Project/Project.py" line="5055" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propiedades...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para editar las propiedades del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5078" />
+      <location filename="../Project/Project.py" line="5064" />
       <source>User project properties</source>
       <translation>Propiedades del usuario del proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5080" />
+      <location filename="../Project/Project.py" line="5066" />
       <source>&amp;User Properties...</source>
       <translation>Propiedades del &amp;Usuario...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5073" />
+      <source>Show the user specific project properties</source>
+      <translation>Muestra propiedades del proyecto específicas del usuario</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5076" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Propiedades del Usuario...&lt;/b&gt;&lt;p&gt;Abre un diálogo par editar las propiedades del proyecto específicas del usuario.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5086" />
+      <source>Filetype Associations</source>
+      <translation>Asociación de tipos de archivo</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5087" />
-      <source>Show the user specific project properties</source>
-      <translation>Muestra propiedades del proyecto específicas del usuario</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5090" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Propiedades del Usuario...&lt;/b&gt;&lt;p&gt;Abre un diálogo par editar las propiedades del proyecto específicas del usuario.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5100" />
-      <source>Filetype Associations</source>
-      <translation>Asociación de tipos de archivo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation>Asociación de tipos de archivo...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5108" />
+      <location filename="../Project/Project.py" line="5094" />
       <source>Show the project file type associations</source>
       <translation>Mostrar asociaciones de tipo de archivo del proyecto</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5097" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Asociaciones de tipos de archivo...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para editar asociaciones de tipos de archivo del proyecto. Estas asociaciones determinan el tipo (fuentes, formulario, interfaces, protocolos u otros) con un patrón de nombre de archivo. Se usan al añadir archivos al proyecto y al realizar una búsqueda de nuevos archivos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5110" />
+      <source>Lexer Associations</source>
+      <translation>Asociaciones de Analizador Léxico</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5111" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Asociaciones de tipos de archivo...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para editar asociaciones de tipos de archivo del proyecto. Estas asociaciones determinan el tipo (fuentes, formulario, interfaces, protocolos u otros) con un patrón de nombre de archivo. Se usan al añadir archivos al proyecto y al realizar una búsqueda de nuevos archivos.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5124" />
-      <source>Lexer Associations</source>
-      <translation>Asociaciones de Analizador Léxico</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation>Asociaciones de Analizador Léxico...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5132" />
+      <location filename="../Project/Project.py" line="5118" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation>Ver las asociaciones de analizador léxico del proyecto (sobreescribiendo valores por defecto)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5135" />
+      <location filename="../Project/Project.py" line="5121" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Asociaciones de Analizador Léxico ...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para editar las asociaciones de analizador léxico del proyecto. Estas asociaciones sobreescriben las asociaciones de analizador léxico globales. Los analizadores léxicos se utilizan para resaltar el texto en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5153" />
+      <location filename="../Project/Project.py" line="5139" />
       <source>Debugger Properties</source>
       <translation>Propiedades del depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5154" />
+      <location filename="../Project/Project.py" line="5140" />
       <source>Debugger &amp;Properties...</source>
       <translation>&amp;Propiedades del depurador...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5160" />
+      <location filename="../Project/Project.py" line="5146" />
       <source>Show the debugger properties</source>
       <translation>Muestra las propiedades del depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5162" />
+      <location filename="../Project/Project.py" line="5148" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propiedades del Depurador...&lt;/b&gt;&lt;p&gt;Abre un diálogo par editar las propiedades del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5158" />
       <source>Load</source>
       <translation>Cargar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5173" />
+      <location filename="../Project/Project.py" line="5159" />
       <source>&amp;Load</source>
       <translation>&amp;Cargar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5179" />
+      <location filename="../Project/Project.py" line="5165" />
       <source>Load the debugger properties</source>
       <translation>Cargar las propiedades del depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5181" />
+      <location filename="../Project/Project.py" line="5167" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cargar Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Carga las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
+      <location filename="../Project/Project.py" line="5176" />
       <source>Save</source>
       <translation>Guardar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5197" />
+      <location filename="../Project/Project.py" line="5183" />
       <source>Save the debugger properties</source>
       <translation>Guardar propiedades del depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5199" />
+      <location filename="../Project/Project.py" line="5185" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Guarda las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5208" />
+      <location filename="../Project/Project.py" line="5194" />
       <source>Delete</source>
       <translation>Borrar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5209" />
+      <location filename="../Project/Project.py" line="5195" />
       <source>&amp;Delete</source>
       <translation>&amp;Borrar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5215" />
+      <location filename="../Project/Project.py" line="5201" />
       <source>Delete the debugger properties</source>
       <translation>Borrar las propiedades del depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5217" />
+      <location filename="../Project/Project.py" line="5203" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Borrar Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Borra el archivo que contiene las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5227" />
+      <location filename="../Project/Project.py" line="5213" />
       <source>Reset</source>
       <translation>Reiniciar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5228" />
+      <location filename="../Project/Project.py" line="5214" />
       <source>&amp;Reset</source>
       <translation>&amp;Reiniciar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5234" />
+      <location filename="../Project/Project.py" line="5220" />
       <source>Reset the debugger properties</source>
       <translation>Restablecer las propiedades del depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5236" />
+      <location filename="../Project/Project.py" line="5222" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Restablecer Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Restablece las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5252" />
-      <location filename="../Project/Project.py" line="5251" />
+      <location filename="../Project/Project.py" line="5238" />
+      <location filename="../Project/Project.py" line="5237" />
       <source>Load session</source>
       <translation>Cargar sesión</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5258" />
+      <location filename="../Project/Project.py" line="5244" />
       <source>Load the projects session file.</source>
       <translation>Cargar archivo de sesión de proyectos.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5260" />
+      <location filename="../Project/Project.py" line="5246" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cargar sesión&lt;/b&gt;&lt;p&gt;Carga el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.&lt;br&gt;- todos los archivos de fuentes abiertos&lt;br&gt;- todos los puntos de interrupción&lt;br&gt;- todos los argumentos de línea de comandos&lt;br&gt;- el directorio de trabajo&lt;br&gt;- el flag de reporte de excepciones&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5276" />
-      <location filename="../Project/Project.py" line="5275" />
+      <location filename="../Project/Project.py" line="5262" />
+      <location filename="../Project/Project.py" line="5261" />
       <source>Save session</source>
       <translation>Guardar sesión</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5282" />
+      <location filename="../Project/Project.py" line="5268" />
       <source>Save the projects session file.</source>
       <translation>Guardar archivos de sessión de proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5284" />
+      <location filename="../Project/Project.py" line="5270" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar sesión&lt;/b&gt;&lt;p&gt;Guarda el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.&lt;br&gt;- todos los archivos de fuentes abiertos&lt;br&gt;- todos los puntos de interrupción&lt;br&gt;- todos los argumentos de línea de comandos&lt;br&gt;- el directorio de trabajo&lt;br&gt;- el flag de reporte de excepciones&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5300" />
-      <location filename="../Project/Project.py" line="5299" />
+      <location filename="../Project/Project.py" line="5286" />
+      <location filename="../Project/Project.py" line="5285" />
       <source>Delete session</source>
       <translation>Borrar sesión</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5306" />
+      <location filename="../Project/Project.py" line="5292" />
       <source>Delete the projects session file.</source>
       <translation>Borrar el archivo de sesión de proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5308" />
+      <location filename="../Project/Project.py" line="5294" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Borrar sesión&lt;/b&gt;&lt;p&gt;Borra el archivo de sesión del proyecto&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5323" />
+      <location filename="../Project/Project.py" line="5309" />
       <source>Code Metrics</source>
       <translation>Métricas de código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5324" />
+      <location filename="../Project/Project.py" line="5310" />
       <source>&amp;Code Metrics...</source>
       <translation>Métricas de &amp;código...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5317" />
+      <source>Show some code metrics for the project.</source>
+      <translation>Muestra algunas métricas del código para este proyecto.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5320" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Métricas de Código...&lt;/b&gt;&lt;p&gt;Muestra algunas métricas de código para todos los archivos Python en el proyecto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5330" />
+      <source>Python Code Coverage</source>
+      <translation>Cobertura de Código Python</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5331" />
-      <source>Show some code metrics for the project.</source>
-      <translation>Muestra algunas métricas del código para este proyecto.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5334" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Métricas de Código...&lt;/b&gt;&lt;p&gt;Muestra algunas métricas de código para todos los archivos Python en el proyecto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5344" />
-      <source>Python Code Coverage</source>
-      <translation>Cobertura de Código Python</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation>Co&amp;bertura de código...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5338" />
+      <source>Show code coverage information for the project.</source>
+      <translation>Muestra información de cobertura de código para el proyecto.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5341" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Cobertura de Código...&lt;/b&gt;&lt;p&gt;Muestra la información de cobertura de código para todos los archivos Python en el proyecto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6775" />
+      <location filename="../Project/Project.py" line="6762" />
+      <location filename="../Project/Project.py" line="5351" />
+      <source>Profile Data</source>
+      <translation>Datos de perfil</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5352" />
-      <source>Show code coverage information for the project.</source>
-      <translation>Muestra información de cobertura de código para el proyecto.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5355" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Cobertura de Código...&lt;/b&gt;&lt;p&gt;Muestra la información de cobertura de código para todos los archivos Python en el proyecto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6789" />
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="5365" />
-      <source>Profile Data</source>
-      <translation>Datos de perfil</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>Datos de &amp;pefil...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5373" />
+      <location filename="../Project/Project.py" line="5359" />
       <source>Show profiling data for the project.</source>
       <translation>Mostrar datos de profiling para el proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5376" />
+      <location filename="../Project/Project.py" line="5362" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Datos de Profiling...&lt;/b&gt;&lt;p&gt;Muestra datos de profiling para el proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="6827" />
+      <location filename="../Project/Project.py" line="5377" />
       <source>Application Diagram</source>
       <translation>Diagrama de Aplicación</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5392" />
+      <location filename="../Project/Project.py" line="5378" />
       <source>&amp;Application Diagram...</source>
       <translation>Diagrama de &amp;Aplicación...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5399" />
+      <location filename="../Project/Project.py" line="5385" />
       <source>Show a diagram of the project.</source>
       <translation>Mostrar diagrama del proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5402" />
+      <location filename="../Project/Project.py" line="5388" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diagrama de Aplicación...&lt;/b&gt;&lt;p&gt;Muestra un diagrama del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5411" />
+      <location filename="../Project/Project.py" line="5397" />
       <source>Load Diagram</source>
       <translation>Cargar Diagrama</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5412" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Load Diagram...</source>
       <translation>&amp;Cargar Diagrama...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5418" />
+      <location filename="../Project/Project.py" line="5404" />
       <source>Load a diagram from file.</source>
       <translation>CArgar diagrama desde archivo.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5420" />
+      <location filename="../Project/Project.py" line="5406" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cargar Diagrama...&lt;/b&gt;&lt;p&gt;Carga un diagrama desde un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
-      <location filename="../Project/Project.py" line="6954" />
-      <location filename="../Project/Project.py" line="5435" />
+      <location filename="../Project/Project.py" line="6995" />
+      <location filename="../Project/Project.py" line="6940" />
+      <location filename="../Project/Project.py" line="5421" />
       <source>Create Package List</source>
       <translation>Crear Lista del Paquete</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5437" />
+      <location filename="../Project/Project.py" line="5423" />
       <source>Create &amp;Package List</source>
       <translation>Crear &amp;Package List</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5444" />
+      <location filename="../Project/Project.py" line="5430" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation>Crear un archivo inicial PKGLIST para un plugin para eric.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="5433" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Crear Package List&lt;/b&gt;&lt;p&gt;Crea una lista inicial de archivos para incluir en un archivo de plugin para eric. Esta lista se crea a partir del archivo de proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7080" />
-      <location filename="../Project/Project.py" line="5458" />
+      <location filename="../Project/Project.py" line="7066" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create Plugin Archives</source>
       <translation>Crear Archivos de Plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5460" />
+      <location filename="../Project/Project.py" line="5446" />
       <source>Create Plugin &amp;Archives</source>
       <translation>Crear &amp;Archivos de Plugin</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5452" />
+      <source>Create eric plugin archive files.</source>
+      <translation>Crear ficheros para archivo de plugin de eric.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5454" />
+      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Crear Archivo de Plugin&lt;/b&gt;&lt;p&gt;Crea ficheros para archivo de plugin de eric utilizando el listado de ficheros proporcionados en un archivo PKGLIST*. El nombre de archivo se crea a partir del nombre del script principal si no se desinga uno en el archivo de lista de package.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5466" />
-      <source>Create eric plugin archive files.</source>
-      <translation>Crear ficheros para archivo de plugin de eric.</translation>
+      <source>Create Plugin Archives (Snapshot)</source>
+      <translation>Crear Archivos de Plugin (Snapshot)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5468" />
-      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Crear Archivo de Plugin&lt;/b&gt;&lt;p&gt;Crea ficheros para archivo de plugin de eric utilizando el listado de ficheros proporcionados en un archivo PKGLIST*. El nombre de archivo se crea a partir del nombre del script principal si no se desinga uno en el archivo de lista de package.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5480" />
-      <source>Create Plugin Archives (Snapshot)</source>
-      <translation>Crear Archivos de Plugin (Snapshot)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation>Crear Archivos de Plugin (&amp;Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5489" />
+      <location filename="../Project/Project.py" line="5475" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation>Crear ficheros para archivo de plugin de eric (snapshot releases).</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5492" />
+      <location filename="../Project/Project.py" line="5478" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Crear Archivos de Plugin (Snapshot)&lt;/b&gt;&lt;p&gt;Crea ficheros para archivo de plugin de eric usando el listado de ficheros dado en un archivo PKGLIST*. El nombre del archivo se construye a partir del nombre del script principal si no se designa uno en el archivo de package list. La entrada de versión del script principal se modifica para reflejar una snapshot release.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7536" />
-      <location filename="../Project/Project.py" line="7507" />
-      <location filename="../Project/Project.py" line="7461" />
-      <location filename="../Project/Project.py" line="7413" />
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="5497" />
       <source>Execute Make</source>
       <translation>Ejecutar Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5512" />
+      <location filename="../Project/Project.py" line="5498" />
       <source>&amp;Execute Make</source>
       <translation>&amp;Ejecutar Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5518" />
+      <location filename="../Project/Project.py" line="5504" />
       <source>Perform a 'make' run.</source>
       <translation>Ejecutar un 'make'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5520" />
+      <location filename="../Project/Project.py" line="5506" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ejecutar Make&lt;/b&gt;&lt;p&gt;Ejecuta un 'make' para reconstruir el target configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7513" />
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="7499" />
+      <location filename="../Project/Project.py" line="5516" />
       <source>Test for Changes</source>
       <translation>Comprobar Cambios</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5531" />
+      <location filename="../Project/Project.py" line="5517" />
       <source>&amp;Test for Changes</source>
       <translation>&amp;Comprobar Cambios</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5524" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation>Preguntar a 'make' si es necesario reconstruir.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5541" />
+      <location filename="../Project/Project.py" line="5527" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Comprobar Cambios&lt;/b&gt;&lt;p&gt;Pregunta a 'make si es necesario reconstruir el target configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5559" />
+      <location filename="../Project/Project.py" line="5545" />
       <source>Create SBOM File</source>
       <translation>Crear Archivo SBOM</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5560" />
+      <location filename="../Project/Project.py" line="5546" />
       <source>Create &amp;SBOM File</source>
       <translation>Crear Archivo &amp;SBOM</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5553" />
+      <source>Create a SBOM file of the project dependencies.</source>
+      <translation>Crear un archivo SBOM de dependencias del proyecto.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5556" />
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Crear Archivo SBOM&lt;/b&gt;&lt;p&gt;Esto permite la creación de un archivo SBOM de las dependencias del proyecto. Puede basarse en varias fuentes de input y se guardará como un archivo CycloneDX SBOM.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5567" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation>Crear un archivo SBOM de dependencias del proyecto.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5570" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Crear Archivo SBOM&lt;/b&gt;&lt;p&gt;Esto permite la creación de un archivo SBOM de las dependencias del proyecto. Puede basarse en varias fuentes de input y se guardará como un archivo CycloneDX SBOM.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5581" />
       <source>Clear Byte Code Caches</source>
       <translation>Limpiar Cachés de Byte Code</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5582" />
+      <location filename="../Project/Project.py" line="5568" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation>Limpiar &amp;Cachés de Byte Code</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5589" />
+      <location filename="../Project/Project.py" line="5575" />
       <source>Clear the byte code caches of the project.</source>
       <translation>Limpiar las cachés de byte code del proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5592" />
+      <location filename="../Project/Project.py" line="5578" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Limpiar Cachés de Byte Code&lt;/b&gt;&lt;p&gt;Esto borra todos los directorios que contienen archivos de caché de byte code cache.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5608" />
+      <location filename="../Project/Project.py" line="5594" />
       <source>About Black</source>
       <translation>Acerca de Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5609" />
+      <location filename="../Project/Project.py" line="5595" />
       <source>&amp;Black</source>
       <translation>&amp;Black</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5601" />
+      <source>Show some information about 'Black'.</source>
+      <translation>Mostrar información acerca de 'Black'.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5603" />
+      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;Esto muestra información acerca de la herramienta 'Black' instalada.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5615" />
-      <source>Show some information about 'Black'.</source>
-      <translation>Mostrar información acerca de 'Black'.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5617" />
-      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;Esto muestra información acerca de la herramienta 'Black' instalada.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5629" />
       <source>Format Code</source>
       <translation>Formatear Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5630" />
+      <location filename="../Project/Project.py" line="5616" />
       <source>&amp;Format Code</source>
       <translation>&amp;Formatear Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5637" />
+      <location filename="../Project/Project.py" line="5623" />
       <source>Format the project sources with 'Black'.</source>
       <translation>Formatear las fuentes del proyecto con 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5640" />
+      <location filename="../Project/Project.py" line="5626" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Formatear Código&lt;/b&gt;&lt;p&gt;Muestra un díalogo para introducir parámetros para ejecutar el formato y reformatea las fuentes del proyecto usando 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5652" />
+      <location filename="../Project/Project.py" line="5638" />
       <source>Check Code Formatting</source>
       <translation>Comprobar Formato de Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5653" />
+      <location filename="../Project/Project.py" line="5639" />
       <source>&amp;Check Code Formatting</source>
       <translation>&amp;Comprobar Formato de Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5660" />
+      <location filename="../Project/Project.py" line="5646" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation>Comprobar si se necesita reformatear las fuentes del proyecto con 'Black'.</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5651" />
+      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Comprobar Formato de Código&lt;/b&gt;&lt;p&gt;Muestra un diálogo para introducir parámetros de comprobación de formato y lleva a cabo una comprobación, si las fuentes del proyecto necesitan ser reformateadas utilizando 'Black'.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5664" />
+      <source>Code Formatting Diff</source>
+      <translation>Diff de Formato de Código</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5665" />
-      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Comprobar Formato de Código&lt;/b&gt;&lt;p&gt;Muestra un diálogo para introducir parámetros de comprobación de formato y lleva a cabo una comprobación, si las fuentes del proyecto necesitan ser reformateadas utilizando 'Black'.&lt;/p&gt;</translation>
+      <source>Code Formatting &amp;Diff</source>
+      <translation>&amp;Diff de Formato de Código</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5672" />
+      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
+      <translation>Generar un diff unificado de reformateo potencial de fuentes del proyecto con 'Black'.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5678" />
-      <source>Code Formatting Diff</source>
-      <translation>Diff de Formato de Código</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5679" />
-      <source>Code Formatting &amp;Diff</source>
-      <translation>&amp;Diff de Formato de Código</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5686" />
-      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
-      <translation>Generar un diff unificado de reformateo potencial de fuentes del proyecto con 'Black'.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diff de Formato de Código&lt;/b&gt;&lt;p&gt;Muestra un diálogo para introducir parámetros de diff de formato y genera un diff unificado de reformateo de fuentes del proyecto utilizando 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <location filename="../Project/Project.py" line="5807" />
-      <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5706" />
-      <location filename="../Project/Project.py" line="5705" />
+      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5792" />
+      <location filename="../Project/Project.py" line="5692" />
+      <location filename="../Project/Project.py" line="5691" />
       <source>Configure</source>
       <translation>Configurar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5713" />
+      <location filename="../Project/Project.py" line="5699" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation>Introducir los parámetros para el formateo de las fuentes del proyecto con 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5718" />
+      <location filename="../Project/Project.py" line="5704" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Configurar&lt;/b&gt;&lt;p&gt;Muestra un diálogo para introducir los parámetros de formateo de las fuentes del proyecto con 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5734" />
+      <location filename="../Project/Project.py" line="5720" />
       <source>About isort</source>
       <translation>Acerca de isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5735" />
+      <location filename="../Project/Project.py" line="5721" />
       <source>&amp;isort</source>
       <translation>&amp;isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5741" />
+      <location filename="../Project/Project.py" line="5727" />
       <source>Show some information about 'isort'.</source>
       <translation>Mostrar información acerca de 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5743" />
+      <location filename="../Project/Project.py" line="5729" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;Esto mustra información acerade la herramienta instalada 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5756" />
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Sort Imports</source>
       <translation>Ordenar Imports</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5763" />
+      <location filename="../Project/Project.py" line="5749" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation>Ordenar las declaraciones import de las fuentes del proyecto con 'isort'.</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5752" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Ordenar Imports&lt;/b&gt;&lt;p&gt;Esto muestra un diálogo para introducir parámetros para ejecutar la ordenación de imports y ordena las declaraciones import del proyecto utilizando 'isort'.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5766" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Ordenar Imports&lt;/b&gt;&lt;p&gt;Esto muestra un diálogo para introducir parámetros para ejecutar la ordenación de imports y ordena las declaraciones import del proyecto utilizando 'isort'.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5780" />
-      <location filename="../Project/Project.py" line="5779" />
+      <location filename="../Project/Project.py" line="5765" />
       <source>Imports Sorting Diff</source>
       <translation>Diff de Ordenacion de Imports</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5787" />
+      <location filename="../Project/Project.py" line="5773" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation>Generar un diff unificado de reordenación potencial de imports con 'isort' de las fuentes del proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diff de Ordenación de Imports&lt;/b&gt;&lt;p&gt;Esto muestra un diálogo para introducir los parámetros para ejecutar un diff de ordenación de imports y genera un diff unificado de cambios potenciales en las fuentes del proyecto utilizando 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5814" />
+      <location filename="../Project/Project.py" line="5800" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation>Introducir los parámetros para reordenar las declaraciones import en las fuentes del proyecto con 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5820" />
+      <location filename="../Project/Project.py" line="5806" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Configurar&lt;/b&gt;&lt;p&gt;Esto muestra un diálogo para introducir los parámetros para reordenar las declaraciones import de las fuetnes del proyecto con 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5836" />
+      <location filename="../Project/Project.py" line="5822" />
       <source>Install Project</source>
       <translation>Instalar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5823" />
       <source>&amp;Install Project</source>
       <translation>&amp;Instalar Proyecto</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5830" />
+      <source>Install the project into the embedded environment.</source>
+      <translation>Instalar el proyecto en el entorno embebido.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5833" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Instalar Proyecto&lt;/b&gt;&lt;p&gt;Esto instala el proyecto en el entorno virtual embebido en modo de edición (es decir, en modo de desarrollo).&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5844" />
-      <source>Install the project into the embedded environment.</source>
-      <translation>Instalar el proyecto en el entorno embebido.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Instalar Proyecto&lt;/b&gt;&lt;p&gt;Esto instala el proyecto en el entorno virtual embebido en modo de edición (es decir, en modo de desarrollo).&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation>&amp;Configurar</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5851" />
+      <source>Configure the embedded environment.</source>
+      <translation>Configurar el entorno embebido.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5854" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Configurar&lt;/b&gt;&lt;p&gt;Esto abre un diálogo para configurar el entorno virtual embebido del proyecto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5864" />
+      <source>Upgrade</source>
+      <translation>Actualizar</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5865" />
-      <source>Configure the embedded environment.</source>
-      <translation>Configurar el entorno embebido.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5868" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Configurar&lt;/b&gt;&lt;p&gt;Esto abre un diálogo para configurar el entorno virtual embebido del proyecto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5878" />
-      <source>Upgrade</source>
-      <translation>Actualizar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation>Act&amp;ualizar</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5871" />
+      <source>Upgrade the embedded environment.</source>
+      <translation>Actualizar el entorno embebido.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5873" />
+      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Actualizar&lt;/b&gt;&lt;p&gt;Esto abre un dialogo para introducir los parametros para la actualizacion del entorno embebido del proyecto.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5885" />
-      <source>Upgrade the embedded environment.</source>
-      <translation>Actualizar el entorno embebido.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5887" />
-      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Actualizar&lt;/b&gt;&lt;p&gt;Esto abre un dialogo para introducir los parametros para la actualizacion del entorno embebido del proyecto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation>Recrear</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5900" />
+      <location filename="../Project/Project.py" line="5886" />
       <source>&amp;Recreate</source>
       <translation>&amp;Recrear</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5906" />
+      <location filename="../Project/Project.py" line="5892" />
       <source>Recreate the embedded environment.</source>
       <translation>Recrear el entorno embebido.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5908" />
+      <location filename="../Project/Project.py" line="5894" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Recrear&lt;/b&gt;&lt;p&gt;Esto abre un dialogo para introducir los parametros para recrear el entorno virtual embebido del proyecto. Se limpia previamente el entorno existente.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5926" />
+      <source>&amp;Project</source>
+      <translation>&amp;Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5927" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Abrir Proyectos &amp;Recientes</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5929" />
+      <source>Session</source>
+      <translation>Sesión</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5930" />
+      <source>Debugger</source>
+      <translation>Depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5931" />
+      <source>Embedded Environment</source>
+      <translation>Entorno Embebido</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5933" />
+      <source>Project-T&amp;ools</source>
+      <translation>Herramientas de Pr&amp;ojecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5934" />
+      <source>&amp;Version Control</source>
+      <translation>Control de &amp;Versiones</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5938" />
+      <source>Chec&amp;k</source>
+      <translation>Veri&amp;ficar</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5940" />
-      <source>&amp;Project</source>
-      <translation>&amp;Proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5941" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Abrir Proyectos &amp;Recientes</translation>
+      <source>Code &amp;Formatting</source>
+      <translation>&amp;Formato de Código</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5942" />
+      <source>Sho&amp;w</source>
+      <translation>V&amp;er</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Session</source>
-      <translation>Sesión</translation>
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagramas</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
-      <source>Debugger</source>
-      <translation>Depurador</translation>
+      <source>Pac&amp;kagers</source>
+      <translation>Empa&amp;quetadores</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Embedded Environment</source>
-      <translation>Entorno Embebido</translation>
+      <source>Source &amp;Documentation</source>
+      <translation>Origen de &amp;Documentación</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Project-T&amp;ools</source>
-      <translation>Herramientas de Pr&amp;ojecto</translation>
+      <source>Make</source>
+      <translation>Make</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
-      <source>&amp;Version Control</source>
-      <translation>Control de &amp;Versiones</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5952" />
-      <source>Chec&amp;k</source>
-      <translation>Veri&amp;ficar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5954" />
-      <source>Code &amp;Formatting</source>
-      <translation>&amp;Formato de Código</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5956" />
-      <source>Sho&amp;w</source>
-      <translation>V&amp;er</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5957" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagramas</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5958" />
-      <source>Pac&amp;kagers</source>
-      <translation>Empa&amp;quetadores</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5959" />
-      <source>Source &amp;Documentation</source>
-      <translation>Origen de &amp;Documentación</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5961" />
-      <source>Make</source>
-      <translation>Make</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation>Otras Herramientas</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6124" />
-      <location filename="../Project/Project.py" line="6122" />
+      <location filename="../Project/Project.py" line="6110" />
+      <location filename="../Project/Project.py" line="6108" />
       <source>Project</source>
       <translation>Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6206" />
+      <location filename="../Project/Project.py" line="6192" />
       <source>&amp;Clear</source>
       <translation>&amp;Borrar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6403" />
+      <location filename="../Project/Project.py" line="6389" />
       <source>Search New Files</source>
       <translation>Buscar nuevos archivos</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6404" />
+      <location filename="../Project/Project.py" line="6390" />
       <source>There were no new files found to be added.</source>
       <translation>No se han encontrado nuevos archivos para ser añadidos.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6565" />
-      <location filename="../Project/Project.py" line="6552" />
+      <location filename="../Project/Project.py" line="6551" />
+      <location filename="../Project/Project.py" line="6538" />
       <source>Version Control System</source>
       <translation>Sistema de control de versiones</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6553" />
+      <location filename="../Project/Project.py" line="6539" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El VCS seleccionado &lt;b&gt;{0}&lt;/b&gt; no ha sido encontrado.&lt;br&gt;Revirtiendo sobreescritura.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6566" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El VCS seleccionado &lt;b&gt;{0}&lt;/b&gt; no ha sido encontrado.&lt;br&gt;Deshabilitando control de versiones.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="6709" />
+      <source>Coverage Data</source>
+      <translation>Datos de Cobertura</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6763" />
+      <location filename="../Project/Project.py" line="6710" />
+      <source>There is no main script defined for the current project. Aborting</source>
+      <translation>No hay script principal definido para el proyecto actual. Abortando</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6722" />
+      <source>Code Coverage</source>
+      <translation>Cobertura de codigo</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="6723" />
-      <source>Coverage Data</source>
-      <translation>Datos de Cobertura</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6777" />
-      <location filename="../Project/Project.py" line="6724" />
-      <source>There is no main script defined for the current project. Aborting</source>
-      <translation>No hay script principal definido para el proyecto actual. Abortando</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6736" />
-      <source>Code Coverage</source>
-      <translation>Cobertura de codigo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Por favor seleccione un archivo de cobertura</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6790" />
+      <location filename="../Project/Project.py" line="6776" />
       <source>Please select a profile file</source>
       <translation>Por favor seleccione un archivo de profiling</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6842" />
+      <location filename="../Project/Project.py" line="6828" />
       <source>Include module names?</source>
       <translation>¿Incluir nombres de módulos?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6955" />
+      <location filename="../Project/Project.py" line="6941" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;PKGLIST&lt;/b&gt; ya existe.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7010" />
+      <location filename="../Project/Project.py" line="6996" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;PKGLIST&lt;/b&gt; no puede ser creado.&lt;/p&gt;&lt;p&gt;Causa: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7321" />
-      <location filename="../Project/Project.py" line="7277" />
-      <location filename="../Project/Project.py" line="7227" />
-      <location filename="../Project/Project.py" line="7216" />
-      <location filename="../Project/Project.py" line="7198" />
-      <location filename="../Project/Project.py" line="7151" />
-      <location filename="../Project/Project.py" line="7121" />
-      <location filename="../Project/Project.py" line="7093" />
-      <location filename="../Project/Project.py" line="7063" />
-      <location filename="../Project/Project.py" line="7048" />
-      <location filename="../Project/Project.py" line="7031" />
+      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7137" />
+      <location filename="../Project/Project.py" line="7107" />
+      <location filename="../Project/Project.py" line="7079" />
+      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7034" />
+      <location filename="../Project/Project.py" line="7017" />
       <source>Create Plugin Archive</source>
       <translation>Crear Archivo de Plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7032" />
+      <location filename="../Project/Project.py" line="7018" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>No hay script principal definido para el proyecto actual. Abortando...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7035" />
       <source>Select package lists:</source>
       <translation>Seleccionar package lists:</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7064" />
+      <location filename="../Project/Project.py" line="7050" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;No hay archivo de package list (PKGLIST*) disponible o seleccionado. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7072" />
+      <location filename="../Project/Project.py" line="7058" />
       <source>Creating plugin archives...</source>
       <translation>Creando archivos de plugin...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7073" />
+      <location filename="../Project/Project.py" line="7059" />
       <source>Abort</source>
       <translation>Abortar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7076" />
+      <location filename="../Project/Project.py" line="7062" />
       <source>%v/%m Archives</source>
       <translation>%v/%m Archivos</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7094" />
+      <location filename="../Project/Project.py" line="7080" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo&lt;b&gt;{0}&lt;/b&gt; no puede ser leído.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7122" />
+      <location filename="../Project/Project.py" line="7108" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; todavía no está listo.&lt;/p&gt;&lt;p&gt;Por favor, revíselo y borre la línea '; initial_list' del encabezado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7152" />
+      <location filename="../Project/Project.py" line="7138" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de plugin de eric &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7199" />
+      <location filename="../Project/Project.py" line="7185" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El fichero&lt;b&gt;{0}&lt;/b&gt; no ha podido ser almacenado en el archivo. Va a ser ignorado.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7217" />
+      <location filename="../Project/Project.py" line="7203" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Los ficheros para archivo de plugin de eric se han creado con errores.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7228" />
+      <location filename="../Project/Project.py" line="7214" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Los ficheros para archivo de plugin de eric se han creado correctamente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7278" />
+      <location filename="../Project/Project.py" line="7264" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de plugin&lt;b&gt;{0}&lt;/b&gt; no puede ser leido.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7322" />
+      <location filename="../Project/Project.py" line="7308" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de plugin&lt;b&gt;{0}&lt;/b&gt; no puede ser leido.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7414" />
+      <location filename="../Project/Project.py" line="7400" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation>'Make' no está soportado para proyectos remotos. Abortando...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7462" />
+      <location filename="../Project/Project.py" line="7448" />
       <source>The make process did not start.</source>
       <translation>El proceso make no ha comenzado.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7508" />
+      <location filename="../Project/Project.py" line="7494" />
       <source>The make process crashed.</source>
       <translation>El proceso make ha fallado.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7516" />
+      <location filename="../Project/Project.py" line="7502" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Hay cambios que requieren que el target make configurado &lt;b&gt;{0}&lt;/b&gt; se reconstruya.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
+      <location filename="../Project/Project.py" line="7507" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Hay cambios que requieren que el target make por defecto se reconstruya.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7537" />
+      <location filename="../Project/Project.py" line="7523" />
       <source>The makefile contains errors.</source>
       <translation>El makefile contiene errores.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7975" />
+      <location filename="../Project/Project.py" line="7961" />
       <source>Interpreter Missing</source>
       <translation>No se encuentra el Intérprete</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7976" />
+      <location filename="../Project/Project.py" line="7962" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation>El intérprete configurado para el entorno embebido ya no existe. ¿Actualizar el entorno?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8057" />
+      <location filename="../Project/Project.py" line="8043" />
       <source>Open Remote Project</source>
       <translation>Abrir Proyecto Remoto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8088" />
-      <location filename="../Project/Project.py" line="8073" />
+      <location filename="../Project/Project.py" line="8074" />
+      <location filename="../Project/Project.py" line="8059" />
       <source>Save Remote Project</source>
       <translation>Guardar Proyecto Remoto</translation>
     </message>
+    <message>
+      <source>PySide2 GUI</source>
+      <translation type="vanished">GUI de PySide2</translation>
+    </message>
+    <message>
+      <source>PySide2 Console</source>
+      <translation type="vanished">Consola PySide2</translation>
+    </message>
   </context>
   <context>
     <name>ProjectBaseBrowser</name>
@@ -65162,9 +65150,9 @@
   <context>
     <name>ProjectFormsBrowser</name>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1141" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1092" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1055" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1131" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
       <location filename="../Project/ProjectFormsBrowser.py" line="142" />
       <location filename="../Project/ProjectFormsBrowser.py" line="77" />
       <source>Forms</source>
@@ -65437,102 +65425,102 @@
       <translation>Compilar formularios</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="701" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="732" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="719" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="700" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="683" />
       <source>New Form</source>
       <translation>Formulario nuevo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="685" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
       <source>Select a form type:</source>
       <translation>Seleccione un tipo de formulario:</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="703" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="702" />
       <source>Qt User-Interface Files (*.ui);;All Files (*)</source>
       <translation>Archivos de Interfaz de Usuario (*.ui);;Todos los Archivos(*)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="721" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
       <source>The file already exists! Overwrite it?</source>
       <translation>¿El archivo ya existe! ¿Sobreescribirlo?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="734" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
       <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El nuevo archivo de formulario &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado.&lt;br&gt;Problema: {1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectFormsBrowser.py" line="759" />
+      <source>Delete forms</source>
+      <translation>Borrar formularios</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFormsBrowser.py" line="760" />
-      <source>Delete forms</source>
-      <translation>Borrar formularios</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="761" />
       <source>Do you really want to delete these forms from the project?</source>
       <translation>¿Realmente quiere borrar estos formularios del proyecto?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="893" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="882" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="875" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="888" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="877" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="870" />
       <source>Form Compilation</source>
       <translation>Compilación del Formulario</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="876" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="871" />
       <source>The compilation of the form file was successful.</source>
       <translation>Se ha compilado satisfactoriamente el archivo de formulario.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="883" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="878" />
       <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La compilación del archivo de formulario ha fallado.&lt;/p&gt;&lt;p&gt;Causa: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="894" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="889" />
       <source>The compilation of the form file failed.</source>
       <translation>La compilación del archivo de formulario ha fallado.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="986" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="977" />
       <source>Process Generation Error</source>
       <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="987" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="978" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>No se ha podido ejecutar {0}.&lt;br&gt;Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1074" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1037" />
       <source>Compiling forms...</source>
       <translation>Compilando formularios...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1134" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1084" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1047" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1075" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1038" />
       <source>Abort</source>
       <translation>Abortar</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1137" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1087" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1050" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1127" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1078" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1041" />
       <source>%v/%m Forms</source>
       <translation>%v/%m Formularios</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1133" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1123" />
       <source>Determining changed forms...</source>
       <translation>Determinando que formularios han cambiado...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1163" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1153" />
       <source>Compiling changed forms...</source>
       <translation>Compilando formularios que han cambiado...</translation>
     </message>
@@ -65984,9 +65972,9 @@
   <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="956" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="880" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="844" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="940" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="864" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="828" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="87" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="68" />
       <source>Resources</source>
@@ -66013,219 +66001,219 @@
       <translation>Navegador de Recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="165" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="163" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="150" />
       <source>Compile resource</source>
       <translation>Compilar recurso</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="396" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="385" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="344" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="333" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="247" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="235" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="172" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="154" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="384" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="373" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="334" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="323" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="241" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="229" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="170" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
       <source>Compile all resources</source>
       <translation>Compilar todos los recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="389" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="337" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="296" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="239" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="158" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="377" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="327" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="288" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="233" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="156" />
       <source>Configure rcc Compiler</source>
       <translation>Configurar Compilador rcc</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="308" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="300" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="179" />
       <source>Open</source>
       <translation>Abrir</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
       <source>Rename file</source>
       <translation>Renombrar archivo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="349" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="310" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="339" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="302" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
       <source>Remove from project</source>
       <translation>Quitar del proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="351" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="187" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="341" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="304" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
       <source>Delete</source>
       <translation>Borrar</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="345" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="249" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="236" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="200" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="195" />
+      <source>New resource...</source>
+      <translation>Nuevo recurso...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="390" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="346" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="254" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
+      <source>Add resources...</source>
+      <translation>Añadir recursos...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="393" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="348" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="257" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="206" />
+      <source>Add resources directory...</source>
+      <translation>Agregar directorio de recursos...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="353" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="211" />
+      <source>Show in File Manager</source>
+      <translation>Mostrar en Gestor de Archivos</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectResourcesBrowser.py" line="355" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="255" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="242" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="199" />
-      <source>New resource...</source>
-      <translation>Nuevo recurso...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="402" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="356" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="260" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="208" />
-      <source>Add resources...</source>
-      <translation>Añadir recursos...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="405" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="358" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="210" />
-      <source>Add resources directory...</source>
-      <translation>Agregar directorio de recursos...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="363" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="269" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
-      <source>Show in File Manager</source>
-      <translation>Mostrar en Gestor de Archivos</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="365" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="217" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="213" />
       <source>Copy Path to Clipboard</source>
       <translation>Copiar Ruta al Portapapeles</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="410" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="367" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="315" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="272" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="219" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="398" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="357" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="307" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="266" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
       <source>Expand all directories</source>
       <translation>Expandir todos los directorios</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="413" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="369" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="317" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="274" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="220" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="401" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="359" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="309" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="268" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="216" />
       <source>Collapse all directories</source>
       <translation>Contraer todos los directorios</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="416" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="372" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="320" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="277" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="222" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="404" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="362" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="271" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="218" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="303" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="292" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="295" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="284" />
       <source>Compile resources</source>
       <translation>Compilar recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="595" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="574" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="555" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="583" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="562" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="543" />
       <source>New Resource</source>
       <translation>Nuevo recurso</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="557" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="545" />
       <source>Qt Resource Files (*.qrc)</source>
       <translation>Archivos de Recursos Qt (*.qrc)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="575" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="563" />
       <source>The file already exists! Overwrite it?</source>
       <translation>¿El archivo ya existe! ¿Sobreescribirlo?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="596" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="584" />
       <source>&lt;p&gt;The new resource file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El nuevo archivo de recursos &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado.&lt;br&gt;Problema: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="622" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="610" />
       <source>Delete resources</source>
       <translation>Borrar recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="623" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="611" />
       <source>Do you really want to delete these resources from the project?</source>
       <translation>¿Realmente quiere borrar estas recursos del proyecto?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="717" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="708" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="701" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="705" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="696" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="689" />
       <source>Resource Compilation</source>
       <translation>Compilación de recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="702" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="690" />
       <source>The compilation of the resource file was successful.</source>
       <translation>Se ha compilado satisfactoriamente el archivo de recursos.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="709" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="697" />
       <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La compilación del archivo de recursos ha fallado.&lt;/p&gt;&lt;p&gt;Causa: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="718" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="706" />
       <source>The compilation of the resource file failed.</source>
       <translation>La compilación del archivo de recursos ha fallado.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="805" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="789" />
       <source>Process Generation Error</source>
       <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="806" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="790" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>No se ha podido ejecutar {0}.&lt;br&gt;Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="871" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="835" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="855" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="819" />
       <source>Compiling resources...</source>
       <translation>Compilando recursos...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="949" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="872" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="836" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="933" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="856" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="820" />
       <source>Abort</source>
       <translation>Abortar</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="952" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="875" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="839" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="936" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="859" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="823" />
       <source>%v/%m Resources</source>
       <translation>%v/%m Recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="948" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="932" />
       <source>Determining changed resources...</source>
       <translation>Determinando que recursos han cambiado...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="986" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="970" />
       <source>Compiling changed resources...</source>
       <translation>Compilando recursos que han cambiado...</translation>
     </message>
@@ -66761,250 +66749,250 @@
       <translation>Navegador de Traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="514" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="456" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="296" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="238" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="213" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="182" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="508" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="236" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="180" />
       <source>Open in Editor</source>
       <translation>Abrir en Editor</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="255" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="253" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation</source>
       <translation>Generar traducción</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="193" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="263" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="191" />
       <source>Generate translation (with obsolete)</source>
       <translation>Generar traducción (con obsoleto)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="580" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="551" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="274" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="199" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="572" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="543" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="378" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="272" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="197" />
       <source>Generate all translations</source>
       <translation>Generar todas las traducciones</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="581" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="281" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
+      <source>Generate all translations (with obsolete)</source>
+      <translation>Generar todas las traducciones (con obsoleto)</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="446" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="207" />
+      <source>Open in Qt-Linguist</source>
+      <translation>Abrir en Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="301" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <source>Release translation</source>
+      <translation>Crear versión release de la traducción</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="589" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="391" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="283" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
-      <source>Generate all translations (with obsolete)</source>
-      <translation>Generar todas las traducciones (con obsoleto)</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="452" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
-      <source>Open in Qt-Linguist</source>
-      <translation>Abrir en Qt-Linguist</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
-      <source>Release translation</source>
-      <translation>Crear versión release de la traducción</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="597" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="560" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="399" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="363" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="552" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="395" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="359" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Release all translations</source>
       <translation>Crear versión release de todas las traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="226" />
       <source>Preview translation</source>
       <translation>Previsualizar traducción</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="368" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="232" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="557" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="364" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
       <source>Preview all translations</source>
       <translation>Previsualizar todas las traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="481" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="374" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="246" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="475" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="370" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="244" />
       <source>Extract messages</source>
       <translation>Extraer mensajes</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="291" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="289" />
       <source>Open</source>
       <translation>Abrir</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="319" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Remove from project</source>
       <translation>Quitar del proyecto</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="595" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="526" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="320" />
+      <source>Delete</source>
+      <translation>Borrar</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="600" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="402" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="324" />
+      <source>New translation...</source>
+      <translation>Nueva traducción...</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="603" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="532" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="322" />
-      <source>Delete</source>
-      <translation>Borrar</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="608" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="406" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="326" />
-      <source>New translation...</source>
-      <translation>Nueva traducción...</translation>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="327" />
+      <source>Add translation files...</source>
+      <translation>Añadir archivos de traducción...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="607" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
+      <source>Show in File Manager</source>
+      <translation>Mostrar en Gestor de Archivos</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="609" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Copiar Ruta al Portapapeles</translation>
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="611" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="329" />
-      <source>Add translation files...</source>
-      <translation>Añadir archivos de traducción...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="615" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="413" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
-      <source>Show in File Manager</source>
-      <translation>Mostrar en Gestor de Archivos</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="617" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Copiar Ruta al Portapapeles</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="619" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="535" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="416" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="338" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="490" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="440" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="484" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
       <source>Generate translations</source>
       <translation>Generar traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="500" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="445" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
       <source>Generate translations (with obsolete)</source>
       <translation>Generar traduccines (con obsoleto)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="515" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="455" />
       <source>Release translations</source>
       <translation>Crear versión release de las traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
       <source>Preview translations</source>
       <translation>Previsualizar traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="882" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="866" />
       <source>Delete translation files</source>
       <translation>Borrar archivos de traducción</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="883" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="867" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation>¿Realmente quiere borrar estas archivos de traducción del proyecto?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1582" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1051" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1011" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1560" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1035" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="995" />
       <source>Write temporary project file</source>
       <translation>Guardar archivo de proyecto temporal</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1583" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1307" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1012" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1561" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1287" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="996" />
       <source>No translation files (*.ts) selected.</source>
       <translation>No se han seleccionado archivos de traducción (*.ts).</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1052" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1036" />
       <source>&lt;p&gt;The temporary project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo temporal de proyecto &lt;b&gt;{0}&lt;/b&gt; no ha podido guardarse.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1306" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1189" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1177" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1286" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1173" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1161" />
       <source>Translation file generation</source>
       <translation>Generación de archivo de traducción</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1178" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1162" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation>La generación de archivos de traducción (*.ts) ha sido satisfactoria.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1184" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1168" />
       <source> The process has crashed.</source>
       <translation> El proceso ha dejado de funcionar.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1190" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1174" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation>La generación de archivos de traducción (*.ts) ha fallado {0}</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1612" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1360" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1590" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1388" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1340" />
       <source>Process Generation Error</source>
       <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1361" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1389" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1341" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>No se ha podido ejecutar {0}.&lt;br&gt;Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1497" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1479" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1477" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1459" />
       <source>Translation file release</source>
       <translation>Crear versión release del archivo de traducción</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1480" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1460" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation>La versión release de los archivos de traducción (*.qm) ha sido satisfactoria.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1498" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1478" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation>La versión release de los archivos de traducción (*.qm) ha fallado.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1613" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1591" />
       <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido ejecutar lrelease.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -69562,38 +69550,38 @@
       <translation>Rángo de Código</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="214" />
+      <location filename="../UI/PythonAstViewer.py" line="216" />
       <source>No editor has been opened.</source>
       <translation>No se ha abierto ningún editor.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="224" />
+      <location filename="../UI/PythonAstViewer.py" line="226" />
       <source>The current editor does not contain any source code.</source>
       <translation>El editor actual no contiene código fuente.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="230" />
+      <location filename="../UI/PythonAstViewer.py" line="232" />
       <source>The current editor does not contain Python source code.</source>
       <translation>El editor actual no contiene código fuente Python.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="248" />
+      <location filename="../UI/PythonAstViewer.py" line="250" />
       <source>Module</source>
       <translation>Módulo</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="280" />
+      <location filename="../UI/PythonAstViewer.py" line="282" />
       <source>{0}: {1}</source>
       <translation>{0}: {1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="297" />
-      <location filename="../UI/PythonAstViewer.py" line="287" />
+      <location filename="../UI/PythonAstViewer.py" line="299" />
+      <location filename="../UI/PythonAstViewer.py" line="289" />
       <source>{0},{1}</source>
       <translation>{0},{1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="304" />
+      <location filename="../UI/PythonAstViewer.py" line="306" />
       <source>{0}  -  {1}</source>
       <translation>{0}  -  {1}</translation>
     </message>
@@ -71749,7 +71737,7 @@
   <context>
     <name>QtPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="154" />
+      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="139" />
       <source>Sample: {0}designer{1}</source>
       <translation>Muestra: {0}designer{1}</translation>
     </message>
@@ -71793,7 +71781,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Tools Directory:</source>
       <translation>Directorio de las Herramientas:</translation>
     </message>
@@ -71880,7 +71867,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Virtual Environment:</source>
       <translation>Entorno Virtual:</translation>
     </message>
@@ -71888,7 +71874,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Select the virtual environment to be used</source>
       <translation>Seleccionar el entorno virtual a utilizar</translation>
     </message>
@@ -71896,7 +71881,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to open the virtual environment manager dialog</source>
       <translation>Pulsar para abrir el diálogo del gestor de entorno virtual</translation>
     </message>
@@ -71904,7 +71888,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to refresh the list of vitual environments</source>
       <translation>Pulsar para actualizar la lista de entornos virtuales</translation>
     </message>
@@ -71933,7 +71916,6 @@
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Generate imports relative to '.'</source>
       <translation>Generar imports relativos a '.'</translation>
     </message>
@@ -71966,26 +71948,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide</source>
-      <translation>PySide</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide2</source>
-      <translation>PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
-      <translation>Introducir la ruta del directorio de las herramientas PySide2, si no se encuentran automáticamente.</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>pyside2-uic Options</source>
-      <translation>Opciones de pyside2-uic</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>PySide6</source>
       <translation>PySide6</translation>
     </message>
@@ -71999,6 +71961,22 @@
       <source>pyside6-uic Options</source>
       <translation>Opciones de pyside6-uic</translation>
     </message>
+    <message>
+      <source>PySide</source>
+      <translation type="vanished">PySide</translation>
+    </message>
+    <message>
+      <source>PySide2</source>
+      <translation type="vanished">PySide2</translation>
+    </message>
+    <message>
+      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
+      <translation type="vanished">Introducir la ruta del directorio de las herramientas PySide2, si no se encuentran automáticamente.</translation>
+    </message>
+    <message>
+      <source>pyside2-uic Options</source>
+      <translation type="vanished">Opciones de pyside2-uic</translation>
+    </message>
   </context>
   <context>
     <name>Queues</name>
@@ -87931,64 +87909,64 @@
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="575" />
+      <location filename="../Templates/TemplateViewer.py" line="577" />
       <source>Remove Template</source>
       <translation>Eliminar Plantilla</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="576" />
+      <location filename="../Templates/TemplateViewer.py" line="578" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;¿Desea realmente eliminar &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="604" />
+      <location filename="../Templates/TemplateViewer.py" line="606" />
       <source>Import Templates</source>
       <translation>Importar Plantillas</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="621" />
-      <location filename="../Templates/TemplateViewer.py" line="606" />
+      <location filename="../Templates/TemplateViewer.py" line="623" />
+      <location filename="../Templates/TemplateViewer.py" line="608" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation>Archivos de Plantilla (*.ecj);;Todos los Archivos(*)</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
-      <location filename="../Templates/TemplateViewer.py" line="619" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
+      <location filename="../Templates/TemplateViewer.py" line="621" />
       <source>Export Templates</source>
       <translation>Exportar Plantillas</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de plantillas  &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="654" />
+      <location filename="../Templates/TemplateViewer.py" line="656" />
       <source>Reload Templates</source>
       <translation>Recargar Plantillas</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="655" />
+      <location filename="../Templates/TemplateViewer.py" line="657" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation>Las plantillas contienen cambios sin guardar. ¿Deben descartarse dichos cambios?</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="675" />
+      <location filename="../Templates/TemplateViewer.py" line="677" />
       <source>Template Help</source>
       <translation>Ayuda para la plantilla</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="676" />
+      <location filename="../Templates/TemplateViewer.py" line="678" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Los grupos de plantillas&lt;/b&gt; son una manera de agrupar plantillas individuales. Los grupos tienen un atributo que especifica a qué lenguaje de programación se aplican. Para añadir entradas de plantillas. al menos un grupo tiene que haber sido definido.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Las entradas de plantilla&lt;/b&gt; son las plantillas reales. Se agrupan en grupos de plantillas. Se puede encontrar ayuda sobre como definirlas en el diálogo de edición de plantilla.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="938" />
+      <location filename="../Templates/TemplateViewer.py" line="940" />
       <source>Edit Template Group</source>
       <translation>Editar Grupo de Plantillas</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="939" />
+      <location filename="../Templates/TemplateViewer.py" line="941" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Un grupo de plantillas con el nombre &lt;b&gt;{0}&lt;/b&gt; ya existe.&lt;/p&gt;</translation>
     </message>
@@ -91471,2227 +91449,2211 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="263" />
+      <location filename="../UI/UserInterface.py" line="265" />
       <source>Initializing Basic Services...</source>
       <translation>Inicializando Servicios Básicos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="319" />
+      <location filename="../UI/UserInterface.py" line="321" />
       <source>Initializing Plugin Manager...</source>
       <translation>Inicializando el administrador de Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="327" />
+      <location filename="../UI/UserInterface.py" line="329" />
       <source>Generating Main User Interface...</source>
       <translation>Generando la interfaz general de usuario...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="386" />
       <location filename="../UI/UserInterface.py" line="384" />
-      <location filename="../UI/UserInterface.py" line="382" />
       <source>Setting up signal/slot-connections...</source>
       <translation>Configuracion de conexiones signal/slot...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="593" />
+      <location filename="../UI/UserInterface.py" line="595" />
       <source>Initializing Tools...</source>
       <translation>Inicializando Herramientas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="605" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Registering Objects...</source>
       <translation>Registrando Objetos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="640" />
+      <location filename="../UI/UserInterface.py" line="642" />
       <source>Initializing Actions...</source>
       <translation>Inicializando Acciones...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="643" />
+      <location filename="../UI/UserInterface.py" line="645" />
       <source>Initializing Menus...</source>
       <translation>Inicializando Menues...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="648" />
       <source>Initializing Toolbars...</source>
       <translation>Inicializando Barras de Herramientas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Statusbar...</source>
       <translation>Inicializando Barra de estado...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="676" />
       <location filename="../UI/UserInterface.py" line="674" />
-      <location filename="../UI/UserInterface.py" line="672" />
       <source>Initializing Single Application Server...</source>
       <translation>Incializando el servidor de aplicaciones simples...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="683" />
       <source>Initializing Plugins...</source>
       <translation>Inicializando Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Activating Plugins...</source>
       <translation>Activando Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="688" />
+      <location filename="../UI/UserInterface.py" line="690" />
       <source>Generating Plugins Toolbars...</source>
       <translation>Generando Barras de Herramientas para Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="692" />
+      <location filename="../UI/UserInterface.py" line="694" />
       <source>Cleaning Plugins Download Area...</source>
       <translation>Limpiar Área de Descarga de Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
+      <location filename="../UI/UserInterface.py" line="705" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Restaurando Gestor de Barras de Herramientas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="714" />
       <source>Setting View Profile...</source>
       <translation>Estableciendo Perfil de Vista...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="726" />
+      <location filename="../UI/UserInterface.py" line="728" />
       <source>Reading Tasks...</source>
       <translation>Leyendo tareas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="732" />
+      <location filename="../UI/UserInterface.py" line="734" />
       <source>Reading Templates...</source>
       <translation>Leyendo Plantillas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="738" />
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation>Iniciando Depurador...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2212" />
-      <location filename="../UI/UserInterface.py" line="1099" />
+      <location filename="../UI/UserInterface.py" line="2214" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Left Toolbox</source>
       <translation>Caja de herramientas de la Izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2258" />
-      <location filename="../UI/UserInterface.py" line="1109" />
+      <location filename="../UI/UserInterface.py" line="2260" />
+      <location filename="../UI/UserInterface.py" line="1111" />
       <source>Horizontal Toolbox</source>
       <translation>Caja de Herramientas Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2235" />
-      <location filename="../UI/UserInterface.py" line="1120" />
+      <location filename="../UI/UserInterface.py" line="2237" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Right Toolbox</source>
       <translation>Caja de herramientas de la Derecha</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2054" />
-      <location filename="../UI/UserInterface.py" line="1316" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1132" />
       <source>Multiproject-Viewer</source>
       <translation>Visor de Multiproyecto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2032" />
-      <location filename="../UI/UserInterface.py" line="1322" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>Project-Viewer</source>
-      <translation>Visor de Proyecto</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2594" />
-      <location filename="../UI/UserInterface.py" line="2593" />
-      <location filename="../UI/UserInterface.py" line="1329" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Find/Replace In Files</source>
-      <translation>Buscar/Reemplazar en Archivos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
-      <location filename="../UI/UserInterface.py" line="2616" />
-      <location filename="../UI/UserInterface.py" line="1336" />
-      <location filename="../UI/UserInterface.py" line="1150" />
-      <source>Find File</source>
-      <translation>Buscar archivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1156" />
-      <source>VCS Status</source>
-      <translation>Estado de VCS</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2187" />
-      <location filename="../UI/UserInterface.py" line="1349" />
-      <location filename="../UI/UserInterface.py" line="1163" />
-      <source>Template-Viewer</source>
-      <translation>Visor de Plantillas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2120" />
-      <location filename="../UI/UserInterface.py" line="1356" />
-      <location filename="../UI/UserInterface.py" line="1170" />
-      <source>File-Browser</source>
-      <translation>Explorador de archivos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1177" />
-      <source>Symbols</source>
-      <translation>Símbolos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2076" />
-      <location filename="../UI/UserInterface.py" line="1385" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1187" />
-      <source>Debug-Viewer</source>
-      <translation>Visor Depurador</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <location filename="../UI/UserInterface.py" line="2447" />
-      <location filename="../UI/UserInterface.py" line="1392" />
-      <location filename="../UI/UserInterface.py" line="1194" />
-      <source>Code Documentation Viewer</source>
-      <translation>Visor de Documentación de Código</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2663" />
-      <location filename="../UI/UserInterface.py" line="2662" />
-      <location filename="../UI/UserInterface.py" line="1399" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>Help Viewer</source>
-      <translation>Visor de Ayuda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3611" />
-      <location filename="../UI/UserInterface.py" line="2543" />
-      <location filename="../UI/UserInterface.py" line="2542" />
-      <location filename="../UI/UserInterface.py" line="1405" />
-      <location filename="../UI/UserInterface.py" line="1207" />
-      <source>Plugin Repository</source>
-      <translation>Repositorio de Plugins</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
-      <location filename="../UI/UserInterface.py" line="2566" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1213" />
-      <source>Virtual Environments</source>
-      <translation>Entornos Virtuales</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2475" />
-      <location filename="../UI/UserInterface.py" line="2474" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>PyPI Package Management</source>
-      <translation>Gestión de Packages PyPI</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2497" />
-      <location filename="../UI/UserInterface.py" line="2496" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1225" />
-      <source>Conda</source>
-      <translation>Conda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1232" />
-      <source>Cooperation</source>
-      <translation>Cooperación</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2375" />
-      <location filename="../UI/UserInterface.py" line="1436" />
-      <location filename="../UI/UserInterface.py" line="1237" />
-      <source>IRC</source>
-      <translation>IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
-      <location filename="../UI/UserInterface.py" line="2518" />
-      <location filename="../UI/UserInterface.py" line="1442" />
-      <location filename="../UI/UserInterface.py" line="1244" />
-      <source>MicroPython</source>
-      <translation>MicroPython</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2098" />
-      <location filename="../UI/UserInterface.py" line="1450" />
-      <location filename="../UI/UserInterface.py" line="1252" />
-      <source>Shell</source>
-      <translation>Shell</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <location filename="../UI/UserInterface.py" line="1456" />
-      <location filename="../UI/UserInterface.py" line="1256" />
-      <source>Task-Viewer</source>
-      <translation>Visor de Tareas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2142" />
-      <location filename="../UI/UserInterface.py" line="1462" />
-      <location filename="../UI/UserInterface.py" line="1260" />
-      <source>Log-Viewer</source>
-      <translation>Visor Log</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1469" />
-      <location filename="../UI/UserInterface.py" line="1267" />
-      <source>Numbers</source>
-      <translation>Números</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1844" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} - Modo Pasivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <location filename="../UI/UserInterface.py" line="1847" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} - {1} - Modo Pasivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} - {1} - {2} - Modo Pasivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1885" />
-      <source>Quit</source>
-      <translation>Salir</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1887" />
-      <source>&amp;Quit</source>
-      <translation>&amp;Salir</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1888" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Quit the IDE</source>
-      <translation>Salir del IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Salir del IDE&lt;/b&gt;&lt;p&gt;Sale del IDE. Salve primero cualquier cambio que no haya guardado. Se detendran las depuraciones en curso y las preferencias se guardarán en disco.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1909" />
-      <location filename="../UI/UserInterface.py" line="1907" />
-      <source>Restart</source>
-      <translation>Reiniciar</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1910" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Shift+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1915" />
-      <source>Restart the IDE</source>
-      <translation>Reiniciar la IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1917" />
-      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Reiniciar la IDE&lt;/b&gt;&lt;p&gt;Reinicia la IDE. Todos los cambios sin guardar pueden ser guardados primero. Cualquier programa de Python que esté en depuración será detenido, y las preferencias se guardarán en disco.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <location filename="../UI/UserInterface.py" line="1928" />
-      <source>Save session</source>
-      <translation>Guardar sesión</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Save session...</source>
-      <translation>Guardar sesión...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Guardar sesión...&lt;/b&gt;&lt;p&gt;Guarda la sesión actual a disco. Se muestra un diálogo para seleccionar el nombre de archivo.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7892" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <location filename="../UI/UserInterface.py" line="1947" />
-      <source>Load session</source>
-      <translation>Cargar sesión</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
-      <source>Load session...</source>
-      <translation>Cargar sesión...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
-      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Cargar sesión...&lt;/b&gt;&lt;p&gt;Carga una sesión guardada en disco anteriormente. Se muestra un diálogo para seleccionar el nombre de archivo.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1966" />
-      <source>New Window</source>
-      <translation>Nueva Ventana</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1968" />
-      <source>New &amp;Window</source>
-      <translation>Nueva &amp;Ventana</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1969" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1974" />
-      <source>Open a new eric instance</source>
-      <translation>Abrir una nueva instancia de eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Nueva Ventana&lt;/b&gt;&lt;p&gt;Abre una nueva instancia del IDE eric.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1990" />
-      <location filename="../UI/UserInterface.py" line="1988" />
-      <source>Edit Profile</source>
-      <translation>Perfil de Edición</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1997" />
-      <source>Activate the edit view profile</source>
-      <translation>Activar el perfil de vista de edición</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1999" />
-      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Perfil de Edición&lt;/b&gt;&lt;p&gt;Activar "Perfil de Vista de Edición". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2012" />
-      <location filename="../UI/UserInterface.py" line="2010" />
-      <source>Debug Profile</source>
-      <translation>Perfil de Depuración</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2019" />
-      <source>Activate the debug view profile</source>
-      <translation>Activar el perfil de vista de depuración</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2021" />
-      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Perfil de Depuración&lt;/b&gt;&lt;p&gt;Activar "Perfil de Vista de Depuracion". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2033" />
-      <source>&amp;Project-Viewer</source>
-      <translation>Visor de &amp;Proyecto</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2034" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2040" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation>Cambiar el foco de input a la ventana de Visor de Proyecto.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2043" />
-      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Activar Visor de Proyectos&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Proyecto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2055" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>Visor de &amp;Multiproyecto</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2056" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2062" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation>Cambiar el foco de input a la ventana de Visor de Multiproyecto.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Activar Visor de Multiproyecto&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Multiproyecto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2077" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>Visor &amp;Depurador</translation>
+      <location filename="../UI/UserInterface.py" line="1324" />
+      <location filename="../UI/UserInterface.py" line="1138" />
+      <source>Project-Viewer</source>
+      <translation>Visor de Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2596" />
+      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="1331" />
+      <location filename="../UI/UserInterface.py" line="1145" />
+      <source>Find/Replace In Files</source>
+      <translation>Buscar/Reemplazar en Archivos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2619" />
+      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="1338" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Find File</source>
+      <translation>Buscar archivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1344" />
+      <location filename="../UI/UserInterface.py" line="1158" />
+      <source>VCS Status</source>
+      <translation>Estado de VCS</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="1351" />
+      <location filename="../UI/UserInterface.py" line="1165" />
+      <source>Template-Viewer</source>
+      <translation>Visor de Plantillas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="1358" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>File-Browser</source>
+      <translation>Explorador de archivos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1365" />
+      <location filename="../UI/UserInterface.py" line="1179" />
+      <source>Symbols</source>
+      <translation>Símbolos</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2078" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2084" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation>Cambiar el foco de input a la ventana de Visor de Depuración.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Activar Visor de Depuración&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Depuración.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2099" />
-      <source>&amp;Shell</source>
-      <translation>&amp;Shell</translation>
+      <location filename="../UI/UserInterface.py" line="1387" />
+      <location filename="../UI/UserInterface.py" line="1381" />
+      <location filename="../UI/UserInterface.py" line="1189" />
+      <source>Debug-Viewer</source>
+      <translation>Visor Depurador</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="1394" />
+      <location filename="../UI/UserInterface.py" line="1196" />
+      <source>Code Documentation Viewer</source>
+      <translation>Visor de Documentación de Código</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2665" />
+      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="1401" />
+      <location filename="../UI/UserInterface.py" line="1203" />
+      <source>Help Viewer</source>
+      <translation>Visor de Ayuda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1209" />
+      <source>Plugin Repository</source>
+      <translation>Repositorio de Plugins</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2569" />
+      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Virtual Environments</source>
+      <translation>Entornos Virtuales</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2477" />
+      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
+      <source>PyPI Package Management</source>
+      <translation>Gestión de Packages PyPI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2499" />
+      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="1427" />
+      <location filename="../UI/UserInterface.py" line="1227" />
+      <source>Conda</source>
+      <translation>Conda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1434" />
+      <location filename="../UI/UserInterface.py" line="1234" />
+      <source>Cooperation</source>
+      <translation>Cooperación</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1239" />
+      <source>IRC</source>
+      <translation>IRC</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2521" />
+      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
+      <source>MicroPython</source>
+      <translation>MicroPython</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2100" />
-      <source>Alt+Shift+S</source>
-      <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2106" />
-      <source>Switch the input focus to the Shell window.</source>
-      <translation>Cambiar el foco de input a la ventana de Shell.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2109" />
-      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Activar Shell&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Shell.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2121" />
-      <source>&amp;File-Browser</source>
-      <translation>Na&amp;vegador de archivos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2122" />
-      <source>Alt+Shift+F</source>
-      <translation>Alt+Shift+F</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2128" />
-      <source>Switch the input focus to the File-Browser window.</source>
-      <translation>Cambiar el foco de input a la ventana de Navegador de Archivos.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Activar Navegador de Archivos&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Navegador de Archivos.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2143" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation>Visor de Lo&amp;g</translation>
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1254" />
+      <source>Shell</source>
+      <translation>Shell</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
+      <source>Task-Viewer</source>
+      <translation>Visor de Tareas</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="1464" />
+      <location filename="../UI/UserInterface.py" line="1262" />
+      <source>Log-Viewer</source>
+      <translation>Visor Log</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1471" />
+      <location filename="../UI/UserInterface.py" line="1269" />
+      <source>Numbers</source>
+      <translation>Números</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1846" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} - Modo Pasivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1855" />
+      <location filename="../UI/UserInterface.py" line="1849" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} - {1} - Modo Pasivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1861" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} - {1} - {2} - Modo Pasivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1887" />
+      <source>Quit</source>
+      <translation>Salir</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1889" />
+      <source>&amp;Quit</source>
+      <translation>&amp;Salir</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1890" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1895" />
+      <source>Quit the IDE</source>
+      <translation>Salir del IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Salir del IDE&lt;/b&gt;&lt;p&gt;Sale del IDE. Salve primero cualquier cambio que no haya guardado. Se detendran las depuraciones en curso y las preferencias se guardarán en disco.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1909" />
+      <source>Restart</source>
+      <translation>Reiniciar</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Shift+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1917" />
+      <source>Restart the IDE</source>
+      <translation>Reiniciar la IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Reiniciar la IDE&lt;/b&gt;&lt;p&gt;Reinicia la IDE. Todos los cambios sin guardar pueden ser guardados primero. Cualquier programa de Python que esté en depuración será detenido, y las preferencias se guardarán en disco.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1937" />
+      <location filename="../UI/UserInterface.py" line="1930" />
+      <source>Save session</source>
+      <translation>Guardar sesión</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1931" />
+      <source>Save session...</source>
+      <translation>Guardar sesión...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Guardar sesión...&lt;/b&gt;&lt;p&gt;Guarda la sesión actual a disco. Se muestra un diálogo para seleccionar el nombre de archivo.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7866" />
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1949" />
+      <source>Load session</source>
+      <translation>Cargar sesión</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1950" />
+      <source>Load session...</source>
+      <translation>Cargar sesión...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1958" />
+      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Cargar sesión...&lt;/b&gt;&lt;p&gt;Carga una sesión guardada en disco anteriormente. Se muestra un diálogo para seleccionar el nombre de archivo.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1968" />
+      <source>New Window</source>
+      <translation>Nueva Ventana</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1970" />
+      <source>New &amp;Window</source>
+      <translation>Nueva &amp;Ventana</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1971" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1976" />
+      <source>Open a new eric instance</source>
+      <translation>Abrir una nueva instancia de eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Nueva Ventana&lt;/b&gt;&lt;p&gt;Abre una nueva instancia del IDE eric.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1992" />
+      <location filename="../UI/UserInterface.py" line="1990" />
+      <source>Edit Profile</source>
+      <translation>Perfil de Edición</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Activate the edit view profile</source>
+      <translation>Activar el perfil de vista de edición</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2001" />
+      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Perfil de Edición&lt;/b&gt;&lt;p&gt;Activar "Perfil de Vista de Edición". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2014" />
+      <location filename="../UI/UserInterface.py" line="2012" />
+      <source>Debug Profile</source>
+      <translation>Perfil de Depuración</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Activate the debug view profile</source>
+      <translation>Activar el perfil de vista de depuración</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
+      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Perfil de Depuración&lt;/b&gt;&lt;p&gt;Activar "Perfil de Vista de Depuracion". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2035" />
+      <source>&amp;Project-Viewer</source>
+      <translation>Visor de &amp;Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2036" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation>Cambiar el foco de input a la ventana de Visor de Proyecto.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2045" />
+      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Activar Visor de Proyectos&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Proyecto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2057" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>Visor de &amp;Multiproyecto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2058" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation>Cambiar el foco de input a la ventana de Visor de Multiproyecto.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2067" />
+      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Activar Visor de Multiproyecto&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Multiproyecto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2079" />
+      <source>&amp;Debug-Viewer</source>
+      <translation>Visor &amp;Depurador</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2080" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation>Cambiar el foco de input a la ventana de Visor de Depuración.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2089" />
+      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Activar Visor de Depuración&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Depuración.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2101" />
+      <source>&amp;Shell</source>
+      <translation>&amp;Shell</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2102" />
+      <source>Alt+Shift+S</source>
+      <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <source>Switch the input focus to the Shell window.</source>
+      <translation>Cambiar el foco de input a la ventana de Shell.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2111" />
+      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Activar Shell&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Shell.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2123" />
+      <source>&amp;File-Browser</source>
+      <translation>Na&amp;vegador de archivos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2124" />
+      <source>Alt+Shift+F</source>
+      <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <source>Switch the input focus to the File-Browser window.</source>
+      <translation>Cambiar el foco de input a la ventana de Navegador de Archivos.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2133" />
+      <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Activar Navegador de Archivos&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Navegador de Archivos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2145" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation>Visor de Lo&amp;g</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2146" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2150" />
+      <location filename="../UI/UserInterface.py" line="2152" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation>Cambiar el foco de input a la ventana de Visor de Log.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="2155" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Activar Visor de Log&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Log.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2165" />
+      <location filename="../UI/UserInterface.py" line="2167" />
       <source>&amp;Task-Viewer</source>
       <translation>Visor de &amp;Tareas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="2168" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2174" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation>Cambiar el foco de input a la ventana de Visor de Tareas.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Activar Visor de Tareas&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Tareas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2190" />
       <source>Templ&amp;ate-Viewer</source>
       <translation>Visor de Pl&amp;antillas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="2191" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2197" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation>Cambiar el foco de input a la ventana de Visor de Plantillas.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2198" />
+      <location filename="../UI/UserInterface.py" line="2200" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Activar Visor de Plantillas&lt;/b&gt;&lt;p&gt;Cambiar el foco de input a la ventana de Visor de Plantillas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2213" />
+      <location filename="../UI/UserInterface.py" line="2215" />
       <source>&amp;Left Toolbox</source>
       <translation>Caja de herramientas de &amp;la Izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2220" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation>Conmutar la ventana de Caja de Herramientas a la izquierda</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2222" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation>Conmutar la ventana de Caja de Herramientas a la izquierda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Conmutar la Caja de Herramientas de la izquierda&lt;/b&gt;&lt;p&gt;Si la ventana Caja de Herramientas de la izquierda está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2236" />
+      <location filename="../UI/UserInterface.py" line="2238" />
       <source>&amp;Right Toolbox</source>
       <translation>Caja de herramientas de la De&amp;recha</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2243" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation>Conmutar la ventana de Caja de Herramientas a la derecha</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2245" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation>Conmutar la ventana de Caja de Herramientas a la derecha</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Conmutar la Caja de Herramientas de la derecha&lt;/b&gt;&lt;p&gt;Si la ventana Caja de Herramientas de la derecha está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2259" />
+      <location filename="../UI/UserInterface.py" line="2261" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Caja de Herramientas &amp;Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2266" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation>Conmutar la ventana de Caja de Herramientas Horizontal</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2268" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation>Conmutar la ventana de Caja de Herramientas Horizontal</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Conmutar la ventana de Caja de Herramientas Horizontal&lt;/b&gt;&lt;p&gt;Si la ventana de Caja de Herramientas Horizontal está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2281" />
+      <location filename="../UI/UserInterface.py" line="2283" />
       <source>Left Sidebar</source>
       <translation>Barra Lateral a la Izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2282" />
+      <location filename="../UI/UserInterface.py" line="2284" />
       <source>&amp;Left Sidebar</source>
       <translation>Barra &amp;Lateral a la Izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2289" />
-      <source>Toggle the left sidebar window</source>
-      <translation>Conmutar la barra lateral a la izquierda</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2291" />
+      <source>Toggle the left sidebar window</source>
+      <translation>Conmutar la barra lateral a la izquierda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Conmutar la barra lateral a la izquierda&lt;/b&gt;&lt;p&gt;Si la barra lateral a la izquierda está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2304" />
+      <location filename="../UI/UserInterface.py" line="2306" />
       <source>Right Sidebar</source>
       <translation>Barra Lateral a la Derecha</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2305" />
+      <location filename="../UI/UserInterface.py" line="2307" />
       <source>&amp;Right Sidebar</source>
       <translation>Ba&amp;rra Lateral a la Derecha</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2312" />
-      <source>Toggle the right sidebar window</source>
-      <translation>Conmutar la ventana de barra lateral de la derecha</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2314" />
+      <source>Toggle the right sidebar window</source>
+      <translation>Conmutar la ventana de barra lateral de la derecha</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Conmutar la ventana de barra lateral de la derecha&lt;/b&gt;&lt;p&gt;Si la ventana de barra lateral a la derecha está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2329" />
       <source>Bottom Sidebar</source>
       <translation>Barra Lateral Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2328" />
+      <location filename="../UI/UserInterface.py" line="2330" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Barra Lateral Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation>Conmutar la barra lateral inferior</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2337" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation>Conmutar la barra lateral inferior</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Conmutar la barra lateral inferior&lt;/b&gt;&lt;p&gt;Si la barra lateral inferior está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2350" />
-      <source>Cooperation-Viewer</source>
-      <translation>Visor de Cooperación</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2351" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation>Visor de Co&amp;operación</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2352" />
+      <source>Cooperation-Viewer</source>
+      <translation>Visor de Cooperación</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2353" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation>Visor de Co&amp;operación</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2354" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
+      <location filename="../UI/UserInterface.py" line="2360" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation>Cambiar el foco de input a la ventana de Visor de Cooperación.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2361" />
+      <location filename="../UI/UserInterface.py" line="2363" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Activar Visor de Cooperación&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Cooperación.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2376" />
+      <location filename="../UI/UserInterface.py" line="2378" />
       <source>&amp;IRC</source>
       <translation>&amp;IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="2379" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2383" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Switch the input focus to the IRC window.</source>
       <translation>Cambiar el foco de input a la ventana de IRC.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2386" />
+      <location filename="../UI/UserInterface.py" line="2388" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Activar IRC&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de IRC.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2397" />
-      <source>Symbols-Viewer</source>
-      <translation>Visor de Símbolos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2398" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>Visor de S&amp;ímbolos</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2399" />
+      <source>Symbols-Viewer</source>
+      <translation>Visor de Símbolos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2400" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>Visor de S&amp;ímbolos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2401" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2407" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation>Cambiar el foco de input a la ventana de Visor de Símbolos.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2408" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Activar Visor de Símbolos&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Símbolos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2422" />
-      <source>Numbers-Viewer</source>
-      <translation>Visor de Números</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2423" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>Visor de Nú&amp;meros</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2424" />
+      <source>Numbers-Viewer</source>
+      <translation>Visor de Números</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation>Visor de Nú&amp;meros</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2426" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
+      <location filename="../UI/UserInterface.py" line="2432" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation>Cambiar el foco de input a la ventana de Visor de Números.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2433" />
+      <location filename="../UI/UserInterface.py" line="2435" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Activar Visor de Números&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Números.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="2451" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2455" />
+      <location filename="../UI/UserInterface.py" line="2457" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Visor de Documentación de Código.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2460" />
+      <location filename="../UI/UserInterface.py" line="2462" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Visor de Documentación de Código&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana del Visor de Documentación de Código.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="2478" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2482" />
+      <location filename="../UI/UserInterface.py" line="2484" />
       <source>Switch the input focus to the PyPI Package Management window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Gestión de Packages de PyPI.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2487" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de PyPI.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="2500" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2504" />
+      <location filename="../UI/UserInterface.py" line="2506" />
       <source>Switch the input focus to the Conda window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Conda.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Conda.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="2522" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2528" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation>Cambiar el foco de entrada a la ventana de MicroPython.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2529" />
+      <location filename="../UI/UserInterface.py" line="2531" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de MicroPython.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="2546" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation>Ctrl+Alt+Shift+R</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2552" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Repositorio de Plugins.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2553" />
+      <location filename="../UI/UserInterface.py" line="2555" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Repositorio de Plugins&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Repositorio de Plugins.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="2570" />
       <source>Ctrl+Alt+V</source>
       <translation>Ctrl+Alt+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2574" />
+      <location filename="../UI/UserInterface.py" line="2576" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Gestión de Entornos Virtuales.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2579" />
+      <location filename="../UI/UserInterface.py" line="2581" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Entornos Virtuales&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Gestión de Entornos Virtuales.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="2597" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation>Ctrl+Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2603" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Buscar/Reemplazar en Archivos.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar/Reemplazar en Archivos&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Buscar/Reemplazar en Archivos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="2620" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation>Ctrl+Alt+Shift+L</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2626" />
       <source>Switch the input focus to the Find File window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Buscar Archivo.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar Archivo&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Buscar Archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2641" />
-      <location filename="../UI/UserInterface.py" line="2640" />
+      <location filename="../UI/UserInterface.py" line="2643" />
+      <location filename="../UI/UserInterface.py" line="2642" />
       <source>VCS Status List</source>
       <translation>Lista de Estado de VCS</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2642" />
+      <location filename="../UI/UserInterface.py" line="2644" />
       <source>Alt+Shift+V</source>
       <translation>Alt+Shift+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2648" />
+      <location filename="../UI/UserInterface.py" line="2650" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Lista de Estado de VCS.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2653" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lista de Estado de VCS&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Lista de Estado de VCS.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="2666" />
       <source>Alt+Shift+H</source>
       <translation>Alt+Shift+H</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
+      <location filename="../UI/UserInterface.py" line="2672" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation>Cambiar el foco de input a la ventana embebida de Visor de Ayuda.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2673" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Visor de Ayuda&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana embebida de Visor de Ayuda. Mostrará archivos de ayuda HTML y ayuda de las colecciones de ayuda de Qt.&lt;/p&gt;&lt;p&gt;Si se llama con una palabra seleccionada, dicha palabra se buscará en la colección de ayuda de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2686" />
-      <source>What's This?</source>
-      <translation>¿Qué es esto?</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2688" />
+      <source>What's This?</source>
+      <translation>¿Qué es esto?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2690" />
       <source>&amp;What's This?</source>
       <translation>¿&amp;Qué es esto?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2689" />
+      <location filename="../UI/UserInterface.py" line="2691" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>Context sensitive help</source>
-      <translation>Ayuda sensible al contexto</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2696" />
+      <source>Context sensitive help</source>
+      <translation>Ayuda sensible al contexto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar ayuda sensible al contexto&lt;/b&gt;&lt;p&gt;En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2709" />
-      <source>Helpviewer</source>
-      <translation>Visor de Ayuda</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2711" />
+      <source>Helpviewer</source>
+      <translation>Visor de Ayuda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2713" />
       <source>&amp;Helpviewer...</source>
       <translation>Visor de &amp;Ayuda...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2714" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2717" />
-      <source>Open the helpviewer window</source>
-      <translation>Abrir la ventana del visor de ayuda</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2719" />
+      <source>Open the helpviewer window</source>
+      <translation>Abrir la ventana del visor de ayuda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Visor de Ayuda&lt;/b&gt;&lt;p&gt;Mostrar el navegador web de eric web. Esta ventana mostraá archivos de ayuda HTML y ayuda de las colecciones de ayuda de Qt. Tiene la capacidad de navegar a enlaces, establecer marcadores, imprimir la ayuda mostrada y algunas otras características. Se puede usar también para navegar por internet.&lt;/p&gt;&lt;p&gt;Si se llama con una palabra seleccionada, dicha palabra se busca ne la colección de ayuda de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2739" />
+      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Versions</source>
       <translation>Mostrar Versiones</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2740" />
+      <location filename="../UI/UserInterface.py" line="2742" />
       <source>Show &amp;Versions</source>
       <translation>Mostrar Versione&amp;s</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <source>Display version information</source>
-      <translation>Mostrar información de versiones</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2748" />
+      <source>Display version information</source>
+      <translation>Mostrar información de versiones</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar Versiones&lt;/b&gt;&lt;p&gt;Muestra información de versiones.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2754" />
+      <location filename="../UI/UserInterface.py" line="2756" />
       <source>Copy Versions</source>
       <translation>Copiar Versiones</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2757" />
       <source>&amp;Copy Versions</source>
       <translation>&amp;Copiar Versiones</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2764" />
       <source>Copy version information to the clipboard</source>
       <translation>Copiar información de versiones al portapapeles</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2765" />
+      <location filename="../UI/UserInterface.py" line="2767" />
       <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Copiar Versiones&lt;/b&gt;&lt;p&gt;Esto genera información de versiones y la copia al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2781" />
-      <location filename="../UI/UserInterface.py" line="2774" />
-      <source>Show Error Log</source>
-      <translation>Mostrar Registro de Errores</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Show Error &amp;Log...</source>
-      <translation>Mostrar &amp;Registro de Errores...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2783" />
+      <location filename="../UI/UserInterface.py" line="2776" />
+      <source>Show Error Log</source>
+      <translation>Mostrar Registro de Errores</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2777" />
+      <source>Show Error &amp;Log...</source>
+      <translation>Mostrar &amp;Registro de Errores...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2785" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar registro de errores...&lt;/b&gt;&lt;p&gt;Abre un diálogo mostrando el registro más reciente de errores.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
+      <location filename="../UI/UserInterface.py" line="2794" />
       <source>Show Install Info</source>
       <translation>Mostrar Información de Instalación</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2795" />
       <source>Show Install &amp;Info...</source>
       <translation>Mostrar &amp;Información de Instalación...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
-      <source>Show Installation Information</source>
-      <translation>Mostrar Información de Instalación</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Show Installation Information</source>
+      <translation>Mostrar Información de Instalación</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar información de instalación...&lt;/b&gt;&lt;p&gt;Abre un diálogo que muestra información sobre el proceso de instalación.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4738" />
-      <location filename="../UI/UserInterface.py" line="2811" />
+      <location filename="../UI/UserInterface.py" line="4712" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>Report Bug</source>
       <translation>Enviar informe de bugs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2811" />
-      <source>Report &amp;Bug...</source>
-      <translation>Enviar informe de &amp;bugs...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2813" />
-      <source>Report a bug</source>
-      <translation>Enviar informe de bugs</translation>
+      <source>Report &amp;Bug...</source>
+      <translation>Enviar informe de &amp;bugs...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2815" />
+      <source>Report a bug</source>
+      <translation>Enviar informe de bugs</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enviar informe de Bugs...&lt;/b&gt;&lt;p&gt;Abre un diálogo para enviar un informe de un error (bug).&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2821" />
+      <location filename="../UI/UserInterface.py" line="2823" />
       <source>Request Feature</source>
       <translation>Solicitar nueva característica</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2824" />
       <source>Request &amp;Feature...</source>
       <translation>Solicitar nueva &amp;característica...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2828" />
-      <source>Send a feature request</source>
-      <translation>Enviar una solicitud de nueva característica</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2830" />
+      <source>Send a feature request</source>
+      <translation>Enviar una solicitud de nueva característica</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Solicitar nueva Característica...&lt;/b&gt;&lt;p&gt;Abre un diálogo para enviar una solicitud de nueva característica.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4174" />
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="4148" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <source>Testing</source>
       <translation>Testado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2843" />
+      <location filename="../UI/UserInterface.py" line="2845" />
       <source>&amp;Testing...</source>
       <translation>&amp;Testado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2849" />
-      <source>Start the testing dialog</source>
-      <translation>Iniciar el diálogo de testado</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2851" />
+      <source>Start the testing dialog</source>
+      <translation>Iniciar el diálogo de testado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Testado&lt;/b&gt;&lt;p&gt;Llevar a cabo ejecuciones de test. El diálogo proporciona la capacidad de seleccionar y ejecutar una suite de tests o de autodescubrirlas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
-      <source>Restart Last Test</source>
-      <translation>Reiniciar Último Test</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2864" />
+      <source>Restart Last Test</source>
+      <translation>Reiniciar Último Test</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2866" />
       <source>&amp;Restart Last Test...</source>
       <translation>&amp;Reiniciar Último Test...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2870" />
-      <source>Restarts the last test</source>
-      <translation>Reinicia el último test</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2872" />
+      <source>Restarts the last test</source>
+      <translation>Reinicia el último test</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reiniciar Último Test&lt;/b&gt;&lt;p&gt;Reinicia el último test llevado a cabo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2882" />
-      <source>Rerun Failed Tests</source>
-      <translation>Re-ejecutar Tests Fallidos</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2884" />
+      <source>Rerun Failed Tests</source>
+      <translation>Re-ejecutar Tests Fallidos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2886" />
       <source>Rerun Failed Tests...</source>
       <translation>Re-ejecutar Tests Fallidos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Rerun failed tests of the last run</source>
       <translation>Re-ejecutar tests fallidos de la última ejecución</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
+      <location filename="../UI/UserInterface.py" line="2896" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Re-ejecutar Tests Fallidos&lt;/b&gt;&lt;p&gt;Re-ejecutar todos los tests que fallaron durante la última ejecución de test.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Test Script</source>
-      <translation>Test de Script</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2906" />
+      <source>Test Script</source>
+      <translation>Test de Script</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2908" />
       <source>Test &amp;Script...</source>
       <translation>Test de &amp;Script...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>Run tests of the current script</source>
-      <translation>Ejecutar tests del script actual</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2914" />
+      <source>Run tests of the current script</source>
+      <translation>Ejecutar tests del script actual</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2916" />
       <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Test de Script&lt;/b&gt;&lt;p&gt;Ejecuta tests con el script actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Test Project</source>
-      <translation>Test de Proyecto</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2923" />
+      <source>Test Project</source>
+      <translation>Test de Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2925" />
       <source>Test &amp;Project...</source>
       <translation>Test de &amp;Proyecto...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Run tests of the current project</source>
-      <translation>Ejecuta tests del proyecto actual</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2931" />
+      <source>Run tests of the current project</source>
+      <translation>Ejecuta tests del proyecto actual</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2933" />
       <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Test de Proyecto&lt;/b&gt;&lt;p&gt;Ejecuta tests del proyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
-      <source>Qt-Designer</source>
-      <translation>Qt Designer</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2942" />
+      <source>Qt-Designer</source>
+      <translation>Qt Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2944" />
       <source>Qt-&amp;Designer...</source>
       <translation>Qt-&amp;Designer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start Qt-Designer</source>
-      <translation>Iniciar Qt-Designer</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2950" />
+      <source>Start Qt-Designer</source>
+      <translation>Iniciar Qt-Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Ejecutar Qt-Designer.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2959" />
-      <source>Qt-Linguist</source>
-      <translation>Qt-Linguist</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2961" />
+      <source>Qt-Linguist</source>
+      <translation>Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2963" />
       <source>Qt-&amp;Linguist...</source>
       <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2967" />
-      <source>Start Qt-Linguist</source>
-      <translation>Iniciar Qt Linguist</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2969" />
+      <source>Start Qt-Linguist</source>
+      <translation>Iniciar Qt Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2971" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Iniciar Qt-Linguist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>UI Previewer</source>
-      <translation>Previsualizador de UI</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2979" />
+      <source>UI Previewer</source>
+      <translation>Previsualizador de UI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
       <source>&amp;UI Previewer...</source>
       <translation>Previsualizador de &amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
-      <source>Start the UI Previewer</source>
-      <translation>Ejecutar el Previsualizador de UI</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2987" />
+      <source>Start the UI Previewer</source>
+      <translation>Ejecutar el Previsualizador de UI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Previsualizador de UI&lt;/b&gt;&lt;p&gt;Ejecuta el Previsualizador de UI.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2993" />
-      <source>Translations Previewer</source>
-      <translation>Previsualizador de Traducciones</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2995" />
+      <source>Translations Previewer</source>
+      <translation>Previsualizador de Traducciones</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2997" />
       <source>&amp;Translations Previewer...</source>
       <translation>Previsualizador de &amp;Traducciones...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <source>Start the Translations Previewer</source>
-      <translation>Ejecutar el Previsualizador de traducciones</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3003" />
+      <source>Start the Translations Previewer</source>
+      <translation>Ejecutar el Previsualizador de traducciones</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3005" />
       <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Previsualizador de traducciones&lt;b&gt;&lt;p&gt;Ejecuta el Previsualizador de traducciones.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3012" />
-      <source>Compare Files</source>
-      <translation>Comparar Archivos</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3014" />
+      <source>Compare Files</source>
+      <translation>Comparar Archivos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3016" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Comparar Archivos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
-      <location filename="../UI/UserInterface.py" line="3020" />
+      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3022" />
       <source>Compare two files</source>
       <translation>Comparar dos archivos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3024" />
       <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Comparar Archivos&lt;/b&gt;&lt;p&gt;Abre un diálogo para comparar dos archivos.&lt;/b&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3031" />
-      <source>Compare Files side by side</source>
-      <translation>Comparar Archivos uno al lado de otro</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3033" />
+      <source>Compare Files side by side</source>
+      <translation>Comparar Archivos uno al lado de otro</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3035" />
       <source>Compare &amp;Files side by side...</source>
       <translation>Comparar &amp;Archivos uno al lado de otro...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3043" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Comparar Archivos uno al lado de otro&lt;/b&gt;&lt;p&gt;Abre un diálogo para comparar dos archivos y mostrar los resultados en paralelo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>SQL Browser</source>
-      <translation>Navegador SQL</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3053" />
+      <source>SQL Browser</source>
+      <translation>Navegador SQL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3055" />
       <source>SQL &amp;Browser...</source>
       <translation>&amp;Navegador SQL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>Browse a SQL database</source>
-      <translation>Navegar una base de datos SQL</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3061" />
+      <source>Browse a SQL database</source>
+      <translation>Navegar una base de datos SQL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Navegador SQL&lt;/b&gt;&lt;p&gt;Navegar una base de datos SQL.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3075" />
-      <location filename="../UI/UserInterface.py" line="3067" />
-      <source>Mini Editor</source>
-      <translation>Mini Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini &amp;Editor...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <location filename="../UI/UserInterface.py" line="3069" />
+      <source>Mini Editor</source>
+      <translation>Mini Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3071" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini &amp;Editor...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3079" />
       <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Abre un diálogo con un editor simple.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3086" />
-      <source>Hex Editor</source>
-      <translation>Editor Hexadecimal</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3088" />
+      <source>Hex Editor</source>
+      <translation>Editor Hexadecimal</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3090" />
       <source>&amp;Hex Editor...</source>
       <translation>Editor &amp;Hexadecimal...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3094" />
-      <source>Start the eric Hex Editor</source>
-      <translation>Iniciar el Editor Hexadecimal de eric</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>Start the eric Hex Editor</source>
+      <translation>Iniciar el Editor Hexadecimal de eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editor Hexadecimal&lt;/b&gt;&lt;p&gt;Inicia el Editor Hexadecimal de eric para visionado o edición de archivos binarios.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3106" />
-      <source>eric Web Browser</source>
-      <translation>Navegador Web de eric</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3108" />
+      <source>eric Web Browser</source>
+      <translation>Navegador Web de eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3110" />
       <source>eric &amp;Web Browser...</source>
       <translation>Navegador &amp;Web de eric...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3114" />
-      <source>Start the eric Web Browser</source>
-      <translation>Iniciar el Navegador Web de eric</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3116" />
+      <source>Start the eric Web Browser</source>
+      <translation>Iniciar el Navegador Web de eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3118" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Navegador Web de eric&lt;/b&gt;&lt;p&gt;Navegar por Internet con el Navegador Web de eric.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3126" />
-      <source>FIDO2 Security Key Management</source>
-      <translation>Gestión de Clave de Seguridad FIDO2</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3128" />
+      <source>FIDO2 Security Key Management</source>
+      <translation>Gestión de Clave de Seguridad FIDO2</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3130" />
       <source>FIDO2 Security Key Management...</source>
       <translation>Gestión de Clave de Seguridad FIDO2...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3135" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>Start the FIDO2 Security Key Management tool</source>
       <translation>Iniciar la herramienta de Gestión de Clave de Seguridad FIDO2</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
+      <location filename="../UI/UserInterface.py" line="3140" />
       <source>&lt;b&gt;FIDO2 Security Key Management&lt;/b&gt;&lt;p&gt;Start a tool to manage FIDO2 securit y keys.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestión de Clave de Seguridad FIDO2&lt;/b&gt;&lt;p&gt;Iniciar una herramienta para gestionar las claves de seguridad FIDO2.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Icon Editor</source>
-      <translation>Editor de Iconos</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3151" />
+      <source>Icon Editor</source>
+      <translation>Editor de Iconos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3153" />
       <source>&amp;Icon Editor...</source>
       <translation>Editor de &amp;Iconos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
-      <source>Start the eric Icon Editor</source>
-      <translation>Iniciar el Editor de Iconos de eric</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3159" />
+      <source>Start the eric Icon Editor</source>
+      <translation>Iniciar el Editor de Iconos de eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3161" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editor de Iconos&lt;/b&gt;&lt;p&gt;Inicia el Editor de Iconos de eric para editar iconos sencillos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6631" />
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="6605" />
+      <location filename="../UI/UserInterface.py" line="3173" />
       <source>Snapshot</source>
       <translation>Captura de Pantalla</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3173" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>&amp;Snapshot...</source>
       <translation>Captura de &amp;Pantalla...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <source>Take snapshots of a screen region</source>
-      <translation>Tomar capturas de una región de la pantalla</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3181" />
+      <source>Take snapshots of a screen region</source>
+      <translation>Tomar capturas de una región de la pantalla</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Captura de Pantalla&lt;/b&gt;&lt;p&gt;Abre un diálogo para tomar capturas de pantalla de una región de la pantalla.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>eric PDF Viewer</source>
-      <translation>Visor de PDF de eric</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3193" />
+      <source>eric PDF Viewer</source>
+      <translation>Visor de PDF de eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>eric PDF &amp;Viewer...</source>
       <translation>&amp;Visor de PDF de eric...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3199" />
-      <source>Start the eric PDF Viewer</source>
-      <translation>Iniciar el Visor de PDF de eric</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3201" />
+      <source>Start the eric PDF Viewer</source>
+      <translation>Iniciar el Visor de PDF de eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Visor de PDF de eric&lt;/b&gt;&lt;p&gt;Inicia el visor de PDF de eric para visionar archivos PDF.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
-      <source>Preferences</source>
-      <translation>Preferencias</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3212" />
+      <source>Preferences</source>
+      <translation>Preferencias</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Preferencias...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Set the prefered configuration</source>
-      <translation>Establecer la configuración preferida</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3220" />
+      <source>Set the prefered configuration</source>
+      <translation>Establecer la configuración preferida</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3222" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Preferencias&lt;/b&gt;&lt;p&gt;Establecezca los elementos de configuración de la aplicación con sus valores preferidos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Export Preferences</source>
-      <translation>Exportar Preferencias</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3233" />
+      <source>Export Preferences</source>
+      <translation>Exportar Preferencias</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;xportar Preferencias...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
-      <source>Export the current configuration</source>
-      <translation>Exportar la configuración actual</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3241" />
+      <source>Export the current configuration</source>
+      <translation>Exportar la configuración actual</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exportar Preferencias&lt;/b&gt;&lt;p&gt;Exportar la configuración actual a un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
-      <source>Import Preferences</source>
-      <translation>Importar Preferencias</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3252" />
+      <source>Import Preferences</source>
+      <translation>Importar Preferencias</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
       <source>I&amp;mport Preferences...</source>
       <translation>I&amp;mportar Preferencias...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3261" />
       <source>Import a previously exported configuration</source>
       <translation>Importar una configuración previamente exportada</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3262" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importar Preferencias&lt;/b&gt;&lt;p&gt;Importar una configuración previamente exportada.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
-      <source>Export Theme</source>
-      <translation>Exportar Tema</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3273" />
+      <source>Export Theme</source>
+      <translation>Exportar Tema</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Export Theme...</source>
       <translation>Exportar Tema...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
-      <source>Export the current theme</source>
-      <translation>Exportar el tema actual</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3281" />
+      <source>Export the current theme</source>
+      <translation>Exportar el tema actual</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exportar Tema&lt;/b&gt;&lt;p&gt;Exportar el tema actual a un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3290" />
-      <source>Import Theme</source>
-      <translation>Importar Tema</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3292" />
+      <source>Import Theme</source>
+      <translation>Importar Tema</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
       <source>Import Theme...</source>
       <translation>Importar Tema...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
-      <source>Import a previously exported theme</source>
-      <translation>Importr un tema previamente exportado</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3300" />
+      <source>Import a previously exported theme</source>
+      <translation>Importr un tema previamente exportado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3302" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importar Tema&lt;/b&gt;&lt;p&gt;Importar un tema previamente exportado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload APIs</source>
-      <translation>Recargar APIs</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload &amp;APIs</source>
-      <translation>Recargar &amp;APIs</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3311" />
-      <source>Reload the API information</source>
-      <translation>Recargar la información de API</translation>
+      <source>Reload APIs</source>
+      <translation>Recargar APIs</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3311" />
+      <source>Reload &amp;APIs</source>
+      <translation>Recargar &amp;APIs</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Reload the API information</source>
+      <translation>Recargar la información de API</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Recargar APIs&lt;/b&gt;&lt;p&gt;Recarga la información de API.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <location filename="../UI/UserInterface.py" line="3319" />
-      <source>Show external tools</source>
-      <translation>Mostrar herramientas externas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Show external &amp;tools</source>
-      <translation>Mostrar herramien&amp;tas externas</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3329" />
+      <location filename="../UI/UserInterface.py" line="3321" />
+      <source>Show external tools</source>
+      <translation>Mostrar herramientas externas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3323" />
+      <source>Show external &amp;tools</source>
+      <translation>Mostrar herramien&amp;tas externas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3331" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar herramientas externas&lt;/b&gt;&lt;p&gt;Abre un diálogo para mostrar la ruta y versiones de todas las herramientas externas que utiliza eric.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>View Profiles</source>
-      <translation>Perfiles de Vista</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3341" />
+      <source>View Profiles</source>
+      <translation>Perfiles de Vista</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3343" />
       <source>&amp;View Profiles...</source>
       <translation>Perfiles de &amp;Vista...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Configure view profiles</source>
-      <translation>Configurar perfiles de vista</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Configure view profiles</source>
+      <translation>Configurar perfiles de vista</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfiles de Vista&lt;/b&gt;&lt;p&gt;Configure los perfiles de vista. Con este diálogo puede establecer la visibilidad de las diversas ventanas para los perfiles de vista predeterminados.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
-      <source>Toolbars</source>
-      <translation>Barras de Herramientas</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3362" />
+      <source>Toolbars</source>
+      <translation>Barras de Herramientas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3364" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Barras de Herramientas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
-      <source>Configure toolbars</source>
-      <translation>Configurar Barras de Herramientas</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3370" />
+      <source>Configure toolbars</source>
+      <translation>Configurar Barras de Herramientas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3372" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Barras de Herramientas&lt;/b&gt;&lt;p&gt;Configure las barras de herramientas. Con este diálogo puede cambiar las accines mostradas en las diversas barras de herramientas, y definir sus propias barras de herramientas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
-      <source>Keyboard Shortcuts</source>
-      <translation>Atajos de Teclado</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3383" />
+      <source>Keyboard Shortcuts</source>
+      <translation>Atajos de Teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Atajo&amp;s de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3389" />
-      <source>Set the keyboard shortcuts</source>
-      <translation>Establecer los atajos de teclado</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3391" />
+      <source>Set the keyboard shortcuts</source>
+      <translation>Establecer los atajos de teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Atajos de Teclado&lt;/b&gt;&lt;p&gt;Establezca los atajos de teclado para la aplicación con sus valores preferidos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7600" />
-      <location filename="../UI/UserInterface.py" line="7581" />
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7555" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportar Atajos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Exportar Atajos de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Exportar los atajos de teclado</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3411" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Exportar los atajos de teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3413" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exportar Atajos de Teclado&lt;/b&gt;&lt;p&gt;Exporte  los atajos de teclado de la aplicación.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7619" />
-      <location filename="../UI/UserInterface.py" line="3420" />
+      <location filename="../UI/UserInterface.py" line="7593" />
+      <location filename="../UI/UserInterface.py" line="3422" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importar Atajos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Importar Atajos de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3428" />
-      <source>Import the keyboard shortcuts</source>
-      <translation>Importar los atajos de teclado</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3430" />
+      <source>Import the keyboard shortcuts</source>
+      <translation>Importar los atajos de teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3432" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importar Atajos de Teclado&lt;/b&gt;&lt;p&gt;Importe  los atajos de teclado de la aplicación.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3440" />
-      <source>Manage SSL Certificates</source>
-      <translation>Gestionar Certificados SSL</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3442" />
+      <source>Manage SSL Certificates</source>
+      <translation>Gestionar Certificados SSL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3444" />
       <source>Manage SSL Certificates...</source>
       <translation>Gestionar Certificados SSL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Manage the saved SSL certificates</source>
       <translation>Gestionar los certificados SSL guardados</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3454" />
       <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestionar Certificados SSL...&lt;/b&gt;&lt;p&gt;Abre un diálogo para gestionar los certificados SSL guardados.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3462" />
-      <source>Edit Message Filters</source>
-      <translation>Editar Filtros de Mensajes</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3464" />
+      <source>Edit Message Filters</source>
+      <translation>Editar Filtros de Mensajes</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3466" />
       <source>Edit Message Filters...</source>
       <translation>Editar Filtros de Mensajes...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation>Editar los filtros de mensajes utilizados para suprimir mensajes no deseados</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3474" />
+      <location filename="../UI/UserInterface.py" line="3476" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editar Filtros de Mensajes&lt;/b&gt;&lt;p&gt;Abre un diálogo para editar los filtros de mensajes utilizados para suprimir mensajes no deseados y que no se muestren en la ventana de error.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <location filename="../UI/UserInterface.py" line="3487" />
-      <location filename="../UI/UserInterface.py" line="3485" />
-      <source>Clear private data</source>
-      <translation>Limpiar Datos Privados</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3489" />
+      <location filename="../UI/UserInterface.py" line="3487" />
+      <source>Clear private data</source>
+      <translation>Limpiar Datos Privados</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Limpiar datos privados&lt;/b&gt;&lt;p&gt;Limpia los datos privados como las listas de archivos recientes, proyectos o multiproyectos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3506" />
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3508" />
+      <location filename="../UI/UserInterface.py" line="3507" />
       <source>Activate current editor</source>
       <translation>Activar editor actual</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3507" />
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3518" />
-      <location filename="../UI/UserInterface.py" line="3517" />
+      <location filename="../UI/UserInterface.py" line="3520" />
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>Show next</source>
       <translation>Mostrar siguente</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3519" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3530" />
-      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <source>Show previous</source>
       <translation>Mostrar anterior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3533" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3542" />
-      <location filename="../UI/UserInterface.py" line="3541" />
+      <location filename="../UI/UserInterface.py" line="3544" />
+      <location filename="../UI/UserInterface.py" line="3543" />
       <source>Switch between tabs</source>
       <translation>Alternar entre pestañas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3543" />
+      <location filename="../UI/UserInterface.py" line="3545" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3553" />
-      <source>Plugin Infos</source>
-      <translation>Información sobre Plugins</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3555" />
+      <source>Plugin Infos</source>
+      <translation>Información sobre Plugins</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>&amp;Plugin Infos...</source>
       <translation>Información sobre &amp;Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3561" />
-      <source>Show Plugin Infos</source>
-      <translation>Mostrar Información sobre Plugins</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3563" />
+      <source>Show Plugin Infos</source>
+      <translation>Mostrar Información sobre Plugins</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3565" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Información sobre Plugins...&lt;/b&gt;&lt;p&gt;Abre un diálogo que muestra información sobre las extensiones (plugins) cargadas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3581" />
-      <location filename="../UI/UserInterface.py" line="3573" />
-      <source>Install Plugins</source>
-      <translation>Instalar Plugins</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3575" />
-      <source>&amp;Install Plugins...</source>
-      <translation>&amp;Instalar Plugins...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <source>Install Plugins</source>
+      <translation>Instalar Plugins</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>&amp;Install Plugins...</source>
+      <translation>&amp;Instalar Plugins...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Instalar Plugins...&lt;/b&gt;&lt;p&gt;Abre un diálogo para instalar o actualizar extensiones (plugins).&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3600" />
-      <location filename="../UI/UserInterface.py" line="3592" />
-      <source>Uninstall Plugin</source>
-      <translation>Desinstalar Plugin</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>Desinstalar Pl&amp;ugin...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3602" />
+      <location filename="../UI/UserInterface.py" line="3594" />
+      <source>Uninstall Plugin</source>
+      <translation>Desinstalar Plugin</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3596" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>Desinstalar Pl&amp;ugin...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Desinstalar Plugin...&lt;/b&gt;&lt;p&gt;Abre un diálogo para desinstalar una extensión o plugin.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3615" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Repositorio de Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3619" />
-      <source>Show Plugins available for download</source>
-      <translation>Mostrar Plugins disponibles para descarga</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3621" />
+      <source>Show Plugins available for download</source>
+      <translation>Mostrar Plugins disponibles para descarga</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3623" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Repositorios de Plugins...&lt;/b&gt;&lt;p&gt;Abre un diálogo que muestra una lista de extensiones (plugins) disponibles en Internet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3651" />
-      <location filename="../UI/UserInterface.py" line="3650" />
+      <location filename="../UI/UserInterface.py" line="3653" />
+      <location filename="../UI/UserInterface.py" line="3652" />
       <source>Qt5 Documentation</source>
       <translation>Documentación de Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>Open Qt5 Documentation</source>
-      <translation>Abrir Documentación de Qt5</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3659" />
+      <source>Open Qt5 Documentation</source>
+      <translation>Abrir Documentación de Qt5</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Documentación de Qt5&lt;/b&gt;&lt;p&gt;Muestra la Documentación de Qt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3672" />
-      <location filename="../UI/UserInterface.py" line="3671" />
+      <location filename="../UI/UserInterface.py" line="3674" />
+      <location filename="../UI/UserInterface.py" line="3673" />
       <source>Qt6 Documentation</source>
       <translation>Documentación de Qt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3678" />
-      <source>Open Qt6 Documentation</source>
-      <translation>Abrir Documentación de Qt6</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3680" />
+      <source>Open Qt6 Documentation</source>
+      <translation>Abrir Documentación de Qt6</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3682" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Documentación de Qt6&lt;/b&gt;&lt;p&gt;Muestra la Documentación de Qt6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3693" />
-      <location filename="../UI/UserInterface.py" line="3692" />
+      <location filename="../UI/UserInterface.py" line="3695" />
+      <location filename="../UI/UserInterface.py" line="3694" />
       <source>PyQt5 Documentation</source>
       <translation>Documentación de PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3699" />
-      <source>Open PyQt5 Documentation</source>
-      <translation>Abrir Documentación de PyQt5</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Open PyQt5 Documentation</source>
+      <translation>Abrir Documentación de PyQt5</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Documentación de PyQt5&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PyQt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3714" />
-      <location filename="../UI/UserInterface.py" line="3713" />
+      <location filename="../UI/UserInterface.py" line="3716" />
+      <location filename="../UI/UserInterface.py" line="3715" />
       <source>PyQt6 Documentation</source>
       <translation>Documentación de PyQt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3720" />
-      <source>Open PyQt6 Documentation</source>
-      <translation>Abrir Documentación de PyQt6</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3722" />
+      <source>Open PyQt6 Documentation</source>
+      <translation>Abrir Documentación de PyQt6</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3724" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Documentación de PyQt6&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PyQt6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3740" />
-      <location filename="../UI/UserInterface.py" line="3739" />
+      <location filename="../UI/UserInterface.py" line="3742" />
+      <location filename="../UI/UserInterface.py" line="3741" />
       <source>Python 3 Documentation</source>
       <translation>Documentación de Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3746" />
-      <source>Open Python 3 Documentation</source>
-      <translation>Abrir Documentación de Python 3</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3748" />
+      <source>Open Python 3 Documentation</source>
+      <translation>Abrir Documentación de Python 3</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3750" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Documentación de Python 3&lt;/b&gt;&lt;p&gt;Mostrar la documentación de Python 3. Si no se ha configurado un directorio con lesta documentación, la ubicación de la documentación de Python 3 se asumirá en el directorio de documentación bajo la ubicación del ejecutable de Python 3 en Windows, y en &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; para Unix. Establezca el valor de la variable de entorno PYTHON3DOCDIR para sobreescribir estas opciones. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3767" />
-      <location filename="../UI/UserInterface.py" line="3766" />
+      <location filename="../UI/UserInterface.py" line="3769" />
+      <location filename="../UI/UserInterface.py" line="3768" />
       <source>eric API Documentation</source>
       <translation>Documentación de API de Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3773" />
-      <source>Open eric API Documentation</source>
-      <translation>Abrir Documentación de API de Eric</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3775" />
+      <source>Open eric API Documentation</source>
+      <translation>Abrir Documentación de API de Eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3777" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Documentación de API de Eric&lt;/b&gt;&lt;p&gt;Mostrar la documentación de API de Eric. La ubicación de la documentación es el subdirectorio Documentation/Source del directorio de instalación de eric.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3793" />
-      <location filename="../UI/UserInterface.py" line="3792" />
-      <source>PySide2 Documentation</source>
-      <translation>Documentación de PySide2</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3799" />
-      <source>Open PySide2 Documentation</source>
-      <translation>Abrir Documentación de PySide2</translation>
+      <location filename="../UI/UserInterface.py" line="3795" />
+      <location filename="../UI/UserInterface.py" line="3794" />
+      <source>PySide6 Documentation</source>
+      <translation>Documentación de PySide6</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3801" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation>&lt;b&gt;Documentación de PySide2&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PySide2. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3819" />
-      <location filename="../UI/UserInterface.py" line="3818" />
-      <source>PySide6 Documentation</source>
-      <translation>Documentación de PySide6</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3825" />
       <source>Open PySide6 Documentation</source>
       <translation>Abrir Documentación de PySide6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3827" />
+      <location filename="../UI/UserInterface.py" line="3803" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Documentación de PySide6&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PySide6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3863" />
+      <location filename="../UI/UserInterface.py" line="3839" />
       <source>Sessions</source>
       <translation>Sesiones</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3944" />
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtras</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3954" />
+      <location filename="../UI/UserInterface.py" line="3930" />
       <source>Wi&amp;zards</source>
       <translation>Asis&amp;tentes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3948" />
       <source>P&amp;lugins</source>
       <translation>P&amp;lugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="3957" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3990" />
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>&amp;Testing</source>
       <translation>&amp;Tests</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="3983" />
       <source>Select Tool Group</source>
       <translation>Seleccionar Grupo de Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4018" />
+      <location filename="../UI/UserInterface.py" line="3994" />
       <source>Se&amp;ttings</source>
       <translation>Con&amp;figuración</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4051" />
+      <location filename="../UI/UserInterface.py" line="4027" />
       <source>&amp;Window</source>
       <translation>Ven&amp;tana</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4060" />
+      <location filename="../UI/UserInterface.py" line="4036" />
       <source>&amp;Windows</source>
       <translation>&amp;Ventanas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4064" />
+      <location filename="../UI/UserInterface.py" line="4040" />
       <source>Central Park</source>
       <translation>Central Park</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4068" />
+      <location filename="../UI/UserInterface.py" line="4044" />
       <source>Left Side</source>
       <translation>Lado Izquierdo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4087" />
+      <location filename="../UI/UserInterface.py" line="4063" />
       <source>Right Side</source>
       <translation>Lado Derecho</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4106" />
+      <location filename="../UI/UserInterface.py" line="4082" />
       <source>Bottom Side</source>
       <translation>Lado Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4090" />
       <source>Plug-ins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="4096" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Barra de Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4133" />
+      <location filename="../UI/UserInterface.py" line="4109" />
       <source>&amp;Help</source>
       <translation>Ay&amp;uda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4190" />
-      <location filename="../UI/UserInterface.py" line="4173" />
+      <location filename="../UI/UserInterface.py" line="4164" />
+      <location filename="../UI/UserInterface.py" line="4147" />
       <source>Tools</source>
       <translation>Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4192" />
-      <location filename="../UI/UserInterface.py" line="4177" />
+      <location filename="../UI/UserInterface.py" line="4166" />
+      <location filename="../UI/UserInterface.py" line="4151" />
       <source>Settings</source>
       <translation>Ajustes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6361" />
-      <location filename="../UI/UserInterface.py" line="4193" />
-      <location filename="../UI/UserInterface.py" line="4178" />
+      <location filename="../UI/UserInterface.py" line="6335" />
+      <location filename="../UI/UserInterface.py" line="4167" />
+      <location filename="../UI/UserInterface.py" line="4152" />
       <source>Help</source>
       <translation>Ayuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4194" />
-      <location filename="../UI/UserInterface.py" line="4179" />
+      <location filename="../UI/UserInterface.py" line="4168" />
+      <location filename="../UI/UserInterface.py" line="4153" />
       <source>Profiles</source>
       <translation>Perfiles</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4195" />
-      <location filename="../UI/UserInterface.py" line="4180" />
+      <location filename="../UI/UserInterface.py" line="4169" />
+      <location filename="../UI/UserInterface.py" line="4154" />
       <source>Plugins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4191" />
+      <location filename="../UI/UserInterface.py" line="4165" />
       <source>Unittest</source>
       <translation>Test Unitario</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4368" />
+      <location filename="../UI/UserInterface.py" line="4342" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado muestra el lenguaje del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4377" />
+      <location filename="../UI/UserInterface.py" line="4351" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado muestra la codificación del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4386" />
+      <location filename="../UI/UserInterface.py" line="4360" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado muestra la configuración actual de fin de línea (eol) para los editores.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4395" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado muestra una indicación de las propiedades de escritura de los archivos del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4404" />
+      <location filename="../UI/UserInterface.py" line="4378" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado muestra el número de línea en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
+      <location filename="../UI/UserInterface.py" line="4387" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado muestra la posición del cursor en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4427" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado permite hacer zoom sobre el editor actual o la shell.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4501" />
-      <location filename="../UI/UserInterface.py" line="4460" />
+      <location filename="../UI/UserInterface.py" line="4475" />
+      <location filename="../UI/UserInterface.py" line="4434" />
       <source>External Tools/{0}</source>
       <translation>Herramientas Externas/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4609" />
+      <location filename="../UI/UserInterface.py" line="4583" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation>&lt;h2&gt;Números de Versiones&lt;/h2&gt;&lt;table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4679" />
+      <location filename="../UI/UserInterface.py" line="4653" />
       <source>Desktop</source>
       <translation>Escritorio</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4683" />
+      <location filename="../UI/UserInterface.py" line="4657" />
       <source>Session Type</source>
       <translation>Tipo de Sesión</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4739" />
+      <location filename="../UI/UserInterface.py" line="4713" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>La dirección de correo electrónico o la dirección del servidor de correo están en blanco. Por favor configure las opciones de Correo Electrónico en el diálogo de Preferencias.</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5048" />
+      <source>Restart application</source>
+      <translation>Reiniciar aplicación</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5049" />
+      <source>The application needs to be restarted. Do it now?</source>
+      <translation>La aplicación necesita ser reiniciada. ¿Desea hacerlo ahora?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5073" />
+      <source>Upgrade PyQt</source>
+      <translation>Actualizar PyQt</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5074" />
-      <source>Restart application</source>
-      <translation>Reiniciar aplicación</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5075" />
-      <source>The application needs to be restarted. Do it now?</source>
-      <translation>La aplicación necesita ser reiniciada. ¿Desea hacerlo ahora?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5099" />
-      <source>Upgrade PyQt</source>
-      <translation>Actualizar PyQt</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5100" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -93700,12 +93662,12 @@
 ¿Desearía hacer la actualización ahora?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5098" />
       <source>Upgrade Eric</source>
       <translation>Actualizar Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5125" />
+      <location filename="../UI/UserInterface.py" line="5099" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -93714,12 +93676,12 @@
 ¿Desearía hacer la actualización ahora?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5150" />
+      <location filename="../UI/UserInterface.py" line="5124" />
       <source>Upgrade Eric and PyQt6</source>
       <translation>Actualizar Eric y PyQt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5151" />
+      <location filename="../UI/UserInterface.py" line="5125" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
@@ -93728,340 +93690,352 @@
 ¿Desearía hacer la actualización ahora?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5213" />
+      <location filename="../UI/UserInterface.py" line="5187" />
       <source>&amp;Builtin Tools</source>
       <translation>Herramientas de serie (&amp;builtin)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5233" />
+      <location filename="../UI/UserInterface.py" line="5207" />
       <source>&amp;Plugin Tools</source>
       <translation>Herramientas de Extensión (&amp;Plugin)</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5210" />
+      <source>&amp;User Tools</source>
+      <translation>Herramientas de &amp;Usuario</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5236" />
-      <source>&amp;User Tools</source>
-      <translation>Herramientas de &amp;Usuario</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5262" />
       <source>Configure Tool Groups ...</source>
       <translation>Configurar Grupos de Herramientas ...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5266" />
+      <location filename="../UI/UserInterface.py" line="5240" />
       <source>Configure current Tool Group ...</source>
       <translation>Configurar Grupo de Herramientas actual ...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5305" />
-      <location filename="../UI/UserInterface.py" line="5285" />
+      <location filename="../UI/UserInterface.py" line="5279" />
+      <location filename="../UI/UserInterface.py" line="5259" />
       <source>No User Tools Configured</source>
       <translation>No se han Configurado Herramientas de Usuario</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5381" />
+      <location filename="../UI/UserInterface.py" line="5355" />
       <source>&amp;Show all</source>
       <translation>&amp;Ver todo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5383" />
+      <location filename="../UI/UserInterface.py" line="5357" />
       <source>&amp;Hide all</source>
       <translation>&amp;Ocultar todo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6498" />
-      <location filename="../UI/UserInterface.py" line="6487" />
-      <location filename="../UI/UserInterface.py" line="6439" />
-      <location filename="../UI/UserInterface.py" line="6429" />
-      <location filename="../UI/UserInterface.py" line="6252" />
-      <location filename="../UI/UserInterface.py" line="6242" />
-      <location filename="../UI/UserInterface.py" line="6184" />
-      <location filename="../UI/UserInterface.py" line="6174" />
+      <location filename="../UI/UserInterface.py" line="6472" />
+      <location filename="../UI/UserInterface.py" line="6461" />
+      <location filename="../UI/UserInterface.py" line="6413" />
+      <location filename="../UI/UserInterface.py" line="6403" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6216" />
+      <location filename="../UI/UserInterface.py" line="6158" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <source>Problem</source>
       <translation>Problema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6499" />
-      <location filename="../UI/UserInterface.py" line="6488" />
-      <location filename="../UI/UserInterface.py" line="6440" />
-      <location filename="../UI/UserInterface.py" line="6430" />
-      <location filename="../UI/UserInterface.py" line="6253" />
-      <location filename="../UI/UserInterface.py" line="6243" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6175" />
+      <location filename="../UI/UserInterface.py" line="6473" />
+      <location filename="../UI/UserInterface.py" line="6462" />
+      <location filename="../UI/UserInterface.py" line="6414" />
+      <location filename="../UI/UserInterface.py" line="6404" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no existe o tiene longitud nula. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6740" />
-      <location filename="../UI/UserInterface.py" line="6651" />
-      <location filename="../UI/UserInterface.py" line="6534" />
-      <location filename="../UI/UserInterface.py" line="6511" />
-      <location filename="../UI/UserInterface.py" line="6452" />
-      <location filename="../UI/UserInterface.py" line="6399" />
-      <location filename="../UI/UserInterface.py" line="6377" />
-      <location filename="../UI/UserInterface.py" line="6328" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6275" />
-      <location filename="../UI/UserInterface.py" line="6216" />
-      <location filename="../UI/UserInterface.py" line="6207" />
+      <location filename="../UI/UserInterface.py" line="6714" />
+      <location filename="../UI/UserInterface.py" line="6625" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6302" />
+      <location filename="../UI/UserInterface.py" line="6293" />
+      <location filename="../UI/UserInterface.py" line="6258" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6190" />
+      <location filename="../UI/UserInterface.py" line="6181" />
       <source>Process Generation Error</source>
       <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6208" />
+      <location filename="../UI/UserInterface.py" line="6182" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido ejecutar Qt-Designer.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6191" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido encontrar el ejecutable de Qt-Designer.&lt;br&gt;Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6250" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido ejecutar Qt-Linguist.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6285" />
+      <location filename="../UI/UserInterface.py" line="6259" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido encontrar el ejecutable de Qt-Linguist.&lt;br&gt;Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6320" />
+      <location filename="../UI/UserInterface.py" line="6294" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido ejecutar Qt-Assistant.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6303" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido encontrar el ejecutable de Qt-Assistant.&lt;br&gt;Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6362" />
+      <location filename="../UI/UserInterface.py" line="6336" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>No hay visor personalizado seleccionado actualmente. Por favor, especifique uno en el diálogo de preferencias.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6378" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido ejecutar el visor personalizado.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6374" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido ejecutar el visor de ayuda.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6453" />
+      <location filename="../UI/UserInterface.py" line="6427" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido ejecutar el Previsualizador de UI.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6512" />
+      <location filename="../UI/UserInterface.py" line="6486" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido ejecutar el Previsualizador de Traducciones.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6535" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido iniciar el navegador SQL.&lt;br&gt;Asegúrese de que está disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6632" />
+      <location filename="../UI/UserInterface.py" line="6606" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La utilidad de captura de pantalla no está disponible para sesiones de escritorio de Wayland.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6652" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido ejecutar la herramienta de Captura de Pantalla.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6685" />
-      <location filename="../UI/UserInterface.py" line="6675" />
+      <location filename="../UI/UserInterface.py" line="6659" />
+      <location filename="../UI/UserInterface.py" line="6649" />
       <source>External Tools</source>
       <translation>Herramientas Externas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6676" />
+      <location filename="../UI/UserInterface.py" line="6650" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation>No se ha encontrado la entrada para la herramienta externa '{0}' en el grupo de herramientas '{1}'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6686" />
+      <location filename="../UI/UserInterface.py" line="6660" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>No se ha encontrado la entrada para el grupo de herramientas '{0}'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6723" />
+      <location filename="../UI/UserInterface.py" line="6697" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Comenzando proceso '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6741" />
+      <location filename="../UI/UserInterface.py" line="6715" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido ejecutar la entrada de herramienta &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6820" />
+      <location filename="../UI/UserInterface.py" line="6794" />
       <source>Process '{0}' has exited.
 </source>
       <translation>El proceso '{0}' ha finalizado.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7108" />
-      <location filename="../UI/UserInterface.py" line="7046" />
-      <location filename="../UI/UserInterface.py" line="7002" />
-      <location filename="../UI/UserInterface.py" line="6928" />
-      <location filename="../UI/UserInterface.py" line="6864" />
+      <location filename="../UI/UserInterface.py" line="7082" />
+      <location filename="../UI/UserInterface.py" line="7020" />
+      <location filename="../UI/UserInterface.py" line="6976" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6838" />
       <source>Documentation Missing</source>
       <translation>Falta documentación</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7109" />
-      <location filename="../UI/UserInterface.py" line="7047" />
-      <location filename="../UI/UserInterface.py" line="7003" />
-      <location filename="../UI/UserInterface.py" line="6929" />
-      <location filename="../UI/UserInterface.py" line="6865" />
+      <location filename="../UI/UserInterface.py" line="7083" />
+      <location filename="../UI/UserInterface.py" line="7021" />
+      <location filename="../UI/UserInterface.py" line="6977" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6839" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;P&gt;El punto de entrada de documentación "&lt;b&gt;{0}&lt;/b&gt;" no ha podido encontrarse.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7090" />
-      <location filename="../UI/UserInterface.py" line="6972" />
+      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="6946" />
       <source>Documentation</source>
       <translation>Documentación</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6973" />
+      <location filename="../UI/UserInterface.py" line="6947" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation>&lt;P&gt;El punto de entrada de documentación de PyQt{0} no ha sido configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7091" />
+      <location filename="../UI/UserInterface.py" line="7065" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation>&lt;P&gt;El punto de entrada de documentación de PySide{0} no ha sido configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7270" />
-      <location filename="../UI/UserInterface.py" line="7206" />
+      <location filename="../UI/UserInterface.py" line="7244" />
+      <location filename="../UI/UserInterface.py" line="7180" />
       <source>Start Web Browser</source>
       <translation>Iniciar Navegador Web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7207" />
+      <location filename="../UI/UserInterface.py" line="7181" />
       <source>The eric web browser could not be started.</source>
       <translation>El navegador web de eric no se ha podido iniciar.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7271" />
+      <location filename="../UI/UserInterface.py" line="7245" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El navegador web de eric no se ha iniciado.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Open Browser</source>
       <translation>Abrir Navegador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Could not start a web browser</source>
       <translation>No se ha podido iniciar el navegador web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7595" />
+      <location filename="../UI/UserInterface.py" line="7557" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation>Archivo de Atajos de Teclado (*.ekj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7601" />
+      <location filename="../UI/UserInterface.py" line="7575" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de atajos de teclado &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7805" />
+      <location filename="../UI/UserInterface.py" line="7779" />
       <source>Load crash session...</source>
       <translation>Cargar sesión perdida...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7808" />
+      <location filename="../UI/UserInterface.py" line="7782" />
       <source>Clean crash sessions...</source>
       <translation>Limpiar sesiones perdidas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7845" />
+      <location filename="../UI/UserInterface.py" line="7819" />
       <source>Read Session</source>
       <translation>Cargar sesión</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7846" />
+      <location filename="../UI/UserInterface.py" line="7820" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de sesión &lt;b&gt;&lt;/b&gt; no ha podido ser leído.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7869" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Save Session</source>
       <translation>Guardar Sesión</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7894" />
-      <location filename="../UI/UserInterface.py" line="7871" />
+      <location filename="../UI/UserInterface.py" line="7868" />
+      <location filename="../UI/UserInterface.py" line="7845" />
       <source>eric Session Files (*.esj)</source>
       <translation>Archivos de Sesión de eric (*.esj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8400" />
+      <location filename="../UI/UserInterface.py" line="8374" />
       <source>Drop Error</source>
       <translation>Error de volcado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8401" />
+      <location filename="../UI/UserInterface.py" line="8375" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; no es un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8598" />
+      <location filename="../UI/UserInterface.py" line="8550" />
       <source>Upgrade available</source>
       <translation>Actualización disponible</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8551" />
+      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Una versión más moderna del package de &lt;b&gt;eric-ide&lt;/b&gt; se encuentra disponible en &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Instalado: {1}&lt;br/&gt;Disponible: &lt;b&gt;{2}&lt;/b&gt;Actualizar &lt;b&gt;eric-ide&lt;/b&gt;?&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8599" />
-      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Una versión más moderna del package de &lt;b&gt;eric-ide&lt;/b&gt; se encuentra disponible en &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Instalado: {1}&lt;br/&gt;Disponible: &lt;b&gt;{2}&lt;/b&gt;Actualizar &lt;b&gt;eric-ide&lt;/b&gt;?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
       <source>First time usage</source>
       <translation>Usado por primera vez</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8600" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation>eric todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8622" />
       <source>Select Workspace Directory</source>
       <translation>Seleccionar Directorio para el Espacio de Trabajo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8790" />
       <source>Unsaved Data Detected</source>
       <translation>Detectados Datos sin Guardar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8791" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation>Algunos editores contienen datos sin guardar. ¿Desea guardarlos?</translation>
     </message>
     <message>
+      <source>PySide2 Documentation</source>
+      <translation type="vanished">Documentación de PySide2</translation>
+    </message>
+    <message>
+      <source>Open PySide2 Documentation</source>
+      <translation type="vanished">Abrir Documentación de PySide2</translation>
+    </message>
+    <message>
+      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+      <translation type="vanished">&lt;b&gt;Documentación de PySide2&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PySide2. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <source>Clean stale crash sessions</source>
       <translation type="vanished">Limpiar sesiones perdidas antituas</translation>
     </message>
--- a/src/eric7/i18n/eric7_fr.ts	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/i18n/eric7_fr.ts	Sun Apr 13 14:46:18 2025 +0200
@@ -1741,47 +1741,47 @@
   <context>
     <name>BackgroundService</name>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="168" />
+      <location filename="../Utilities/BackgroundService.py" line="169" />
       <source>{0} not configured.</source>
       <translation>{0} n'est pas configuré.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="230" />
-      <source>Initialization of Background Service</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>Initialization of Background Service</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="232" />
       <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="244" />
-      <source>Restart background client?</source>
-      <translation>Redémarrer le client en arrière plan ?</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="245" />
+      <source>Restart background client?</source>
+      <translation>Redémarrer le client en arrière plan ?</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="246" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="274" />
+      <location filename="../Utilities/BackgroundService.py" line="275" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="515" />
+      <location filename="../Utilities/BackgroundService.py" line="516" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="524" />
-      <source>Background client disconnected.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="525" />
+      <source>Background client disconnected.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="526" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -3773,7 +3773,7 @@
       <translation>Cliquer pour vider la liste des hôtes</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="526" />
+      <location filename="../Cooperation/ChatWidget.py" line="528" />
       <location filename="../Cooperation/ChatWidget.ui" line="0" />
       <source>Clear</source>
       <translation>Effacer</translation>
@@ -3804,156 +3804,156 @@
       <translation>Montre l'état du serveur</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="322" />
+      <location filename="../Cooperation/ChatWidget.py" line="324" />
       <location filename="../Cooperation/ChatWidget.py" line="85" />
       <source>Start Server</source>
       <translation>Démarrer serveur</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="153" />
+      <location filename="../Cooperation/ChatWidget.py" line="155" />
       <source>! Unknown command: {0}
 </source>
       <translation>! Commande inconnue: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="176" />
+      <location filename="../Cooperation/ChatWidget.py" line="178" />
       <source>* {0} has joined.
 </source>
       <translation>* {0} a rejoint.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="193" />
+      <location filename="../Cooperation/ChatWidget.py" line="195" />
       <source>New User</source>
       <translation>Nouvel Utilisateur</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="194" />
+      <location filename="../Cooperation/ChatWidget.py" line="196" />
       <source>{0} has joined.</source>
       <translation>{0} est arrivé.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="217" />
+      <location filename="../Cooperation/ChatWidget.py" line="219" />
       <source>* {0} has left.
 </source>
       <translation>* {0} est parti.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="226" />
+      <location filename="../Cooperation/ChatWidget.py" line="228" />
       <source>User Left</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="227" />
+      <location filename="../Cooperation/ChatWidget.py" line="229" />
       <source>{0} has left.</source>
       <translation>{0} est parti.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="255" />
+      <location filename="../Cooperation/ChatWidget.py" line="257" />
       <source>Message from &lt;{0}&gt;</source>
       <translation>Message de &lt;{0}&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="330" />
+      <location filename="../Cooperation/ChatWidget.py" line="332" />
       <source>Stop Server</source>
       <translation>Arrêter serveur</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="336" />
+      <location filename="../Cooperation/ChatWidget.py" line="338" />
       <source>! Server Error: {0}
 </source>
       <translation>! Erreur de serveur: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="347" />
+      <location filename="../Cooperation/ChatWidget.py" line="349" />
       <source>Disconnect</source>
       <translation>Couper</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="351" />
+      <location filename="../Cooperation/ChatWidget.py" line="353" />
       <source>Connect</source>
       <translation>Brancher</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="515" />
+      <location filename="../Cooperation/ChatWidget.py" line="517" />
       <source>Copy</source>
       <translation>Copier</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="519" />
+      <location filename="../Cooperation/ChatWidget.py" line="521" />
       <source>Cut all</source>
       <translation>Couper tous</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="522" />
+      <location filename="../Cooperation/ChatWidget.py" line="524" />
       <source>Copy all</source>
       <translation>Copier tous</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="530" />
+      <location filename="../Cooperation/ChatWidget.py" line="532" />
       <source>Save</source>
       <translation>Enregistrer</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="588" />
-      <location filename="../Cooperation/ChatWidget.py" line="573" />
+      <location filename="../Cooperation/ChatWidget.py" line="590" />
+      <location filename="../Cooperation/ChatWidget.py" line="575" />
       <source>Save Chat</source>
       <translation>Enregistrer chat</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="575" />
+      <location filename="../Cooperation/ChatWidget.py" line="577" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation>Fichiers de texte (*.txt);;Tous les fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="589" />
+      <location filename="../Cooperation/ChatWidget.py" line="591" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="604" />
+      <location filename="../Cooperation/ChatWidget.py" line="606" />
       <source>Error saving Chat</source>
       <translation>Erreur lors de l'enregistrement du chat</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="605" />
+      <location filename="../Cooperation/ChatWidget.py" line="607" />
       <source>&lt;p&gt;The chat contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt; Le contenu du chat n'a pas pu être écrit dans &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Raison: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="644" />
+      <location filename="../Cooperation/ChatWidget.py" line="646" />
       <source>Kick User</source>
       <translation>Expulser utilisateur</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="648" />
+      <location filename="../Cooperation/ChatWidget.py" line="650" />
       <source>Ban User</source>
       <translation>Bannir utilisateur</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="652" />
+      <location filename="../Cooperation/ChatWidget.py" line="654" />
       <source>Ban and Kick User</source>
       <translation>Expulser et banir utilisateur</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="683" />
+      <location filename="../Cooperation/ChatWidget.py" line="685" />
       <source>* {0} has been kicked.
 </source>
       <translation>* {0} a été expulsé.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="700" />
+      <location filename="../Cooperation/ChatWidget.py" line="702" />
       <source>* {0} has been banned.
 </source>
       <translation>* {0} a été banni.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="717" />
+      <location filename="../Cooperation/ChatWidget.py" line="719" />
       <source>* {0} has been banned and kicked.
 </source>
       <translation>* {0} a été expuslé et banni.
@@ -4903,32 +4903,32 @@
   <context>
     <name>CodeDocumentationViewer</name>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="220" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="222" />
       <source>Code Info Provider:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="238" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="240" />
       <source>Select the code info provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="239" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="241" />
       <source>&lt;disabled&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="420" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="422" />
       <source>No documentation available</source>
       <translation>Pas de documentation disponible</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="441" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="443" />
       <source>No source code documentation provider has been registered. This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="449" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="451" />
       <source>This function has been disabled.</source>
       <translation>Cette fonction a été désactivée.</translation>
     </message>
@@ -8843,10 +8843,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="608" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="505" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="467" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="455" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="604" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="501" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="463" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="451" />
       <location filename="../Project/CreateDialogCodeDialog.py" line="419" />
       <source>Code Generation</source>
       <translation>Génération de code</translation>
@@ -8857,22 +8857,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="456" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="452" />
       <source>&lt;p&gt;No code template file available for project type "{0}".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="468" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="464" />
       <source>&lt;p&gt;Could not open the code template file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Erreur d'ouverture du fichier de template "{0}".&lt;/p&gt;&lt;p&gt;Raison: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="506" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="502" />
       <source>&lt;p&gt;Could not open the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Erreur d'ouverture du fichier source "{0}".&lt;/p&gt;&lt;p&gt;Raison: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="609" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="605" />
       <source>&lt;p&gt;Could not write the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Erreur d'écriture du fichier source "{0}".&lt;/p&gt;&lt;p&gt;Raison: {1}&lt;/p&gt;</translation>
     </message>
@@ -9377,676 +9377,676 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="207" />
+      <location filename="../Debugger/DebugUI.py" line="210" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="234" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="237" />
       <source>Run Script</source>
       <translation>Lancer le script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="236" />
+      <location filename="../Debugger/DebugUI.py" line="239" />
       <source>&amp;Run Script...</source>
       <translation>&amp;Lancer le script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="242" />
+      <location filename="../Debugger/DebugUI.py" line="245" />
       <source>Run the current Script</source>
       <translation>Lance le script courant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="244" />
+      <location filename="../Debugger/DebugUI.py" line="247" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lancer le script&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et lancer le script sans le débogueur. Si le script a des modifications, elles doivent d'abord être enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2386" />
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="255" />
+      <location filename="../Debugger/DebugUI.py" line="2389" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="258" />
       <source>Run Project</source>
       <translation>Lancer le projet</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="257" />
+      <location filename="../Debugger/DebugUI.py" line="260" />
       <source>Run &amp;Project...</source>
       <translation>Lancer &amp;projet...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="263" />
+      <location filename="../Debugger/DebugUI.py" line="266" />
       <source>Run the current Project</source>
       <translation>Lance le projet courant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="265" />
+      <location filename="../Debugger/DebugUI.py" line="268" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lancer le projet&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et lancer le projet sans le débogueur. Si des fichiers du projet on été modifiés ils doivent d'abord être enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="277" />
+      <location filename="../Debugger/DebugUI.py" line="280" />
       <source>Coverage run of Script</source>
       <translation>Lancer le script en mode Coverage</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="279" />
+      <location filename="../Debugger/DebugUI.py" line="282" />
       <source>Coverage run of Script...</source>
       <translation>Lancer le script en mode Coverage...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="286" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Lance le script courant en mode Coverage</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Lance le script courant en mode Coverage</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lancement du script en mode Coverage&lt;/b&gt;&lt;p&gt;Indiquer les paramètres de la ligne de commande et lancer le script en exploitant les outils d'analyse 'Coverage'. Si le fichier a été modifié, il doit être sauvé avant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="300" />
+      <location filename="../Debugger/DebugUI.py" line="303" />
       <source>Coverage run of Project</source>
       <translation>Lancer le projet en mode Coverage</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="302" />
+      <location filename="../Debugger/DebugUI.py" line="305" />
       <source>Coverage run of Project...</source>
       <translation>Lancer le projet en mode Coverage...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="309" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>Lance le projet courant en mode coverage</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>Lance le projet courant en mode coverage</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lancement du projet en mode Coverage&lt;/b&gt;&lt;p&gt;Indiquer les paramètres de la ligne de commande et lancer le projet courant en exploitant les outils d'analyse 'Coverage'. Si des fichiers du projet ont été modifiés, ils doivent être sauvés avant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="324" />
+      <location filename="../Debugger/DebugUI.py" line="327" />
       <source>Profile Script</source>
       <translation>Profiler le script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="326" />
+      <location filename="../Debugger/DebugUI.py" line="329" />
       <source>Profile Script...</source>
       <translation>Profiler le script....</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="332" />
+      <location filename="../Debugger/DebugUI.py" line="335" />
       <source>Profile the current Script</source>
       <translation>Profiler le script courant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="334" />
+      <location filename="../Debugger/DebugUI.py" line="337" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profiler le script&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et profiler le script. Si le script a subi des modifications, celles-ci doivent d'abord être enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="344" />
+      <location filename="../Debugger/DebugUI.py" line="347" />
       <source>Profile Project</source>
       <translation>Profiler le projet</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="346" />
+      <location filename="../Debugger/DebugUI.py" line="349" />
       <source>Profile Project...</source>
       <translation>Profiler le projet...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="352" />
+      <location filename="../Debugger/DebugUI.py" line="355" />
       <source>Profile the current Project</source>
       <translation>Profile le projet courant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="354" />
+      <location filename="../Debugger/DebugUI.py" line="357" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profiler le projet&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et profiler le projet. Si des fichiers du projet ont été modifiés, ils doivent d'abord être enregistrés.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="365" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="368" />
       <source>Debug Script</source>
       <translation>Déboguer le script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="367" />
+      <location filename="../Debugger/DebugUI.py" line="370" />
       <source>&amp;Debug Script...</source>
       <translation>&amp;Déboguer le script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="373" />
+      <location filename="../Debugger/DebugUI.py" line="376" />
       <source>Debug the current Script</source>
       <translation>Débogue le script courant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="375" />
+      <location filename="../Debugger/DebugUI.py" line="378" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Deboguer le script&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et donner la ligne qui correspond à la première instruction Python. Si le fichier a été modifié, il doit d'abord être sauvé.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2579" />
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="387" />
+      <location filename="../Debugger/DebugUI.py" line="2582" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="390" />
       <source>Debug Project</source>
       <translation>Déboguer le projet</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="389" />
+      <location filename="../Debugger/DebugUI.py" line="392" />
       <source>Debug &amp;Project...</source>
       <translation>Déboguer le &amp;Projet...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="395" />
+      <location filename="../Debugger/DebugUI.py" line="398" />
       <source>Debug the current Project</source>
       <translation>Déboguer le projet en cours</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="397" />
+      <location filename="../Debugger/DebugUI.py" line="400" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Deboguer le projet&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et donner la ligne correspondant à la première instruction Python du script principal du projet en cours.Si des fichiers du projet ont été modifiés, ils doivent d'abord être sauvés.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2895" />
-      <location filename="../Debugger/DebugUI.py" line="411" />
-      <location filename="../Debugger/DebugUI.py" line="409" />
+      <location filename="../Debugger/DebugUI.py" line="2898" />
+      <location filename="../Debugger/DebugUI.py" line="414" />
+      <location filename="../Debugger/DebugUI.py" line="412" />
       <source>Restart</source>
       <translation>Redémarrer</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="417" />
+      <location filename="../Debugger/DebugUI.py" line="420" />
       <source>Restart the last debugged script</source>
       <translation>Relance le dernier script débogué</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="419" />
+      <location filename="../Debugger/DebugUI.py" line="422" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="628" />
-      <location filename="../Debugger/DebugUI.py" line="433" />
-      <location filename="../Debugger/DebugUI.py" line="431" />
+      <location filename="../Debugger/DebugUI.py" line="631" />
+      <location filename="../Debugger/DebugUI.py" line="436" />
+      <location filename="../Debugger/DebugUI.py" line="434" />
       <source>Stop</source>
       <translation>Arrêt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="439" />
+      <location filename="../Debugger/DebugUI.py" line="442" />
       <source>Stop the running script.</source>
       <translation>Arrête le run en cours.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="441" />
+      <location filename="../Debugger/DebugUI.py" line="444" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="452" />
+      <location filename="../Debugger/DebugUI.py" line="455" />
       <source>Continue</source>
       <translation>Continuer</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="454" />
+      <location filename="../Debugger/DebugUI.py" line="457" />
       <source>&amp;Continue</source>
       <translation>&amp;Continuer</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="460" />
+      <location filename="../Debugger/DebugUI.py" line="463" />
       <source>Continue running the program from the current line</source>
       <translation>Continuer le programme à partir de la ligne courante</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="462" />
+      <location filename="../Debugger/DebugUI.py" line="465" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuer&lt;/b&gt;&lt;p&gt;Continue le programme à partir de la ligne courante. Le programme s'arrêtera à la fin si aucun point d'arrêt n'est rencontré.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="473" />
+      <location filename="../Debugger/DebugUI.py" line="476" />
       <source>Continue to Cursor</source>
       <translation>Continuer jusqu'au curseur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="475" />
+      <location filename="../Debugger/DebugUI.py" line="478" />
       <source>Continue &amp;To Cursor</source>
       <translation>Continuer &amp;jusqu'au curseur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="482" />
+      <location filename="../Debugger/DebugUI.py" line="485" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Continue le programme en cours de la ligne en cours jusqu'à la position du curseur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="488" />
+      <location filename="../Debugger/DebugUI.py" line="491" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuer jusqu'au curseur&lt;/b&gt;&lt;p&gt;Continue le programme depuis la ligne courante jusqu'au curseur.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="498" />
+      <location filename="../Debugger/DebugUI.py" line="501" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="500" />
+      <location filename="../Debugger/DebugUI.py" line="503" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="507" />
+      <location filename="../Debugger/DebugUI.py" line="510" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="513" />
+      <location filename="../Debugger/DebugUI.py" line="516" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="524" />
+      <location filename="../Debugger/DebugUI.py" line="527" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="526" />
+      <location filename="../Debugger/DebugUI.py" line="529" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="533" />
+      <location filename="../Debugger/DebugUI.py" line="536" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="539" />
+      <location filename="../Debugger/DebugUI.py" line="542" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="553" />
+      <location filename="../Debugger/DebugUI.py" line="556" />
       <source>Single Step</source>
       <translation>Instruction suivante (Single Step)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="555" />
+      <location filename="../Debugger/DebugUI.py" line="558" />
       <source>Sin&amp;gle Step</source>
       <translation>Instruction &amp;suivante (Single Step)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="561" />
+      <location filename="../Debugger/DebugUI.py" line="564" />
       <source>Execute a single Python statement</source>
       <translation>Execute une seule instruction Python</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="563" />
+      <location filename="../Debugger/DebugUI.py" line="566" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Un seul Pas&lt;/b&gt;&lt;p&gt;Execute une seule instruction Python. Si l'instruction est dans un &lt;tt&gt;import&lt;/tt&gt; , un constructeur de classe, ou un appel à une méthode ou à une fonction, alors le contrôle est rendu au débogueur à l'instruction suivante.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="575" />
+      <location filename="../Debugger/DebugUI.py" line="578" />
       <source>Step Over</source>
       <translation>Bloc d'instructions suivant (Step Over)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="577" />
+      <location filename="../Debugger/DebugUI.py" line="580" />
       <source>Step &amp;Over</source>
       <translation>&amp;Bloc d'instructions suivant (Step Over)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="584" />
+      <location filename="../Debugger/DebugUI.py" line="587" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Execute une seule instruction Python en restant dans le même niveau d'instructions</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="590" />
+      <location filename="../Debugger/DebugUI.py" line="593" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Bloc suivant&lt;/b&gt;&lt;p&gt;Execute une seule instruction Python en restant au même niveau (profondeur) d'instructions. Si l'instruction est dans un &lt;tt&gt;import&lt;/tt&gt; , un constructeur de classe, ou un appel à une méthode ou à une fonction, alors le contrôle est rendu au débogueur quand l'instruction est terminée.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="603" />
+      <location filename="../Debugger/DebugUI.py" line="606" />
       <source>Step Out</source>
       <translation>Sortie du bloc (Step Out)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="605" />
+      <location filename="../Debugger/DebugUI.py" line="608" />
       <source>Step Ou&amp;t</source>
       <translation>Sortie du bloc (Step &amp;Out)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="612" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Débogue les instructions Python à partir de la sortie du bloc courant</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Débogue les instructions Python à partir de la sortie du bloc courant</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sortie du Bloc (Step Out)&lt;/b&gt;&lt;p&gt;Débogue les instructions Python à partir de la sortie du bloc courant. Si les instructions sont dans un &lt;tt&gt;import&lt;/tt&gt; , un constructeur de classe, ou dans une méthode ou une fonction, alors le contrôle est rendu au débogueur au début du bloc suivant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="630" />
+      <location filename="../Debugger/DebugUI.py" line="633" />
       <source>&amp;Stop</source>
       <translation>&amp;Arrêt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="636" />
+      <location filename="../Debugger/DebugUI.py" line="639" />
       <source>Stop debugging</source>
       <translation>Arrêter le débogage</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="638" />
+      <location filename="../Debugger/DebugUI.py" line="641" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Arrêt&lt;/b&gt;&lt;p&gt;Arrête le débogage courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="644" />
+      <location filename="../Debugger/DebugUI.py" line="647" />
       <source>Variables Type Filter</source>
       <translation>Filtre sur les types de variables</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="645" />
+      <location filename="../Debugger/DebugUI.py" line="648" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>Filtre sur les types de varia&amp;bles...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="651" />
+      <location filename="../Debugger/DebugUI.py" line="654" />
       <source>Configure variables type filter</source>
       <translation>Configurer le filtre de variables</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="653" />
+      <location filename="../Debugger/DebugUI.py" line="656" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtre de Variables&lt;/b&gt;&lt;p&gt;Configure le filtre de variables. Seuls les types de variables non sélectionnés sont affichés dans la fenêtre des variables globales (resp. locales) pendant la session de débogage.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="664" />
+      <location filename="../Debugger/DebugUI.py" line="667" />
       <source>Exceptions Filter</source>
       <translation>Filtre d'exceptions</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="665" />
+      <location filename="../Debugger/DebugUI.py" line="668" />
       <source>&amp;Exceptions Filter...</source>
       <translation>Filtre d'&amp;exceptions...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="671" />
+      <location filename="../Debugger/DebugUI.py" line="674" />
       <source>Configure exceptions filter</source>
       <translation>Configuration du filtre d'exceptions</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="673" />
+      <location filename="../Debugger/DebugUI.py" line="676" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtre d'exceptions&lt;/b&gt;&lt;p&gt;Configuration du filtre d'exceptions. Seuls les types d'exceptions listés sont signalés pendant le débogage.&lt;/p&gt;&lt;p&gt;Notez que toutes les exceptions non prises en charge sont signalés, indépendamment de la liste de filtres.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="685" />
+      <location filename="../Debugger/DebugUI.py" line="688" />
       <source>Ignored Exceptions</source>
       <translation>Exceptions ignorées</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="686" />
+      <location filename="../Debugger/DebugUI.py" line="689" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>Exceptions &amp;ignorées...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="692" />
+      <location filename="../Debugger/DebugUI.py" line="695" />
       <source>Configure ignored exceptions</source>
       <translation>Configuration des exceptions ignorées</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="694" />
+      <location filename="../Debugger/DebugUI.py" line="697" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exceptions ignorées&lt;/b&gt;&lt;p&gt;Configuration des exceptions ignorées. Seuls les types d'exception non listés seront indiqués pendant le débogage.&lt;/p&gt;&lt;p&gt;Les exceptions non gérées ne pourront pas être ignorées.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="716" />
-      <location filename="../Debugger/DebugUI.py" line="710" />
-      <location filename="../Debugger/DebugUI.py" line="708" />
+      <location filename="../Debugger/DebugUI.py" line="719" />
+      <location filename="../Debugger/DebugUI.py" line="713" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Toggle Breakpoint</source>
       <translation>Placer/Supprimer un point d'arrêt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="714" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="718" />
+      <location filename="../Debugger/DebugUI.py" line="721" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Placer/supprimer un point d'arrêt&lt;/b&gt;&lt;p&gt;Place ou enlève un point d'arrêt sur la ligne courante de l'éditeur en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="736" />
-      <location filename="../Debugger/DebugUI.py" line="728" />
+      <location filename="../Debugger/DebugUI.py" line="739" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Edit Breakpoint</source>
       <translation>Edition Point d'arrêt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="730" />
+      <location filename="../Debugger/DebugUI.py" line="733" />
       <source>Edit Breakpoint...</source>
       <translation>Éditer le point d'arrêt...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="734" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="738" />
+      <location filename="../Debugger/DebugUI.py" line="741" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Edition Point d'arrêt&lt;/b&gt;&lt;p&gt;Edite les propriétés des points d'arrêt au travers d'une boite de dialogue. Ceci s'applique à la ligne courante de l'éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="756" />
-      <location filename="../Debugger/DebugUI.py" line="750" />
-      <location filename="../Debugger/DebugUI.py" line="748" />
+      <location filename="../Debugger/DebugUI.py" line="759" />
+      <location filename="../Debugger/DebugUI.py" line="753" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Next Breakpoint</source>
       <translation>Point d'arrêt suivant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="754" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="758" />
+      <location filename="../Debugger/DebugUI.py" line="761" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Point d'arrêt suivant&lt;/b&gt;&lt;p&gt;Avance au point d'arrêt suivant dans l'éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="775" />
-      <location filename="../Debugger/DebugUI.py" line="769" />
-      <location filename="../Debugger/DebugUI.py" line="767" />
+      <location filename="../Debugger/DebugUI.py" line="778" />
+      <location filename="../Debugger/DebugUI.py" line="772" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Previous Breakpoint</source>
       <translation>Point d'arrêt précédent</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="773" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="777" />
+      <location filename="../Debugger/DebugUI.py" line="780" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Point d'arrêt précédent&lt;/b&gt;&lt;p&gt;Remonte au point d'arrêt précédent dans l'éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="793" />
-      <location filename="../Debugger/DebugUI.py" line="787" />
-      <location filename="../Debugger/DebugUI.py" line="786" />
+      <location filename="../Debugger/DebugUI.py" line="796" />
+      <location filename="../Debugger/DebugUI.py" line="790" />
+      <location filename="../Debugger/DebugUI.py" line="789" />
       <source>Clear Breakpoints</source>
       <translation>Suppression des point d'arrêts</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="795" />
+      <location filename="../Debugger/DebugUI.py" line="798" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Suppression des points d'arrêts&lt;/b&gt;&lt;p&gt;Supprime les points d'arrêts de tous les éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="819" />
+      <location filename="../Debugger/DebugUI.py" line="822" />
       <source>&amp;Debug</source>
       <translation>&amp;Débogage</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="821" />
+      <location filename="../Debugger/DebugUI.py" line="824" />
       <source>Sta&amp;rt</source>
       <translation>Déma&amp;rrer</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="823" />
+      <location filename="../Debugger/DebugUI.py" line="826" />
       <source>&amp;Breakpoints</source>
       <translation>&amp;Point d'arrêts</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="866" />
-      <location filename="../Debugger/DebugUI.py" line="864" />
+      <location filename="../Debugger/DebugUI.py" line="869" />
+      <location filename="../Debugger/DebugUI.py" line="867" />
       <source>Start</source>
       <translation>Lancer</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="879" />
-      <location filename="../Debugger/DebugUI.py" line="877" />
+      <location filename="../Debugger/DebugUI.py" line="882" />
+      <location filename="../Debugger/DebugUI.py" line="880" />
       <source>Debug</source>
       <translation>Débogage</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1342" />
+      <location filename="../Debugger/DebugUI.py" line="1345" />
       <source>Message: {0}</source>
       <translation>Message : {0}</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1348" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1353" />
+      <location filename="../Debugger/DebugUI.py" line="1356" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1365" />
+      <location filename="../Debugger/DebugUI.py" line="1368" />
       <source>Program terminated</source>
       <translation>Programme terminé</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1401" />
+      <location filename="../Debugger/DebugUI.py" line="1404" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>Le programme débogué contient une erreur de syntaxe non identifiée.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1421" />
+      <location filename="../Debugger/DebugUI.py" line="1424" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; contient une erreur de syntaxe &lt;b&gt;{1}&lt;/b&gt; à la ligne &lt;b&gt;{2}&lt;/b&gt;, caractère &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1449" />
+      <location filename="../Debugger/DebugUI.py" line="1452" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Une erreur imprévue est apparue. Regardez les détails dans la fenêtre shell.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1498" />
+      <location filename="../Debugger/DebugUI.py" line="1501" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1516" />
+      <location filename="../Debugger/DebugUI.py" line="1519" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1532" />
+      <location filename="../Debugger/DebugUI.py" line="1535" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1594" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1609" />
+      <location filename="../Debugger/DebugUI.py" line="1612" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>Le programme débogué s'est terminé de façon prématurée.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1670" />
+      <location filename="../Debugger/DebugUI.py" line="1673" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1717" />
+      <location filename="../Debugger/DebugUI.py" line="1720" />
       <source>Breakpoint Condition Error</source>
       <translation>Erreur de condition pour le point d'arrêt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1718" />
+      <location filename="../Debugger/DebugUI.py" line="1721" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1779" />
+      <location filename="../Debugger/DebugUI.py" line="1782" />
       <source>Watch Expression Error</source>
       <translation>Erreur dans l'expression</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1780" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1810" />
+      <location filename="../Debugger/DebugUI.py" line="1813" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'expression de contrôle '&lt;b&gt;{0}&lt;/b&gt;' existe déjà.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1815" />
+      <location filename="../Debugger/DebugUI.py" line="1818" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'expression de contrôle '&lt;b&gt;{0}&lt;/b&gt;' pour la variable &lt;b&gt;{1}&lt;/b&gt; existe déjà.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1821" />
+      <location filename="../Debugger/DebugUI.py" line="1824" />
       <source>Watch expression already exists</source>
       <translation>L'expression existe déjà</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1986" />
-      <location filename="../Debugger/DebugUI.py" line="1977" />
+      <location filename="../Debugger/DebugUI.py" line="1989" />
+      <location filename="../Debugger/DebugUI.py" line="1980" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1979" />
+      <location filename="../Debugger/DebugUI.py" line="1982" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2387" />
-      <location filename="../Debugger/DebugUI.py" line="2189" />
-      <location filename="../Debugger/DebugUI.py" line="1987" />
+      <location filename="../Debugger/DebugUI.py" line="2390" />
+      <location filename="../Debugger/DebugUI.py" line="2192" />
+      <location filename="../Debugger/DebugUI.py" line="1990" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2188" />
-      <location filename="../Debugger/DebugUI.py" line="2179" />
+      <location filename="../Debugger/DebugUI.py" line="2191" />
+      <location filename="../Debugger/DebugUI.py" line="2182" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2181" />
+      <location filename="../Debugger/DebugUI.py" line="2184" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2580" />
+      <location filename="../Debugger/DebugUI.py" line="2583" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>Il n'y a pas de script principal défini dans le projet en cours. Débogage impossible.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3252" />
+      <location filename="../Debugger/DebugUI.py" line="3255" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -33482,7 +33482,6 @@
   <context>
     <name>HelpDocumentationPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="64" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="60" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="56" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="52" />
@@ -33609,21 +33608,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>PySide2 Documentation</source>
-      <translation>Documentation PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>Enter the PySide2 documentation directory</source>
-      <translation>Entrer le répertoire de la documentation PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished">Documentation PySide2 {6 ?}</translation>
     </message>
@@ -33637,6 +33621,14 @@
       <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE6DOCDIR environment variable, if set.</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <source>PySide2 Documentation</source>
+      <translation type="vanished">Documentation PySide2</translation>
+    </message>
+    <message>
+      <source>Enter the PySide2 documentation directory</source>
+      <translation type="vanished">Entrer le répertoire de la documentation PySide2</translation>
+    </message>
   </context>
   <context>
     <name>HelpIndexWidget</name>
@@ -34039,29 +34031,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Documentation Python 3</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Documentation Qt5</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Documentation Qt5 {6 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Documentation Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">Documentation PyQt5</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Documentation Qt5 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="453" />
@@ -34070,76 +34052,83 @@
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="454" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished">Documentation PySide2</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="455" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished">Documentation PySide2 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="512" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="514" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="513" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="701" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="700" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="725" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="724" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="736" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="735" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">Gérer les documents QtHelp</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="764" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="763" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="769" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="768" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="862" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="842" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="861" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="841" />
       <source>Clear History</source>
       <translation type="unfinished">Effacer l'historique</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="966" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="965" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1024" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1023" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtré par : </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1060" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1054" />
       <source>Unfiltered</source>
       <translation type="unfinished">non filtré</translation>
     </message>
+    <message>
+      <source>Qt5 Documentation</source>
+      <translation type="vanished">Documentation Qt5</translation>
+    </message>
+    <message>
+      <source>PyQt5 Documentation</source>
+      <translation type="vanished">Documentation PyQt5</translation>
+    </message>
+    <message>
+      <source>PySide2 Documentation</source>
+      <translation type="vanished">Documentation PySide2</translation>
+    </message>
   </context>
   <context>
     <name>HelpViewersPage</name>
@@ -52314,7 +52303,7 @@
       <translation>&lt;p&gt;Ne peut télécharger la liste des dictionnaires depuis {0}.&lt;/p&gt;&lt;p&gt;Erreur : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="415" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="416" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="221" />
       <source>No connection to Internet.</source>
       <translation type="unfinished" />
@@ -52350,24 +52339,24 @@
       <translation>{0} ({1})</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="435" />
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="411" />
-      <source>Error downloading dictionary file</source>
-      <translation>Erreur lors du téléchargement du fichier du dictionnaire</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="436" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="412" />
+      <source>Error downloading dictionary file</source>
+      <translation>Erreur lors du téléchargement du fichier du dictionnaire</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="437" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="413" />
       <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="450" />
-      <source>Error downloading dictionary</source>
-      <translation>Erreur lors du téléchargement du dictionnaire</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="451" />
+      <source>Error downloading dictionary</source>
+      <translation>Erreur lors du téléchargement du dictionnaire</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="452" />
       <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'archive de dictionnaire téléchargée est non valide. Passer.&lt;/p&gt;</translation>
     </message>
@@ -54242,7 +54231,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="459" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="460" />
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
       <source>Press to connect the selected device</source>
       <translation>Cliquer pour se connecter au matériel sélectionné</translation>
@@ -54258,25 +54247,25 @@
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="192" />
       <source>%n supported serial device(s) detected.</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="205" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="206" />
       <source>{0} - {1} ({2})</source>
       <comment>board name, description, port name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="228" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="229" />
       <source>No supported serial devices detected.</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="233" />
       <source>
 %n unknown device(s) for manual selection.</source>
       <translation type="unfinished">
@@ -54285,17 +54274,17 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="239" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="240" />
       <source>Manual Selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="250" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="251" />
       <source>WebREPL (manual)</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="270" />
       <source>
 %n WebREPL connection(s) defined.</source>
       <translation type="unfinished">
@@ -54303,39 +54292,39 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="329" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="300" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
       <source>Unknown MicroPython Device</source>
       <translation>Matériel MicroPython inconnu</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="302" />
       <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href="mailto:{1}"&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="313" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="314" />
       <source>{0} (0x{1:04x}/0x{2:04x})</source>
       <comment>description, VID, PID</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="331" />
       <source>Would you like to add them to the list of manually configured devices?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="454" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="455" />
       <source>Press to disconnect the current device</source>
       <translation>Cliquer pour déconnecter le matériel courant</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="491" />
-      <source>No device attached</source>
-      <translation>Pas de matériel relié</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="492" />
+      <source>No device attached</source>
+      <translation>Pas de matériel relié</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="493" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -54344,353 +54333,353 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
       <source>Start REPL</source>
       <translation>Démarrer REPL</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="523" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;REPL ne peut être démarré.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="731" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="718" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="720" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="726" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1198" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1190" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="729" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="730" />
       <source>unknown</source>
       <translation>inconnu</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="772" />
-      <source>Run Script</source>
-      <translation>Lancer le script</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
-      <source>There is no editor open. Abort...</source>
-      <translation>Il n'y a pas d'éditeur ouvert. Annulation...</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
-      <source>The current editor does not contain a script. Abort...</source>
-      <translation>L'éditeur courant ne contient pas de script. Annulation...</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
+      <source>Run Script</source>
+      <translation>Lancer le script</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="774" />
+      <source>There is no editor open. Abort...</source>
+      <translation>Il n'y a pas d'éditeur ouvert. Annulation...</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="783" />
+      <source>The current editor does not contain a script. Abort...</source>
+      <translation>L'éditeur courant ne contient pas de script. Annulation...</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="792" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer le script.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="827" />
-      <source>Start Chart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="828" />
+      <source>Start Chart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="829" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="843" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="844" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="860" />
-      <source>Unsaved Chart Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="861" />
+      <source>Unsaved Chart Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="862" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="909" />
-      <source>Start File Manager</source>
-      <translation>Démarrer le gestionnaire de fichier</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="910" />
+      <source>Start File Manager</source>
+      <translation>Démarrer le gestionnaire de fichier</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="911" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le gestionnaire de fichier ne peut démarrer.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="930" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="931" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1017" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1018" />
       <source>Downloads</source>
       <translation type="unfinished">Téléchargements</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
       <source>Show Version</source>
       <translation>Montrer la version</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1067" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Implementation</source>
       <translation>Montrer l'implémentation</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1071" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Synchronize Time</source>
       <translation>Synchroniser le temps</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1079" />
       <source>Show Device Time</source>
       <translation>Montrer l'horloge matériel</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1080" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Local Time</source>
       <translation>Montrer l'horloge locale</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1083" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1084" />
       <source>Show Time</source>
       <translation>Montrer l'horloge</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1087" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1088" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1691" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1099" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1091" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1092" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1730" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1727" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1095" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1096" />
       <source>Install Packages</source>
       <translation type="unfinished">Installer des packages</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1503" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1105" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1504" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1106" />
       <source>Compile Python File</source>
       <translation>Compilier le fichier Python</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1529" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1520" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1109" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1530" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1110" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1130" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1131" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1137" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Show Documentation</source>
       <translation>Montrer la documentation</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1140" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1141" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
       <source>Ignored Serial Devices</source>
       <translation>Matériels séries ignorés</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1150" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Configure</source>
       <translation>Configuration</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1153" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1154" />
       <source>Quit</source>
       <translation type="unfinished">Quitter</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1162" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1163" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1173" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
-      <source>Device Version Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1174" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1170" />
+      <source>Device Version Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1175" />
       <source>No version information available.</source>
       <translation>Pas d'information de version disponible.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1204" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1205" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1220" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1211" />
-      <source>Device Implementation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
-      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
+      <source>Device Implementation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1213" />
+      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'horloge du matériel connecté a été synchronisée à l'horloge locale.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1296" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1297" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Date et heure matériel&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1304" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1305" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Date et heure matériel&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1320" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1321" />
       <source>Device Date and Time</source>
       <translation>Date et heure matériel</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1332" />
-      <source>Local Date and Time</source>
-      <translation>Date et heure locales</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1333" />
+      <source>Local Date and Time</source>
+      <translation>Date et heure locales</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1334" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Date et heure locales&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1374" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1357" />
-      <source>Date and Time</source>
-      <translation>Date et heure</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
-      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-      <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Date et heure locales&lt;/th&gt;&lt;th&gt;Date et heure matériel&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1375" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
+      <source>Date and Time</source>
+      <translation>Date et heure</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1359" />
+      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+      <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Date et heure locales&lt;/th&gt;&lt;th&gt;Date et heure matériel&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1376" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Date et heure locales&lt;/th&gt;&lt;th&gt;Date et heure matériel&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1399" />
-      <source>Error handling device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1400" />
+      <source>Error handling device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1401" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il y a eu une erreur de communication avec le matériel connecté.&lt;/p&gt;&lt;p&gt;Méthode : {0}&lt;/p&gt;&lt;p&gt;Message : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1442" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1443" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1468" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1469" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation>Fichiers Python (*.py);;Tous les fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1478" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1479" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation>Le fichier Python &lt;b&gt;{0}&lt;/b&gt; n'existe pas. Annulation...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1488" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1489" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1522" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation>L'éditeur courant ne contient pas un fichier Python. Annulation...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1613" />
-      <source>Add Unknown Devices</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1614" />
+      <source>Add Unknown Devices</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1664" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1665" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1716" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1717" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -54698,17 +54687,17 @@
   <context>
     <name>MicroPythonWindow</name>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="81" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="83" />
       <source>MicroPython / CircuitPython Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Open Browser</source>
       <translation type="unfinished">Ouverture du navigateur</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Could not start a web browser</source>
       <translation type="unfinished">Impossible de lancer le navigateur web</translation>
     </message>
@@ -59991,164 +59980,164 @@
   <context>
     <name>Pip</name>
     <message>
-      <location filename="../PipInterface/Pip.py" line="157" />
+      <location filename="../PipInterface/Pip.py" line="161" />
       <source>python exited with an error ({0}).</source>
       <translation>python a quitté avec l'erreur ({0}).</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="166" />
+      <location filename="../PipInterface/Pip.py" line="170" />
       <source>python did not finish within 30 seconds.</source>
       <translation>python n'a pas terminé dans les 30 secondes.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="168" />
+      <location filename="../PipInterface/Pip.py" line="172" />
       <source>python could not be started.</source>
       <translation>python n'a pas pu être démarré.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="229" />
+      <location filename="../PipInterface/Pip.py" line="233" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="254" />
+      <location filename="../PipInterface/Pip.py" line="258" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="255" />
+      <location filename="../PipInterface/Pip.py" line="259" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="308" />
+      <location filename="../PipInterface/Pip.py" line="312" />
       <source>Install PIP</source>
       <translation>Installer PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="355" />
+      <location filename="../PipInterface/Pip.py" line="359" />
       <source>Repair PIP</source>
       <translation>Réparer PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="487" />
-      <location filename="../PipInterface/Pip.py" line="469" />
+      <location filename="../PipInterface/Pip.py" line="491" />
+      <location filename="../PipInterface/Pip.py" line="473" />
       <source>Upgrade Packages</source>
       <translation>Mise à jour des packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="470" />
+      <location filename="../PipInterface/Pip.py" line="474" />
       <source>There are no packages except 'eric-ide' or 'PyQt6' left for upgrade.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="533" />
+      <location filename="../PipInterface/Pip.py" line="537" />
       <source>Install Packages</source>
       <translation>Installer des packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="564" />
+      <location filename="../PipInterface/Pip.py" line="568" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="586" />
+      <location filename="../PipInterface/Pip.py" line="590" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="621" />
-      <location filename="../PipInterface/Pip.py" line="611" />
+      <location filename="../PipInterface/Pip.py" line="625" />
+      <location filename="../PipInterface/Pip.py" line="615" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="612" />
+      <location filename="../PipInterface/Pip.py" line="753" />
+      <location filename="../PipInterface/Pip.py" line="616" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="622" />
+      <location filename="../PipInterface/Pip.py" line="626" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="642" />
+      <location filename="../PipInterface/Pip.py" line="646" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="776" />
-      <location filename="../PipInterface/Pip.py" line="702" />
-      <location filename="../PipInterface/Pip.py" line="672" />
-      <location filename="../PipInterface/Pip.py" line="663" />
+      <location filename="../PipInterface/Pip.py" line="780" />
+      <location filename="../PipInterface/Pip.py" line="706" />
+      <location filename="../PipInterface/Pip.py" line="676" />
+      <location filename="../PipInterface/Pip.py" line="667" />
       <source>Uninstall Packages</source>
       <translation>Désinstaller les packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
-      <location filename="../PipInterface/Pip.py" line="703" />
-      <location filename="../PipInterface/Pip.py" line="664" />
+      <location filename="../PipInterface/Pip.py" line="781" />
+      <location filename="../PipInterface/Pip.py" line="707" />
+      <location filename="../PipInterface/Pip.py" line="668" />
       <source>Do you really want to uninstall these packages?</source>
       <translation>Voulez-vous vraiment désinstaller ces packages ?</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="720" />
+      <location filename="../PipInterface/Pip.py" line="724" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="759" />
-      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="763" />
+      <location filename="../PipInterface/Pip.py" line="752" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="760" />
+      <location filename="../PipInterface/Pip.py" line="764" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="787" />
+      <location filename="../PipInterface/Pip.py" line="791" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1198" />
+      <location filename="../PipInterface/Pip.py" line="1203" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1224" />
-      <location filename="../PipInterface/Pip.py" line="1215" />
+      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1220" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1216" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1248" />
-      <location filename="../PipInterface/Pip.py" line="1241" />
+      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1246" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1242" />
+      <location filename="../PipInterface/Pip.py" line="1247" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1273" />
-      <location filename="../PipInterface/Pip.py" line="1265" />
+      <location filename="../PipInterface/Pip.py" line="1278" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1266" />
+      <location filename="../PipInterface/Pip.py" line="1271" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -61068,205 +61057,205 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="737" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="731" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
       <source>Cleanup Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="733" />
       <source>The environment cleanup was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="739" />
       <source>Some leftover package directories could not been removed. Delete them manually.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="834" />
-      <source>Search PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="835" />
+      <source>Search PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="836" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="854" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="855" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="856" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="857" />
       <source>Install Pip</source>
       <translation>Installer pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="860" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="862" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="863" />
       <source>Repair Pip</source>
       <translation>Réparer Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="869" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="870" />
       <source>Install</source>
       <translation type="unfinished">Installer</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1048" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="871" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1049" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="872" />
       <source>Install Packages</source>
       <translation>Installer des packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="874" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="875" />
       <source>Install Local Package</source>
       <translation>Installer un package local</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="877" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="878" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="884" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="885" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="886" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="887" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="889" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="890" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="892" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="893" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="896" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="897" />
       <source>Install from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="900" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="901" />
       <source>Uninstall from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="905" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="906" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="912" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="913" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="914" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="915" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="917" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="918" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="920" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="921" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="923" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="924" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="940" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="941" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="944" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="945" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="948" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="949" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="952" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="953" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="959" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="960" />
       <source>Edit User Configuration...</source>
       <translation>Éditer la configuration utilisateur...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="962" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="963" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="967" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="968" />
       <source>Configure...</source>
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1211" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1198" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1187" />
-      <source>Edit Configuration</source>
-      <translation>Éditer la configuration</translation>
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1212" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1199" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1188" />
+      <source>Edit Configuration</source>
+      <translation>Éditer la configuration</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1213" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1200" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1189" />
       <source>No valid configuration path determined. Aborting</source>
       <translation>Pas de chemin de configuration déterminé. Annulation</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1421" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1422" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1442" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1443" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1445" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1446" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1585" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1560" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1586" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1561" />
       <source>unknown</source>
       <translation type="unfinished">inconnu</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1582" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1583" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
@@ -61309,7 +61298,7 @@
   <context>
     <name>PipPackagesWindow</name>
     <message>
-      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <location filename="../PipInterface/PipPackagesWindow.py" line="60" />
       <source>Manage Packages</source>
       <translation type="unfinished" />
     </message>
@@ -61826,52 +61815,52 @@
   <context>
     <name>PluginManager</name>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="230" />
+      <location filename="../PluginManager/PluginManager.py" line="232" />
       <source>Could not create a package for {0}.</source>
       <translation>Ne peut créer un package pour {0}.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="262" />
+      <location filename="../PluginManager/PluginManager.py" line="264" />
       <source>The internal plugin directory &lt;b&gt;{0}&lt;/b&gt; does not exits.</source>
       <translation>Le répertoire de plugin interne&lt;b&gt;{0}&lt;/b&gt; n'existe pas.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="439" />
+      <location filename="../PluginManager/PluginManager.py" line="441" />
       <source>Module is missing the 'autoactivate' attribute.</source>
       <translation>Le module ne comporte pas l'attribut 'autoactivate'.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="450" />
+      <location filename="../PluginManager/PluginManager.py" line="452" />
       <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source>
       <translation>Le module ne comporte pas le(s) attribut(s) 'pluginType' et/ou 'pluginTypename'.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="478" />
+      <location filename="../PluginManager/PluginManager.py" line="480" />
       <source>Module failed to load. Error: {0}</source>
       <translation>Échec de chargement du module . Erreur {0}</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="661" />
+      <location filename="../PluginManager/PluginManager.py" line="663" />
       <source>Incompatible plugin activation method.</source>
       <translation>Méthode d'activation du plugin incompatible.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1269" />
+      <location filename="../PluginManager/PluginManager.py" line="1271" />
       <source>Plugin Manager Error</source>
       <translation>Erreur du gestionnaire de plugins</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1270" />
+      <location filename="../PluginManager/PluginManager.py" line="1272" />
       <source>&lt;p&gt;The plugin download directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Please configure it via the configuration dialog.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le répertoire de téléchargement de plugin&lt;b&gt;{0}&lt;/b&gt; n'a pas pu être créé. Veuillez le reconfigurer.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1358" />
+      <location filename="../PluginManager/PluginManager.py" line="1360" />
       <source>Error downloading file</source>
       <translation>Erreur de téléchargement du fichier</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1359" />
+      <location filename="../PluginManager/PluginManager.py" line="1361" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut télécharger le fichier demandé depuis {0}.&lt;/p&gt;&lt;p&gt;Erreur : {1}&lt;/p&gt;</translation>
     </message>
@@ -62757,18 +62746,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1911" />
+      <location filename="../Preferences/__init__.py" line="1891" />
       <source>Export Preferences</source>
       <translation>Export des préférences</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1940" />
-      <location filename="../Preferences/__init__.py" line="1913" />
+      <location filename="../Preferences/__init__.py" line="1920" />
+      <location filename="../Preferences/__init__.py" line="1893" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Fichier propriétés (*.ini);;Tous les fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1938" />
+      <location filename="../Preferences/__init__.py" line="1918" />
       <source>Import Preferences</source>
       <translation>Import des préférences</translation>
     </message>
@@ -63300,113 +63289,98 @@
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="204" />
-      <source>Translation Extractor (Python, PySide2)</source>
+      <source>Translation Extractor (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="213" />
-      <source>Forms Compiler (Python, PySide2)</source>
+      <source>Forms Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="222" />
-      <source>Resource Compiler (Python, PySide2)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="232" />
-      <source>Translation Extractor (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="241" />
-      <source>Forms Compiler (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="250" />
       <source>Resource Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="265" />
+      <location filename="../Preferences/ProgramsDialog.py" line="237" />
       <source>conda Manager</source>
       <translation>Gestionnaire conda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="275" />
+      <location filename="../Preferences/ProgramsDialog.py" line="247" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="527" />
-      <location filename="../Preferences/ProgramsDialog.py" line="524" />
-      <location filename="../Preferences/ProgramsDialog.py" line="508" />
-      <location filename="../Preferences/ProgramsDialog.py" line="378" />
-      <location filename="../Preferences/ProgramsDialog.py" line="311" />
-      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <location filename="../Preferences/ProgramsDialog.py" line="499" />
+      <location filename="../Preferences/ProgramsDialog.py" line="496" />
+      <location filename="../Preferences/ProgramsDialog.py" line="480" />
+      <location filename="../Preferences/ProgramsDialog.py" line="350" />
+      <location filename="../Preferences/ProgramsDialog.py" line="283" />
+      <location filename="../Preferences/ProgramsDialog.py" line="266" />
       <source>(unknown)</source>
       <translation>(inconnu)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="298" />
+      <location filename="../Preferences/ProgramsDialog.py" line="270" />
       <source>Spell Checker - PyEnchant</source>
       <translation>Vérification d'orthographe - PyEnchant</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="315" />
+      <location filename="../Preferences/ProgramsDialog.py" line="287" />
       <source>Source Highlighter - Pygments</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <source>MicroPython - MPY Cross Compiler</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="301" />
+      <source>MicroPython - ESP Tool</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="312" />
+      <source>MicroPython - PyBoard Flasher</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ProgramsDialog.py" line="322" />
-      <source>MicroPython - MPY Cross Compiler</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="329" />
-      <source>MicroPython - ESP Tool</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="340" />
-      <source>MicroPython - PyBoard Flasher</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="350" />
       <source>MicroPython - STLink Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="360" />
+      <location filename="../Preferences/ProgramsDialog.py" line="332" />
       <source>MicroPython - STLink Flasher</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="382" />
+      <location filename="../Preferences/ProgramsDialog.py" line="354" />
       <source>Code Assistant - Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="462" />
+      <location filename="../Preferences/ProgramsDialog.py" line="434" />
       <source>(not configured)</source>
       <translation>(non configuré)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="497" />
+      <location filename="../Preferences/ProgramsDialog.py" line="469" />
       <source>(module not found)</source>
       <translation>(module non trouvé)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="530" />
+      <location filename="../Preferences/ProgramsDialog.py" line="502" />
       <source>(not executable)</source>
       <translation>(non executable)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="576" />
-      <location filename="../Preferences/ProgramsDialog.py" line="544" />
-      <location filename="../Preferences/ProgramsDialog.py" line="542" />
+      <location filename="../Preferences/ProgramsDialog.py" line="548" />
+      <location filename="../Preferences/ProgramsDialog.py" line="516" />
+      <location filename="../Preferences/ProgramsDialog.py" line="514" />
       <source>(not found)</source>
       <translation>(non trouvé)</translation>
     </message>
@@ -63465,379 +63439,369 @@
     </message>
     <message>
       <location filename="../Project/Project.py" line="362" />
-      <source>PySide2 GUI</source>
+      <source>PySide6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="363" />
-      <source>PySide2 Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="367" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="466" />
-      <location filename="../Project/Project.py" line="454" />
-      <location filename="../Project/Project.py" line="443" />
+      <location filename="../Project/Project.py" line="461" />
+      <location filename="../Project/Project.py" line="449" />
+      <location filename="../Project/Project.py" line="438" />
       <source>Registering Project Type</source>
       <translation>Enregistrement du type de projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="444" />
+      <location filename="../Project/Project.py" line="439" />
       <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le langage de programmation &lt;b&gt;{0}&lt;/b&gt; n'est pas supporté (type project : {1}).&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="455" />
+      <location filename="../Project/Project.py" line="450" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le type projet &lt;b&gt;{0}&lt;/b&gt; est déjà enregistré avec le langage de programmation&lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="467" />
+      <location filename="../Project/Project.py" line="462" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le type projet &lt;b&gt;{0}&lt;/b&gt; est déjà enregistré.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="772" />
+      <location filename="../Project/Project.py" line="767" />
       <source>All Files (*)</source>
       <translation type="unfinished">Tous fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1321" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1579" />
-      <location filename="../Project/Project.py" line="1553" />
-      <location filename="../Project/Project.py" line="1517" />
-      <location filename="../Project/Project.py" line="1435" />
-      <location filename="../Project/Project.py" line="1396" />
-      <location filename="../Project/Project.py" line="1371" />
-      <location filename="../Project/Project.py" line="1334" />
+      <location filename="../Project/Project.py" line="1567" />
+      <location filename="../Project/Project.py" line="1541" />
+      <location filename="../Project/Project.py" line="1505" />
+      <location filename="../Project/Project.py" line="1423" />
+      <location filename="../Project/Project.py" line="1384" />
+      <location filename="../Project/Project.py" line="1359" />
+      <location filename="../Project/Project.py" line="1322" />
       <source>Please save the project first.</source>
       <translation>Prière d'enregistrer votre projet d'abord.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1370" />
+      <location filename="../Project/Project.py" line="1358" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1412" />
-      <location filename="../Project/Project.py" line="1395" />
+      <location filename="../Project/Project.py" line="1400" />
+      <location filename="../Project/Project.py" line="1383" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1402" />
+      <location filename="../Project/Project.py" line="1390" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1421" />
+      <location filename="../Project/Project.py" line="1409" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1422" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1516" />
+      <location filename="../Project/Project.py" line="1504" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1552" />
+      <location filename="../Project/Project.py" line="1540" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1595" />
-      <location filename="../Project/Project.py" line="1578" />
+      <location filename="../Project/Project.py" line="1583" />
+      <location filename="../Project/Project.py" line="1566" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1585" />
+      <location filename="../Project/Project.py" line="1573" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1604" />
+      <location filename="../Project/Project.py" line="1592" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1777" />
+      <location filename="../Project/Project.py" line="1765" />
       <source>Add Language</source>
       <translation>Ajouter une langue</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1778" />
+      <location filename="../Project/Project.py" line="1766" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Vous devez d'abord spécifier un pattern de traduction.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1919" />
+      <location filename="../Project/Project.py" line="1905" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1946" />
-      <location filename="../Project/Project.py" line="1920" />
+      <location filename="../Project/Project.py" line="1932" />
+      <location filename="../Project/Project.py" line="1906" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier de traduction sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1945" />
+      <location filename="../Project/Project.py" line="1931" />
       <source>Delete translation</source>
       <translation>Supprimer la traduction</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2098" />
-      <location filename="../Project/Project.py" line="2081" />
+      <location filename="../Project/Project.py" line="2084" />
+      <location filename="../Project/Project.py" line="2067" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2200" />
-      <location filename="../Project/Project.py" line="2082" />
+      <location filename="../Project/Project.py" line="2186" />
+      <location filename="../Project/Project.py" line="2068" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; existe déjà.&lt;/p&gt;&lt;p&gt;L'écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2099" />
+      <location filename="../Project/Project.py" line="2085" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être ajouté à &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Raison : {2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2097" />
       <source>Add file</source>
       <translation>Ajouter un fichier</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2296" />
-      <location filename="../Project/Project.py" line="2112" />
+      <location filename="../Project/Project.py" line="2282" />
+      <location filename="../Project/Project.py" line="2098" />
       <source>The target directory must not be empty.</source>
       <translation>Le répertoire cible ne doit pas être vide.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2172" />
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2185" />
+      <location filename="../Project/Project.py" line="2158" />
+      <location filename="../Project/Project.py" line="2138" />
       <source>Add Directory</source>
       <translation type="unfinished">Ajouter un répertoire</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2153" />
+      <location filename="../Project/Project.py" line="2139" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le répertoire source ne contient aucun fichier correspondant à la catégorie sélectionnée.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2173" />
+      <location filename="../Project/Project.py" line="2159" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le répertoire cible &lt;b&gt;{0}&lt;/b&gt; ne peut être créé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2307" />
-      <location filename="../Project/Project.py" line="2295" />
+      <location filename="../Project/Project.py" line="2293" />
+      <location filename="../Project/Project.py" line="2281" />
       <source>Add directory</source>
       <translation>Ajouter un répertoire</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2308" />
+      <location filename="../Project/Project.py" line="2294" />
       <source>The source directory must not be empty.</source>
       <translation>Le répertoire source ne doit pas être vide.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2422" />
-      <location filename="../Project/Project.py" line="2404" />
-      <location filename="../Project/Project.py" line="2388" />
-      <location filename="../Project/Project.py" line="2381" />
+      <location filename="../Project/Project.py" line="2408" />
+      <location filename="../Project/Project.py" line="2390" />
+      <location filename="../Project/Project.py" line="2374" />
+      <location filename="../Project/Project.py" line="2367" />
       <source>Rename File</source>
       <translation>Renommer le fichier</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8089" />
-      <location filename="../Project/Project.py" line="3909" />
-      <location filename="../Project/Project.py" line="2405" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2423" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut pas être renommé.&lt;br /&gt;Raison : {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2690" />
-      <source>Delete File</source>
-      <translation type="unfinished">Supprimer le fichier</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2691" />
-      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le fichier sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2719" />
-      <source>Delete Directory</source>
-      <translation type="unfinished">Supprimer le répertoire</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2720" />
-      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le répertoire sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2853" />
-      <source>Create project directory</source>
-      <translation>Création d'un répertoire projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2854" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le répertoire projet &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être créé.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3682" />
-      <location filename="../Project/Project.py" line="2954" />
-      <source>Create project management directory</source>
-      <translation>Créer un répertoire de gestion de projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3683" />
-      <location filename="../Project/Project.py" line="2955" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le répertoire projet &lt;b&gt;{0}&lt;/b&gt; n'est pas accessible en écriture.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2995" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2996" />
-      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3463" />
-      <location filename="../Project/Project.py" line="3020" />
-      <source>Create Makefile</source>
-      <translation>Créer un Makefile</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3464" />
-      <location filename="../Project/Project.py" line="3021" />
-      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le makefile &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être créé.&lt;br/&gt;Raison : {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3712" />
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3144" />
-      <location filename="../Project/Project.py" line="3112" />
-      <location filename="../Project/Project.py" line="3094" />
-      <location filename="../Project/Project.py" line="3069" />
-      <location filename="../Project/Project.py" line="3031" />
-      <source>New Project</source>
-      <translation>Nouveau projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3032" />
-      <source>Add existing files to the project?</source>
-      <translation>Ajouter des fichiers existant au projet ?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3713" />
-      <location filename="../Project/Project.py" line="3070" />
-      <source>Select Version Control System</source>
-      <translation>Sélectionner un système de contrôle de version</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3174" />
-      <location filename="../Project/Project.py" line="3095" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>Voulez-vous éditer les options de commande VCS ?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3113" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Le fichier projet doit-il être ajouté au référentiel?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3150" />
-      <location filename="../Project/Project.py" line="3139" />
-      <source>None</source>
-      <translation>Auncun</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3145" />
-      <source>Select version control system for the project</source>
-      <translation>Sélectionner un système de contrôle de version (VCS) pour le projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3356" />
-      <source>Translation Pattern</source>
-      <translation>Pattern de traduction</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3357" />
-      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
-      <translation>Entrer le pattern pour les fichiers de traduction (utiliser la balise '%language%' à la place de la langue à utiliser):</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3661" />
-      <source>Open Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="8075" />
-      <location filename="../Project/Project.py" line="8069" />
-      <location filename="../Project/Project.py" line="8059" />
-      <location filename="../Project/Project.py" line="3894" />
-      <location filename="../Project/Project.py" line="3884" />
-      <location filename="../Project/Project.py" line="3663" />
+      <location filename="../Project/Project.py" line="3895" />
+      <location filename="../Project/Project.py" line="2391" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2409" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut pas être renommé.&lt;br /&gt;Raison : {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2676" />
+      <source>Delete File</source>
+      <translation type="unfinished">Supprimer le fichier</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2677" />
+      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le fichier sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2705" />
+      <source>Delete Directory</source>
+      <translation type="unfinished">Supprimer le répertoire</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2706" />
+      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le répertoire sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2839" />
+      <source>Create project directory</source>
+      <translation>Création d'un répertoire projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2840" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le répertoire projet &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être créé.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3668" />
+      <location filename="../Project/Project.py" line="2940" />
+      <source>Create project management directory</source>
+      <translation>Créer un répertoire de gestion de projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3669" />
+      <location filename="../Project/Project.py" line="2941" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le répertoire projet &lt;b&gt;{0}&lt;/b&gt; n'est pas accessible en écriture.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2981" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2982" />
+      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3449" />
+      <location filename="../Project/Project.py" line="3006" />
+      <source>Create Makefile</source>
+      <translation>Créer un Makefile</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3450" />
+      <location filename="../Project/Project.py" line="3007" />
+      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le makefile &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être créé.&lt;br/&gt;Raison : {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3698" />
+      <location filename="../Project/Project.py" line="3159" />
+      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3098" />
+      <location filename="../Project/Project.py" line="3080" />
+      <location filename="../Project/Project.py" line="3055" />
+      <location filename="../Project/Project.py" line="3017" />
+      <source>New Project</source>
+      <translation>Nouveau projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3018" />
+      <source>Add existing files to the project?</source>
+      <translation>Ajouter des fichiers existant au projet ?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3699" />
+      <location filename="../Project/Project.py" line="3056" />
+      <source>Select Version Control System</source>
+      <translation>Sélectionner un système de contrôle de version</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3160" />
+      <location filename="../Project/Project.py" line="3081" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>Voulez-vous éditer les options de commande VCS ?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3099" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Le fichier projet doit-il être ajouté au référentiel?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3125" />
+      <source>None</source>
+      <translation>Auncun</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3131" />
+      <source>Select version control system for the project</source>
+      <translation>Sélectionner un système de contrôle de version (VCS) pour le projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3342" />
+      <source>Translation Pattern</source>
+      <translation>Pattern de traduction</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3343" />
+      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
+      <translation>Entrer le pattern pour les fichiers de traduction (utiliser la balise '%language%' à la place de la langue à utiliser):</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3647" />
+      <source>Open Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8061" />
+      <location filename="../Project/Project.py" line="8055" />
+      <location filename="../Project/Project.py" line="8045" />
+      <location filename="../Project/Project.py" line="3880" />
+      <location filename="../Project/Project.py" line="3870" />
+      <location filename="../Project/Project.py" line="3649" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="3892" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3878" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3947" />
+      <location filename="../Project/Project.py" line="3933" />
       <source>Close Project</source>
       <translation>Fermer le projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3948" />
+      <location filename="../Project/Project.py" line="3934" />
       <source>The current project has unsaved changes.</source>
       <translation>Le projet courant a des modifications non enregistrées.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4134" />
+      <location filename="../Project/Project.py" line="4098" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4149" />
-      <location filename="../Project/Project.py" line="4113" />
+      <location filename="../Project/Project.py" line="4135" />
+      <location filename="../Project/Project.py" line="4099" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Le projet contient %n fichier avec des erreurs de syntaxe.</numerusform>
@@ -63845,1268 +63809,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4793" />
       <source>New project</source>
       <translation>Nouveau projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4809" />
+      <location filename="../Project/Project.py" line="4795" />
       <source>&amp;New...</source>
       <translation>&amp;Nouveau...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4801" />
+      <source>Generate a new project</source>
+      <translation>Génerer un nouveau projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4803" />
+      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Nouveau...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour entrer les paramètres d'un nouveau projet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4813" />
+      <source>Open project</source>
+      <translation>Ouvir un projet</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4815" />
-      <source>Generate a new project</source>
-      <translation>Génerer un nouveau projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4817" />
-      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Nouveau...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour entrer les paramètres d'un nouveau projet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4827" />
-      <source>Open project</source>
-      <translation>Ouvir un projet</translation>
+      <source>&amp;Open...</source>
+      <translation>&amp;Ouvrir...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4821" />
+      <source>Open an existing project</source>
+      <translation>Ouvrir un projet existant</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4823" />
+      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Ouvrir...&lt;/b&gt;&lt;p&gt;Ouvre un projet existant.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4829" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Ouvrir...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4835" />
-      <source>Open an existing project</source>
-      <translation>Ouvrir un projet existant</translation>
+      <source>Open remote project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4831" />
+      <source>Open (Remote)...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4837" />
-      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Ouvrir...&lt;/b&gt;&lt;p&gt;Ouvre un projet existant.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4843" />
-      <source>Open remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4845" />
-      <source>Open (Remote)...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4853" />
+      <location filename="../Project/Project.py" line="4839" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4862" />
+      <location filename="../Project/Project.py" line="4848" />
       <source>Reload project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4850" />
+      <source>Re&amp;load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4856" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4858" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4864" />
-      <source>Re&amp;load</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4870" />
-      <source>Reload the current project</source>
-      <translation type="unfinished" />
+      <source>Close project</source>
+      <translation>Fermer le projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4866" />
+      <source>&amp;Close</source>
+      <translation>&amp;Fermer</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4872" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4878" />
-      <source>Close project</source>
-      <translation>Fermer le projet</translation>
+      <source>Close the current project</source>
+      <translation>Fermer le projet en cours</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4874" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme le projet en cours.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4880" />
-      <source>&amp;Close</source>
-      <translation>&amp;Fermer</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4886" />
-      <source>Close the current project</source>
-      <translation>Fermer le projet en cours</translation>
+      <source>Save project</source>
+      <translation>Enregistrer le projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5177" />
+      <location filename="../Project/Project.py" line="4882" />
+      <source>&amp;Save</source>
+      <translation>&amp;Enregistrer</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4888" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme le projet en cours.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4894" />
-      <source>Save project</source>
-      <translation>Enregistrer le projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5191" />
-      <location filename="../Project/Project.py" line="4896" />
-      <source>&amp;Save</source>
-      <translation>&amp;Enregistrer</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Enregistre le projet courant</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4890" />
+      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Enregistrer&lt;/b&gt;&lt;p&gt;Enregistre le projet en cours.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
+      <source>Save project as</source>
+      <translation>Enregistrer le projet sous</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4898" />
+      <source>Save &amp;as...</source>
+      <translation>&amp;Enregistrer sous...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4904" />
-      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Enregistrer&lt;/b&gt;&lt;p&gt;Enregistre le projet en cours.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4910" />
-      <source>Save project as</source>
-      <translation>Enregistrer le projet sous</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4912" />
-      <source>Save &amp;as...</source>
-      <translation>&amp;Enregistrer sous...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation>Enregistre le projet en cours dans un nouveau fichier</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4920" />
+      <location filename="../Project/Project.py" line="4906" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrer sous&lt;/b&gt;&lt;p&gt;Enregistre le projet en cours dans un nouveau fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4929" />
+      <location filename="../Project/Project.py" line="4915" />
       <source>Save project as (Remote)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4931" />
+      <location filename="../Project/Project.py" line="4917" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4938" />
+      <location filename="../Project/Project.py" line="4924" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4927" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4957" />
+      <location filename="../Project/Project.py" line="4943" />
       <source>Add files to project</source>
       <translation>Ajouter des fichiers au projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4959" />
+      <location filename="../Project/Project.py" line="4945" />
       <source>Add &amp;files...</source>
       <translation>Ajouter des &amp;fichiers...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4965" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>Add files to the current project</source>
       <translation>Ajouter des fichiers au projet courant</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4967" />
+      <location filename="../Project/Project.py" line="4953" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ajouter des fichiers...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour ajouter des fichiers au projet courant. La position pour l'insertion est déterminée par l'extension du fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4978" />
+      <location filename="../Project/Project.py" line="4964" />
       <source>Add directory to project</source>
       <translation>Ajouter un répertoire au projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4980" />
+      <location filename="../Project/Project.py" line="4966" />
       <source>Add directory...</source>
       <translation>Ajouter un répertoire...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4987" />
+      <location filename="../Project/Project.py" line="4973" />
       <source>Add a directory to the current project</source>
       <translation>Ajouter un répertoire au projet courant</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4990" />
+      <location filename="../Project/Project.py" line="4976" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ajouter un répertoire...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour ajouter un répertoire au projet courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5000" />
+      <location filename="../Project/Project.py" line="4986" />
       <source>Add translation to project</source>
       <translation>Ajouter une traduction au projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5002" />
+      <location filename="../Project/Project.py" line="4988" />
       <source>Add &amp;translation...</source>
       <translation>Ajouter une &amp;traduction...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4995" />
+      <source>Add a translation to the current project</source>
+      <translation>Ajoute une traduction au projet en cours</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4998" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Ajouter une traduction...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour ajouter une traduction au projet courant.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5008" />
+      <source>Search new files</source>
+      <translation>Rechercher des nouveaux fichiers</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5009" />
-      <source>Add a translation to the current project</source>
-      <translation>Ajoute une traduction au projet en cours</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5012" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Ajouter une traduction...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour ajouter une traduction au projet courant.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5022" />
-      <source>Search new files</source>
-      <translation>Rechercher des nouveaux fichiers</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>Re&amp;chercher des nouveaux fichiers...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5015" />
+      <source>Search new files in the project directory.</source>
+      <translation>Recherche des nouveaux fichiers dans le répertoire du projet.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5017" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5027" />
+      <source>Search Project File</source>
+      <translation>Chercher un fichier projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5028" />
+      <source>Search Project File...</source>
+      <translation>Chercher un fichier projet...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5029" />
-      <source>Search new files in the project directory.</source>
-      <translation>Recherche des nouveaux fichiers dans le répertoire du projet.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5031" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File</source>
-      <translation>Chercher un fichier projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5042" />
-      <source>Search Project File...</source>
-      <translation>Chercher un fichier projet...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5048" />
+      <location filename="../Project/Project.py" line="5034" />
       <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5050" />
+      <location filename="../Project/Project.py" line="5036" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5059" />
+      <location filename="../Project/Project.py" line="5045" />
       <source>Project properties</source>
       <translation>Propriétés du projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5061" />
+      <location filename="../Project/Project.py" line="5047" />
       <source>&amp;Properties...</source>
       <translation>&amp;Propriétés...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5067" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Show the project properties</source>
       <translation>Affiche les propriétés du projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5069" />
+      <location filename="../Project/Project.py" line="5055" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propriétés...&lt;/b&gt;&lt;p&gt;Affiche une boite de dialogue pour éditer les propriétés du projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5078" />
+      <location filename="../Project/Project.py" line="5064" />
       <source>User project properties</source>
       <translation>Propriétés utilisateur du projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5080" />
+      <location filename="../Project/Project.py" line="5066" />
       <source>&amp;User Properties...</source>
       <translation>Propriétés &amp;Utilisateur...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5073" />
+      <source>Show the user specific project properties</source>
+      <translation>Afficher le propriétés utilisateurs spécifiques au projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5076" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Propriétés utilisateur...&lt;/b&gt;&lt;p&gt;Affiche une fenêtre permettant d'éditer les propriétés du projet spécifiques à l'utilisateur.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5086" />
+      <source>Filetype Associations</source>
+      <translation>Association des types de fichiers</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5087" />
-      <source>Show the user specific project properties</source>
-      <translation>Afficher le propriétés utilisateurs spécifiques au projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5090" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Propriétés utilisateur...&lt;/b&gt;&lt;p&gt;Affiche une fenêtre permettant d'éditer les propriétés du projet spécifiques à l'utilisateur.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5100" />
-      <source>Filetype Associations</source>
-      <translation>Association des types de fichiers</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation>Association des types de fichiers...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5108" />
+      <location filename="../Project/Project.py" line="5094" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5097" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5110" />
+      <source>Lexer Associations</source>
+      <translation>Association des types de fichiers</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5111" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5124" />
-      <source>Lexer Associations</source>
-      <translation>Association des types de fichiers</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation>Association des types de fichiers...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5132" />
+      <location filename="../Project/Project.py" line="5118" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation>Affiche les asociations Fichier/Type de fichier pour le projet (sans tenir compte des valeurs par défaut)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5135" />
+      <location filename="../Project/Project.py" line="5121" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Associations des types de fichiers...&lt;/b&gt;&lt;p&gt;Permet d'associer les types de fichiers aux analyseurs syntaxiques pour le projet en cours. Ces associations sont prioritaires sur les associations de fichiers configurées par défaut.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5153" />
+      <location filename="../Project/Project.py" line="5139" />
       <source>Debugger Properties</source>
       <translation>Propriétés du Débogueur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5154" />
+      <location filename="../Project/Project.py" line="5140" />
       <source>Debugger &amp;Properties...</source>
       <translation>Débogueur &amp; Propriétés...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5160" />
+      <location filename="../Project/Project.py" line="5146" />
       <source>Show the debugger properties</source>
       <translation>Affichage des propriétés du débogueur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5162" />
+      <location filename="../Project/Project.py" line="5148" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propriétés du Débogueur...&lt;/b&gt;&lt;p&gt;Affiche une boite de dialogue permettant d'éditer les proprités du débogueur, spécifiques au projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5158" />
       <source>Load</source>
       <translation>Charger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5173" />
+      <location filename="../Project/Project.py" line="5159" />
       <source>&amp;Load</source>
       <translation>&amp;Charger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5179" />
+      <location filename="../Project/Project.py" line="5165" />
       <source>Load the debugger properties</source>
       <translation>Charger les propriétés du débogueur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5181" />
+      <location filename="../Project/Project.py" line="5167" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Chargement des Propriétés du Débogueur&lt;/b&gt;&lt;p&gt;Charge la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
+      <location filename="../Project/Project.py" line="5176" />
       <source>Save</source>
       <translation>Enregistrer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5197" />
+      <location filename="../Project/Project.py" line="5183" />
       <source>Save the debugger properties</source>
       <translation>Enregistrer les propriétés du débogueur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5199" />
+      <location filename="../Project/Project.py" line="5185" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrement des Propriétés du Débogueur&lt;/b&gt;&lt;p&gt;Enregistre la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5208" />
+      <location filename="../Project/Project.py" line="5194" />
       <source>Delete</source>
       <translation>Supprimer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5209" />
+      <location filename="../Project/Project.py" line="5195" />
       <source>&amp;Delete</source>
       <translation>&amp;Supprimer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5215" />
+      <location filename="../Project/Project.py" line="5201" />
       <source>Delete the debugger properties</source>
       <translation>Supprimer les propriétés du débogueur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5217" />
+      <location filename="../Project/Project.py" line="5203" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Suppression des Propriétés du Débogueur...&lt;/b&gt;&lt;p&gt;Supprime la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5227" />
+      <location filename="../Project/Project.py" line="5213" />
       <source>Reset</source>
       <translation>Réinitialiser</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5228" />
+      <location filename="../Project/Project.py" line="5214" />
       <source>&amp;Reset</source>
       <translation>&amp;Réinitialiser</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5234" />
+      <location filename="../Project/Project.py" line="5220" />
       <source>Reset the debugger properties</source>
       <translation>Réinitialise des propriétés du débogueur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5236" />
+      <location filename="../Project/Project.py" line="5222" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Réinitialiser les propriétés du débogueur&lt;/b&gt;&lt;p&gt;Réinitialise la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5252" />
-      <location filename="../Project/Project.py" line="5251" />
+      <location filename="../Project/Project.py" line="5238" />
+      <location filename="../Project/Project.py" line="5237" />
       <source>Load session</source>
       <translation>Charger la session</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5258" />
+      <location filename="../Project/Project.py" line="5244" />
       <source>Load the projects session file.</source>
       <translation>Charge le fichier de session du projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5260" />
+      <location filename="../Project/Project.py" line="5246" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Charger la session&lt;/b&gt;&lt;p&gt;Charge le fichier session du projet. Une session est constituée par les données suivantes.&lt;br&gt;- tous les fichiers open source&lt;br&gt;- tous les points d'arrêts&lt;br&gt;- les arguments de ligne de commande&lt;br&gt;- le répertoire de travail&lt;br&gt;- le flag de rapport d'exception&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5276" />
-      <location filename="../Project/Project.py" line="5275" />
+      <location filename="../Project/Project.py" line="5262" />
+      <location filename="../Project/Project.py" line="5261" />
       <source>Save session</source>
       <translation>Enregistrer la session</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5282" />
+      <location filename="../Project/Project.py" line="5268" />
       <source>Save the projects session file.</source>
       <translation>Enregistre le fichier de session du projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5284" />
+      <location filename="../Project/Project.py" line="5270" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrer la session&lt;/b&gt;&lt;p&gt;Enregistrer le fichier session du projet. Une session est constituée par les données suivantes.&lt;br&gt;- tous les fichiers open source&lt;br&gt;- tous les points d'arrêts&lt;br&gt;- les arguments de ligne de commande&lt;br&gt;- le répertoire de travail&lt;br&gt;- le flag de rapport d'exception&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5300" />
-      <location filename="../Project/Project.py" line="5299" />
+      <location filename="../Project/Project.py" line="5286" />
+      <location filename="../Project/Project.py" line="5285" />
       <source>Delete session</source>
       <translation>Supprimer la session</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5306" />
+      <location filename="../Project/Project.py" line="5292" />
       <source>Delete the projects session file.</source>
       <translation>Suppression du fichier session de projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5308" />
+      <location filename="../Project/Project.py" line="5294" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Suppression de session&lt;/b&gt;&lt;p&gt;Ceci supprime le fichier session de projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5323" />
+      <location filename="../Project/Project.py" line="5309" />
       <source>Code Metrics</source>
       <translation>Statistiques du code</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5324" />
+      <location filename="../Project/Project.py" line="5310" />
       <source>&amp;Code Metrics...</source>
       <translation>Statistiques du &amp;Code...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5317" />
+      <source>Show some code metrics for the project.</source>
+      <translation>Affiche des statistiques sur le code du projet.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5320" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Statistiques du Code...&lt;/b&gt;&lt;p&gt;Affiche des statistiques sur le code de tous les fichiers Python du projet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5330" />
+      <source>Python Code Coverage</source>
+      <translation> Code Coverage Python</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5331" />
-      <source>Show some code metrics for the project.</source>
-      <translation>Affiche des statistiques sur le code du projet.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5334" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Statistiques du Code...&lt;/b&gt;&lt;p&gt;Affiche des statistiques sur le code de tous les fichiers Python du projet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5344" />
-      <source>Python Code Coverage</source>
-      <translation> Code Coverage Python</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation>Code Co&amp;verage...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5338" />
+      <source>Show code coverage information for the project.</source>
+      <translation>Affiche les informations de code coverage pour le projet.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5341" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;Affiche les informations de code coverage pour le projet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6775" />
+      <location filename="../Project/Project.py" line="6762" />
+      <location filename="../Project/Project.py" line="5351" />
+      <source>Profile Data</source>
+      <translation>Profiling des données</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5352" />
-      <source>Show code coverage information for the project.</source>
-      <translation>Affiche les informations de code coverage pour le projet.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5355" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;Affiche les informations de code coverage pour le projet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6789" />
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="5365" />
-      <source>Profile Data</source>
-      <translation>Profiling des données</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Profiling des données...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5373" />
+      <location filename="../Project/Project.py" line="5359" />
       <source>Show profiling data for the project.</source>
       <translation>Affiche le profiling des données du projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5376" />
+      <location filename="../Project/Project.py" line="5362" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilling des données...&lt;/b&gt;&lt;p&gt;Affiche le profiling des données du projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="6827" />
+      <location filename="../Project/Project.py" line="5377" />
       <source>Application Diagram</source>
       <translation>Diagramme de l'application</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5392" />
+      <location filename="../Project/Project.py" line="5378" />
       <source>&amp;Application Diagram...</source>
       <translation>&amp;Diagramme de l'application...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5399" />
+      <location filename="../Project/Project.py" line="5385" />
       <source>Show a diagram of the project.</source>
       <translation>Affiche le diagramme de l'application.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5402" />
+      <location filename="../Project/Project.py" line="5388" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diagramme de l'application...&lt;/b&gt;&lt;p&gt;Affiche le diagramme du projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5411" />
+      <location filename="../Project/Project.py" line="5397" />
       <source>Load Diagram</source>
       <translation>Charger le diagramme</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5412" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5418" />
+      <location filename="../Project/Project.py" line="5404" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5420" />
+      <location filename="../Project/Project.py" line="5406" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
-      <location filename="../Project/Project.py" line="6954" />
-      <location filename="../Project/Project.py" line="5435" />
+      <location filename="../Project/Project.py" line="6995" />
+      <location filename="../Project/Project.py" line="6940" />
+      <location filename="../Project/Project.py" line="5421" />
       <source>Create Package List</source>
       <translation>Création de la liste de package</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5437" />
+      <location filename="../Project/Project.py" line="5423" />
       <source>Create &amp;Package List</source>
       <translation>Création de la liste de &amp;package</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5444" />
+      <location filename="../Project/Project.py" line="5430" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="5433" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7080" />
-      <location filename="../Project/Project.py" line="5458" />
+      <location filename="../Project/Project.py" line="7066" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create Plugin Archives</source>
       <translation>Créer une archive plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5460" />
+      <location filename="../Project/Project.py" line="5446" />
       <source>Create Plugin &amp;Archives</source>
       <translation>Créer les &amp;archives plugin</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5452" />
+      <source>Create eric plugin archive files.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5454" />
+      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5466" />
-      <source>Create eric plugin archive files.</source>
+      <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5468" />
-      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5480" />
-      <source>Create Plugin Archives (Snapshot)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5489" />
+      <location filename="../Project/Project.py" line="5475" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5492" />
+      <location filename="../Project/Project.py" line="5478" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7536" />
-      <location filename="../Project/Project.py" line="7507" />
-      <location filename="../Project/Project.py" line="7461" />
-      <location filename="../Project/Project.py" line="7413" />
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="5497" />
       <source>Execute Make</source>
       <translation>Exécuter Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5512" />
+      <location filename="../Project/Project.py" line="5498" />
       <source>&amp;Execute Make</source>
       <translation>Éxécut&amp;er Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5518" />
+      <location filename="../Project/Project.py" line="5504" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5520" />
+      <location filename="../Project/Project.py" line="5506" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7513" />
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="7499" />
+      <location filename="../Project/Project.py" line="5516" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5531" />
+      <location filename="../Project/Project.py" line="5517" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5524" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5541" />
+      <location filename="../Project/Project.py" line="5527" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5559" />
+      <location filename="../Project/Project.py" line="5545" />
       <source>Create SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5560" />
+      <location filename="../Project/Project.py" line="5546" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5553" />
+      <source>Create a SBOM file of the project dependencies.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5556" />
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5567" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5570" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5581" />
       <source>Clear Byte Code Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5582" />
+      <location filename="../Project/Project.py" line="5568" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5589" />
+      <location filename="../Project/Project.py" line="5575" />
       <source>Clear the byte code caches of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5592" />
+      <location filename="../Project/Project.py" line="5578" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5608" />
+      <location filename="../Project/Project.py" line="5594" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5609" />
+      <location filename="../Project/Project.py" line="5595" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5601" />
+      <source>Show some information about 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5603" />
+      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5615" />
-      <source>Show some information about 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5617" />
-      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5629" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5630" />
+      <location filename="../Project/Project.py" line="5616" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5637" />
+      <location filename="../Project/Project.py" line="5623" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5640" />
+      <location filename="../Project/Project.py" line="5626" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5652" />
+      <location filename="../Project/Project.py" line="5638" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5653" />
+      <location filename="../Project/Project.py" line="5639" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5660" />
+      <location filename="../Project/Project.py" line="5646" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5651" />
+      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5664" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5665" />
-      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <source>Code Formatting &amp;Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5672" />
+      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5678" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5679" />
-      <source>Code Formatting &amp;Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5686" />
-      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5792" />
       <location filename="../Project/Project.py" line="5692" />
-      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <location filename="../Project/Project.py" line="5807" />
-      <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5706" />
-      <location filename="../Project/Project.py" line="5705" />
+      <location filename="../Project/Project.py" line="5691" />
       <source>Configure</source>
       <translation type="unfinished">Configuration</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5713" />
+      <location filename="../Project/Project.py" line="5699" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5718" />
+      <location filename="../Project/Project.py" line="5704" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5734" />
+      <location filename="../Project/Project.py" line="5720" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5735" />
+      <location filename="../Project/Project.py" line="5721" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5741" />
+      <location filename="../Project/Project.py" line="5727" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5743" />
+      <location filename="../Project/Project.py" line="5729" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5756" />
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5763" />
+      <location filename="../Project/Project.py" line="5749" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5752" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5766" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5780" />
-      <location filename="../Project/Project.py" line="5779" />
+      <location filename="../Project/Project.py" line="5765" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5787" />
+      <location filename="../Project/Project.py" line="5773" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5814" />
+      <location filename="../Project/Project.py" line="5800" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5820" />
+      <location filename="../Project/Project.py" line="5806" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5836" />
+      <location filename="../Project/Project.py" line="5822" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5823" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5830" />
+      <source>Install the project into the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5833" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5844" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5851" />
+      <source>Configure the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5854" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5864" />
+      <source>Upgrade</source>
+      <translation type="unfinished">Mettre à jour</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5865" />
-      <source>Configure the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5868" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5878" />
-      <source>Upgrade</source>
-      <translation type="unfinished">Mettre à jour</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5871" />
+      <source>Upgrade the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5873" />
+      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5885" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5887" />
-      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5900" />
+      <location filename="../Project/Project.py" line="5886" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5906" />
+      <location filename="../Project/Project.py" line="5892" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5908" />
+      <location filename="../Project/Project.py" line="5894" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5926" />
+      <source>&amp;Project</source>
+      <translation>&amp;Projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5927" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Ouvrir un projet &amp;récent</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5929" />
+      <source>Session</source>
+      <translation>Session</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5930" />
+      <source>Debugger</source>
+      <translation>Débogueur</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5931" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5933" />
+      <source>Project-T&amp;ools</source>
+      <translation>Outils pr&amp;ojet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5934" />
+      <source>&amp;Version Control</source>
+      <translation>&amp;Contrôle de version</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5938" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Vérification</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5940" />
-      <source>&amp;Project</source>
-      <translation>&amp;Projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5941" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Ouvrir un projet &amp;récent</translation>
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5942" />
+      <source>Sho&amp;w</source>
+      <translation>&amp;Affichage</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Session</source>
-      <translation>Session</translation>
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagrammes</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
-      <source>Debugger</source>
-      <translation>Débogueur</translation>
+      <source>Pac&amp;kagers</source>
+      <translation>Création de pac&amp;kage</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
+      <source>Source &amp;Documentation</source>
+      <translation>&amp;Documentation automatique</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Project-T&amp;ools</source>
-      <translation>Outils pr&amp;ojet</translation>
+      <source>Make</source>
+      <translation>Make</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
-      <source>&amp;Version Control</source>
-      <translation>&amp;Contrôle de version</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5952" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Vérification</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5954" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5956" />
-      <source>Sho&amp;w</source>
-      <translation>&amp;Affichage</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5957" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagrammes</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5958" />
-      <source>Pac&amp;kagers</source>
-      <translation>Création de pac&amp;kage</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5959" />
-      <source>Source &amp;Documentation</source>
-      <translation>&amp;Documentation automatique</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5961" />
-      <source>Make</source>
-      <translation>Make</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6124" />
-      <location filename="../Project/Project.py" line="6122" />
+      <location filename="../Project/Project.py" line="6110" />
+      <location filename="../Project/Project.py" line="6108" />
       <source>Project</source>
       <translation>Projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6206" />
+      <location filename="../Project/Project.py" line="6192" />
       <source>&amp;Clear</source>
       <translation>&amp;Effacer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6403" />
+      <location filename="../Project/Project.py" line="6389" />
       <source>Search New Files</source>
       <translation>Rechercher des nouveaux fichiers</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6404" />
+      <location filename="../Project/Project.py" line="6390" />
       <source>There were no new files found to be added.</source>
       <translation>Aucun fichier à ajouter n'a été trouvé.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6565" />
-      <location filename="../Project/Project.py" line="6552" />
+      <location filename="../Project/Project.py" line="6551" />
+      <location filename="../Project/Project.py" line="6538" />
       <source>Version Control System</source>
       <translation>Système de conrôle des versions (VCS)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6553" />
+      <location filename="../Project/Project.py" line="6539" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6566" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="6709" />
+      <source>Coverage Data</source>
+      <translation>Coverage de données</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6763" />
+      <location filename="../Project/Project.py" line="6710" />
+      <source>There is no main script defined for the current project. Aborting</source>
+      <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6722" />
+      <source>Code Coverage</source>
+      <translation>Code Coverage</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="6723" />
-      <source>Coverage Data</source>
-      <translation>Coverage de données</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6777" />
-      <location filename="../Project/Project.py" line="6724" />
-      <source>There is no main script defined for the current project. Aborting</source>
-      <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6736" />
-      <source>Code Coverage</source>
-      <translation>Code Coverage</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Sélectionner un fichier coverage</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6790" />
+      <location filename="../Project/Project.py" line="6776" />
       <source>Please select a profile file</source>
       <translation>Sélectionner un fichier profile</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6842" />
+      <location filename="../Project/Project.py" line="6828" />
       <source>Include module names?</source>
       <translation>Inclure les noms de modules ?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6955" />
+      <location filename="../Project/Project.py" line="6941" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;PKGLIST&lt;/b&gt; existe déjà.&lt;/p&gt;&lt;p&gt;Ecraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7010" />
+      <location filename="../Project/Project.py" line="6996" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7321" />
-      <location filename="../Project/Project.py" line="7277" />
-      <location filename="../Project/Project.py" line="7227" />
-      <location filename="../Project/Project.py" line="7216" />
-      <location filename="../Project/Project.py" line="7198" />
-      <location filename="../Project/Project.py" line="7151" />
-      <location filename="../Project/Project.py" line="7121" />
-      <location filename="../Project/Project.py" line="7093" />
-      <location filename="../Project/Project.py" line="7063" />
-      <location filename="../Project/Project.py" line="7048" />
-      <location filename="../Project/Project.py" line="7031" />
+      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7137" />
+      <location filename="../Project/Project.py" line="7107" />
+      <location filename="../Project/Project.py" line="7079" />
+      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7034" />
+      <location filename="../Project/Project.py" line="7017" />
       <source>Create Plugin Archive</source>
       <translation>Création de l'archive du plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7032" />
+      <location filename="../Project/Project.py" line="7018" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>Le projet n'a pas de script principal défini. Abandon...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7035" />
       <source>Select package lists:</source>
       <translation>Sélectionner les listes de packages :</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7064" />
+      <location filename="../Project/Project.py" line="7050" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7072" />
+      <location filename="../Project/Project.py" line="7058" />
       <source>Creating plugin archives...</source>
       <translation>Création en cours des archives de plugin...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7073" />
+      <location filename="../Project/Project.py" line="7059" />
       <source>Abort</source>
       <translation>Abandonner</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7076" />
+      <location filename="../Project/Project.py" line="7062" />
       <source>%v/%m Archives</source>
       <translation>Archives %v/%m</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7094" />
+      <location filename="../Project/Project.py" line="7080" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7122" />
+      <location filename="../Project/Project.py" line="7108" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7152" />
+      <location filename="../Project/Project.py" line="7138" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7199" />
+      <location filename="../Project/Project.py" line="7185" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7217" />
+      <location filename="../Project/Project.py" line="7203" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7228" />
+      <location filename="../Project/Project.py" line="7214" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7278" />
+      <location filename="../Project/Project.py" line="7264" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier plugin &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7322" />
+      <location filename="../Project/Project.py" line="7308" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7414" />
+      <location filename="../Project/Project.py" line="7400" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7462" />
+      <location filename="../Project/Project.py" line="7448" />
       <source>The make process did not start.</source>
       <translation>Le processus make n'a pas démarré.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7508" />
+      <location filename="../Project/Project.py" line="7494" />
       <source>The make process crashed.</source>
       <translation>Crash du processus make.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7516" />
+      <location filename="../Project/Project.py" line="7502" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
+      <location filename="../Project/Project.py" line="7507" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7537" />
+      <location filename="../Project/Project.py" line="7523" />
       <source>The makefile contains errors.</source>
       <translation>Le makefile contient des erreurs.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7975" />
+      <location filename="../Project/Project.py" line="7961" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7976" />
+      <location filename="../Project/Project.py" line="7962" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8057" />
+      <location filename="../Project/Project.py" line="8043" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8088" />
-      <location filename="../Project/Project.py" line="8073" />
+      <location filename="../Project/Project.py" line="8074" />
+      <location filename="../Project/Project.py" line="8059" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65355,9 +65319,9 @@
   <context>
     <name>ProjectFormsBrowser</name>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1141" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1092" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1055" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1131" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
       <location filename="../Project/ProjectFormsBrowser.py" line="142" />
       <location filename="../Project/ProjectFormsBrowser.py" line="77" />
       <source>Forms</source>
@@ -65630,102 +65594,102 @@
       <translation>Compiler les feuilles</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="701" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="732" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="719" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="700" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="683" />
       <source>New Form</source>
       <translation>Nouvelle feuille</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="685" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
       <source>Select a form type:</source>
       <translation>Sélectionner un type de feuille:</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="703" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="702" />
       <source>Qt User-Interface Files (*.ui);;All Files (*)</source>
       <translation>Fichiers Qt User-Interface (*.ui);;Tous fichiers(*)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="721" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Le fichier existe déjà! Ecraser ?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="734" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
       <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le nouveau fichier formulaire &lt;b&gt;{0}&lt;/b&gt; ne peut être créé.&lt;br&gt;Problème : {1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectFormsBrowser.py" line="759" />
+      <source>Delete forms</source>
+      <translation>Supprimer les feuilles</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFormsBrowser.py" line="760" />
-      <source>Delete forms</source>
-      <translation>Supprimer les feuilles</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="761" />
       <source>Do you really want to delete these forms from the project?</source>
       <translation>Voulez-vous vraiment supprimer ces feuilles du projet?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="893" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="882" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="875" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="888" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="877" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="870" />
       <source>Form Compilation</source>
       <translation>Compilation</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="876" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="871" />
       <source>The compilation of the form file was successful.</source>
       <translation>La compilation de la feuille a réussi.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="883" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="878" />
       <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="894" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="889" />
       <source>The compilation of the form file failed.</source>
       <translation>La compilation de la feuille a échoué.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="986" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="977" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="987" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="978" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Ne peut démarré {0}.&lt;br&gt;Vérifier qu'il est dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1074" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1037" />
       <source>Compiling forms...</source>
       <translation>Compilation des feuilles...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1134" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1084" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1047" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1075" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1038" />
       <source>Abort</source>
       <translation>Abandon</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1137" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1087" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1050" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1127" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1078" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1041" />
       <source>%v/%m Forms</source>
       <translation>Formulaires %v/%m</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1133" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1123" />
       <source>Determining changed forms...</source>
       <translation>Détermination des feuilles modifiées...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1163" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1153" />
       <source>Compiling changed forms...</source>
       <translation>Compilation des feuilles modifiées...</translation>
     </message>
@@ -66177,9 +66141,9 @@
   <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="956" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="880" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="844" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="940" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="864" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="828" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="87" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="68" />
       <source>Resources</source>
@@ -66206,219 +66170,219 @@
       <translation type="unfinished">Navigateur de ressources</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="165" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="163" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="150" />
       <source>Compile resource</source>
       <translation>Compiler le fichier ressource</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="396" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="385" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="344" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="333" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="247" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="235" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="172" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="154" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="384" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="373" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="334" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="323" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="241" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="229" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="170" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
       <source>Compile all resources</source>
       <translation>Compiler tous les fichiers ressources</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="389" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="337" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="296" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="239" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="158" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="377" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="327" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="288" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="233" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="156" />
       <source>Configure rcc Compiler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="308" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="300" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="179" />
       <source>Open</source>
       <translation>Ouvrir</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
       <source>Rename file</source>
       <translation>Renommer le fichier</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="349" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="310" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="339" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="302" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
       <source>Remove from project</source>
       <translation>Supprimer du projet</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="351" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="187" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="341" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="304" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
       <source>Delete</source>
       <translation>Supprimer</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="345" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="249" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="236" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="200" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="195" />
+      <source>New resource...</source>
+      <translation>Nouveau fichier ressource...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="390" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="346" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="254" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
+      <source>Add resources...</source>
+      <translation>Ajouter des fichiers ressources...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="393" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="348" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="257" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="206" />
+      <source>Add resources directory...</source>
+      <translation>Ajouter un répertoire de fichiers ressources...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="353" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="211" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectResourcesBrowser.py" line="355" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="255" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="242" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="199" />
-      <source>New resource...</source>
-      <translation>Nouveau fichier ressource...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="402" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="356" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="260" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="208" />
-      <source>Add resources...</source>
-      <translation>Ajouter des fichiers ressources...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="405" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="358" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="210" />
-      <source>Add resources directory...</source>
-      <translation>Ajouter un répertoire de fichiers ressources...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="363" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="269" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="365" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="217" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="213" />
       <source>Copy Path to Clipboard</source>
       <translation>Copier chemin dans le Presse-Papiers</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="410" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="367" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="315" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="272" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="219" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="398" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="357" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="307" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="266" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
       <source>Expand all directories</source>
       <translation>Déployer tous les répertoires</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="413" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="369" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="317" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="274" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="220" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="401" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="359" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="309" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="268" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="216" />
       <source>Collapse all directories</source>
       <translation>Replier tous les répertoires</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="416" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="372" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="320" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="277" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="222" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="404" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="362" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="271" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="218" />
       <source>Configure...</source>
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="303" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="292" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="295" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="284" />
       <source>Compile resources</source>
       <translation>Compile les fichiers ressources</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="595" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="574" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="555" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="583" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="562" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="543" />
       <source>New Resource</source>
       <translation>Nouveau fichier ressource</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="557" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="545" />
       <source>Qt Resource Files (*.qrc)</source>
       <translation>Fichiers Qt Resource (*.qrc)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="575" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="563" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Le fichier existe déjà! Ecraser ?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="596" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="584" />
       <source>&lt;p&gt;The new resource file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le nouveau fichier ressource &lt;b&gt;{0}&lt;/b&gt; ne peut être créé.&lt;br&gt;Problème : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="622" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="610" />
       <source>Delete resources</source>
       <translation>Suppression des fichiers ressources</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="623" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="611" />
       <source>Do you really want to delete these resources from the project?</source>
       <translation>Voulez-vous réellement supprimer ces fichiers ressources du projet?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="717" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="708" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="701" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="705" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="696" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="689" />
       <source>Resource Compilation</source>
       <translation>Compilation des fichiers ressources</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="702" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="690" />
       <source>The compilation of the resource file was successful.</source>
       <translation>La compilation des fichiers ressources a réussi.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="709" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="697" />
       <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La compilation du fichier ressource a échoué.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="718" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="706" />
       <source>The compilation of the resource file failed.</source>
       <translation>La compilation du fichier ressource a échoué.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="805" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="789" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="806" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="790" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Ne peut démarré {0}.&lt;br&gt;Vérifier qu'il est dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="871" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="835" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="855" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="819" />
       <source>Compiling resources...</source>
       <translation>Compilation des ressources...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="949" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="872" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="836" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="933" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="856" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="820" />
       <source>Abort</source>
       <translation>Abandonner</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="952" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="875" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="839" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="936" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="859" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="823" />
       <source>%v/%m Resources</source>
       <translation>Ressources %v/%m</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="948" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="932" />
       <source>Determining changed resources...</source>
       <translation>Détermination des fichiers ressource modifiés...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="986" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="970" />
       <source>Compiling changed resources...</source>
       <translation>Compilation des fichiers ressource modifiés...</translation>
     </message>
@@ -66954,250 +66918,250 @@
       <translation type="unfinished">Navigateur de traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="514" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="456" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="296" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="238" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="213" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="182" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="508" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="236" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="180" />
       <source>Open in Editor</source>
       <translation>Ouvrir dans l'éditeur</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="255" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="253" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation</source>
       <translation>Générer un fichier de traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="193" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="263" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="191" />
       <source>Generate translation (with obsolete)</source>
       <translation>Générer un fichier de traduction (à partir d'un obsolète)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="580" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="551" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="274" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="199" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="572" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="543" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="378" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="272" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="197" />
       <source>Generate all translations</source>
       <translation>Générer tous les fichiers de traduction</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="581" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="281" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
+      <source>Generate all translations (with obsolete)</source>
+      <translation>Générer les traductions (à partir des fichiers obsoletes)</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="446" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="207" />
+      <source>Open in Qt-Linguist</source>
+      <translation>Ouvrir avec Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="301" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <source>Release translation</source>
+      <translation>Compiler la traduction</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="589" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="391" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="283" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
-      <source>Generate all translations (with obsolete)</source>
-      <translation>Générer les traductions (à partir des fichiers obsoletes)</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="452" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
-      <source>Open in Qt-Linguist</source>
-      <translation>Ouvrir avec Qt-Linguist</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
-      <source>Release translation</source>
-      <translation>Compiler la traduction</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="597" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="560" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="399" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="363" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="552" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="395" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="359" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Release all translations</source>
       <translation>Compiler toutes les traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="226" />
       <source>Preview translation</source>
       <translation>Apercu de la traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="368" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="232" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="557" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="364" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
       <source>Preview all translations</source>
       <translation>Visualiser toutes les traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="481" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="374" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="246" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="475" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="370" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="244" />
       <source>Extract messages</source>
       <translation>Extraction des messages</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="291" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="289" />
       <source>Open</source>
       <translation>Ouvrir</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="319" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Remove from project</source>
       <translation>Supprimer du projet</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="595" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="526" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="320" />
+      <source>Delete</source>
+      <translation>Supprimer</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="600" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="402" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="324" />
+      <source>New translation...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="603" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="532" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="322" />
-      <source>Delete</source>
-      <translation>Supprimer</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="608" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="406" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="326" />
-      <source>New translation...</source>
-      <translation type="unfinished" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="327" />
+      <source>Add translation files...</source>
+      <translation>Ajouter des fichiers de traduction...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="607" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="609" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Copier chemin dans le Presse-Papiers</translation>
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="611" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="329" />
-      <source>Add translation files...</source>
-      <translation>Ajouter des fichiers de traduction...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="615" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="413" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="617" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Copier chemin dans le Presse-Papiers</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="619" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="535" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="416" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="338" />
       <source>Configure...</source>
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="490" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="440" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="484" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
       <source>Generate translations</source>
       <translation>Générer des traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="500" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="445" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
       <source>Generate translations (with obsolete)</source>
       <translation>Générer des traductions (avec la version obsolete)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="515" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="455" />
       <source>Release translations</source>
       <translation>Compiler les traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
       <source>Preview translations</source>
       <translation>Apercu des traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="882" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="866" />
       <source>Delete translation files</source>
       <translation>Supprimer les fichiers de traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="883" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="867" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation>Voulez-vous réellement supprimer ces traductions du projet?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1582" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1051" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1011" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1560" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1035" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="995" />
       <source>Write temporary project file</source>
       <translation>Ecrire un fichier projet temporaire</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1583" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1307" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1012" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1561" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1287" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="996" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Aucun fichier de traduction (*.ts) sélectionné.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1052" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1036" />
       <source>&lt;p&gt;The temporary project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier projet temporaire&lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1306" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1189" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1177" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1286" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1173" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1161" />
       <source>Translation file generation</source>
       <translation>Génération d'un fichier de traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1178" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1162" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation>La génération des fichiers de traduction (*.ts) a réussi.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1184" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1168" />
       <source> The process has crashed.</source>
       <translation> Le processus a crashé.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1190" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1174" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation>La génération du fichier de traduction (*.ts) a échoué.{0}</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1612" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1360" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1590" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1388" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1340" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1361" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1389" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1341" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Ne peut démarrer {0}.&lt;br&gt;Vérifier qu'il est dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1497" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1479" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1477" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1459" />
       <source>Translation file release</source>
       <translation>Validation du fichier de traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1480" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1460" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation>La validation des fichiers de traduction (*.qm) a réussi.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1498" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1478" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation>La validation des fichiers de traduction (*.qm) a échoué.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1613" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1591" />
       <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut démarrer lrelease.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -69772,38 +69736,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="214" />
+      <location filename="../UI/PythonAstViewer.py" line="216" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="224" />
+      <location filename="../UI/PythonAstViewer.py" line="226" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="230" />
+      <location filename="../UI/PythonAstViewer.py" line="232" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="248" />
+      <location filename="../UI/PythonAstViewer.py" line="250" />
       <source>Module</source>
       <translation>Module</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="280" />
+      <location filename="../UI/PythonAstViewer.py" line="282" />
       <source>{0}: {1}</source>
       <translation>{0}: {1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="297" />
-      <location filename="../UI/PythonAstViewer.py" line="287" />
+      <location filename="../UI/PythonAstViewer.py" line="299" />
+      <location filename="../UI/PythonAstViewer.py" line="289" />
       <source>{0},{1}</source>
       <translation>{0},{1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="304" />
+      <location filename="../UI/PythonAstViewer.py" line="306" />
       <source>{0}  -  {1}</source>
       <translation>{0}  -  {1}</translation>
     </message>
@@ -71953,7 +71917,7 @@
   <context>
     <name>QtPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="154" />
+      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="139" />
       <source>Sample: {0}designer{1}</source>
       <translation type="unfinished" />
     </message>
@@ -71997,7 +71961,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Tools Directory:</source>
       <translation>Répertoire d'outls :</translation>
     </message>
@@ -72082,7 +72045,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Virtual Environment:</source>
       <translation type="unfinished" />
     </message>
@@ -72090,7 +72052,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Select the virtual environment to be used</source>
       <translation type="unfinished">Sélectionner l'environnement virtuel à utiliser</translation>
     </message>
@@ -72098,7 +72059,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to open the virtual environment manager dialog</source>
       <translation type="unfinished">Cliquer pour ouvrir le manager d'environnement virtuel</translation>
     </message>
@@ -72106,7 +72066,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to refresh the list of vitual environments</source>
       <translation type="unfinished" />
     </message>
@@ -72135,7 +72094,6 @@
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Generate imports relative to '.'</source>
       <translation type="unfinished" />
     </message>
@@ -72168,26 +72126,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide2</source>
-      <translation>PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
-      <translation>Entrer le chemin du répertoire PySide2 tools, s'il n'est pas trouvé.</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>pyside2-uic Options</source>
-      <translation>Options pyside2-uic</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>PySide6</source>
       <translation type="unfinished">PySide6</translation>
     </message>
@@ -72201,6 +72139,18 @@
       <source>pyside6-uic Options</source>
       <translation type="unfinished">Options pyside2-uic {6-?}</translation>
     </message>
+    <message>
+      <source>PySide2</source>
+      <translation type="vanished">PySide2</translation>
+    </message>
+    <message>
+      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
+      <translation type="vanished">Entrer le chemin du répertoire PySide2 tools, s'il n'est pas trouvé.</translation>
+    </message>
+    <message>
+      <source>pyside2-uic Options</source>
+      <translation type="vanished">Options pyside2-uic</translation>
+    </message>
   </context>
   <context>
     <name>Queues</name>
@@ -88083,64 +88033,64 @@
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="575" />
+      <location filename="../Templates/TemplateViewer.py" line="577" />
       <source>Remove Template</source>
       <translation>Suppression du gabarit</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="576" />
+      <location filename="../Templates/TemplateViewer.py" line="578" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Voulez-vous vraiment supprimer &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="604" />
+      <location filename="../Templates/TemplateViewer.py" line="606" />
       <source>Import Templates</source>
       <translation>Importation des gabarits</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="621" />
-      <location filename="../Templates/TemplateViewer.py" line="606" />
+      <location filename="../Templates/TemplateViewer.py" line="623" />
+      <location filename="../Templates/TemplateViewer.py" line="608" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
-      <location filename="../Templates/TemplateViewer.py" line="619" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
+      <location filename="../Templates/TemplateViewer.py" line="621" />
       <source>Export Templates</source>
       <translation>Exportation des gabarits</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="654" />
+      <location filename="../Templates/TemplateViewer.py" line="656" />
       <source>Reload Templates</source>
       <translation>Recharger gabarits</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="655" />
+      <location filename="../Templates/TemplateViewer.py" line="657" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation>Le gabarit contient des modifications non enregistrées. Faut-il ignorer ces modifications ?</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="675" />
+      <location filename="../Templates/TemplateViewer.py" line="677" />
       <source>Template Help</source>
       <translation>Aide sur les gabarits</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="676" />
+      <location filename="../Templates/TemplateViewer.py" line="678" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="938" />
+      <location filename="../Templates/TemplateViewer.py" line="940" />
       <source>Edit Template Group</source>
       <translation>Edition du Groupe de gabarits</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="939" />
+      <location filename="../Templates/TemplateViewer.py" line="941" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -91610,2590 +91560,2582 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="263" />
+      <location filename="../UI/UserInterface.py" line="265" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="319" />
+      <location filename="../UI/UserInterface.py" line="321" />
       <source>Initializing Plugin Manager...</source>
       <translation>Initialisation du gestionnaire de plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="327" />
+      <location filename="../UI/UserInterface.py" line="329" />
       <source>Generating Main User Interface...</source>
       <translation>Création de l'interface utilisateur...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="386" />
       <location filename="../UI/UserInterface.py" line="384" />
-      <location filename="../UI/UserInterface.py" line="382" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="593" />
+      <location filename="../UI/UserInterface.py" line="595" />
       <source>Initializing Tools...</source>
       <translation>Initialisation des outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="605" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Registering Objects...</source>
       <translation>Enregistrement des objets...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="640" />
+      <location filename="../UI/UserInterface.py" line="642" />
       <source>Initializing Actions...</source>
       <translation>Initialisation des actions...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="643" />
+      <location filename="../UI/UserInterface.py" line="645" />
       <source>Initializing Menus...</source>
       <translation>Initialisation des menus...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="648" />
       <source>Initializing Toolbars...</source>
       <translation>Initialisation des barres d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Statusbar...</source>
       <translation>Initialisation de la barre d'état...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="676" />
       <location filename="../UI/UserInterface.py" line="674" />
-      <location filename="../UI/UserInterface.py" line="672" />
       <source>Initializing Single Application Server...</source>
       <translation>Initialisation du serveur d'application...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="683" />
       <source>Initializing Plugins...</source>
       <translation>Initialisation en cours des plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Activating Plugins...</source>
       <translation>Activation des plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="688" />
+      <location filename="../UI/UserInterface.py" line="690" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="692" />
+      <location filename="../UI/UserInterface.py" line="694" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
+      <location filename="../UI/UserInterface.py" line="705" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Restauration des barres d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="714" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="726" />
+      <location filename="../UI/UserInterface.py" line="728" />
       <source>Reading Tasks...</source>
       <translation>Lecture en cours des tâches...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="732" />
+      <location filename="../UI/UserInterface.py" line="734" />
       <source>Reading Templates...</source>
       <translation>Lecture en cours des gabarits...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="738" />
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation>Démarrage du débuggeur...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2212" />
-      <location filename="../UI/UserInterface.py" line="1099" />
+      <location filename="../UI/UserInterface.py" line="2214" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2258" />
-      <location filename="../UI/UserInterface.py" line="1109" />
+      <location filename="../UI/UserInterface.py" line="2260" />
+      <location filename="../UI/UserInterface.py" line="1111" />
       <source>Horizontal Toolbox</source>
       <translation>Barre horizontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2235" />
-      <location filename="../UI/UserInterface.py" line="1120" />
+      <location filename="../UI/UserInterface.py" line="2237" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2054" />
-      <location filename="../UI/UserInterface.py" line="1316" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1132" />
       <source>Multiproject-Viewer</source>
       <translation>Gestionnaire de multi-projets</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2032" />
-      <location filename="../UI/UserInterface.py" line="1322" />
-      <location filename="../UI/UserInterface.py" line="1136" />
+      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="1324" />
+      <location filename="../UI/UserInterface.py" line="1138" />
       <source>Project-Viewer</source>
       <translation>Gestionnaire de projet</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2594" />
-      <location filename="../UI/UserInterface.py" line="2593" />
-      <location filename="../UI/UserInterface.py" line="1329" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="2596" />
+      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="1331" />
+      <location filename="../UI/UserInterface.py" line="1145" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
-      <location filename="../UI/UserInterface.py" line="2616" />
-      <location filename="../UI/UserInterface.py" line="1336" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2619" />
+      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="1338" />
+      <location filename="../UI/UserInterface.py" line="1152" />
       <source>Find File</source>
       <translation type="unfinished">Trouver un fichier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1156" />
+      <location filename="../UI/UserInterface.py" line="1344" />
+      <location filename="../UI/UserInterface.py" line="1158" />
       <source>VCS Status</source>
       <translation type="unfinished">VCS Status</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2187" />
-      <location filename="../UI/UserInterface.py" line="1349" />
-      <location filename="../UI/UserInterface.py" line="1163" />
+      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="1351" />
+      <location filename="../UI/UserInterface.py" line="1165" />
       <source>Template-Viewer</source>
       <translation>Gestionnaire de gabarits</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2120" />
-      <location filename="../UI/UserInterface.py" line="1356" />
-      <location filename="../UI/UserInterface.py" line="1170" />
+      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="1358" />
+      <location filename="../UI/UserInterface.py" line="1172" />
       <source>File-Browser</source>
       <translation>Navigateur de fichiers</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1177" />
+      <location filename="../UI/UserInterface.py" line="1365" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Symbols</source>
       <translation>Symboles</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2076" />
-      <location filename="../UI/UserInterface.py" line="1385" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1187" />
+      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="1387" />
+      <location filename="../UI/UserInterface.py" line="1381" />
+      <location filename="../UI/UserInterface.py" line="1189" />
       <source>Debug-Viewer</source>
       <translation>Gestionnaire de débogage</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <location filename="../UI/UserInterface.py" line="2447" />
-      <location filename="../UI/UserInterface.py" line="1392" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="1394" />
+      <location filename="../UI/UserInterface.py" line="1196" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished">Visionneur de documentation du code</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2663" />
-      <location filename="../UI/UserInterface.py" line="2662" />
-      <location filename="../UI/UserInterface.py" line="1399" />
-      <location filename="../UI/UserInterface.py" line="1201" />
+      <location filename="../UI/UserInterface.py" line="2665" />
+      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="1401" />
+      <location filename="../UI/UserInterface.py" line="1203" />
       <source>Help Viewer</source>
       <translation type="unfinished">Visionneur d'aide</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3611" />
-      <location filename="../UI/UserInterface.py" line="2543" />
-      <location filename="../UI/UserInterface.py" line="2542" />
-      <location filename="../UI/UserInterface.py" line="1405" />
-      <location filename="../UI/UserInterface.py" line="1207" />
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1209" />
       <source>Plugin Repository</source>
       <translation>Référentiel de plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
-      <location filename="../UI/UserInterface.py" line="2566" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1213" />
+      <location filename="../UI/UserInterface.py" line="2569" />
+      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2475" />
-      <location filename="../UI/UserInterface.py" line="2474" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1220" />
+      <location filename="../UI/UserInterface.py" line="2477" />
+      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2497" />
-      <location filename="../UI/UserInterface.py" line="2496" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1225" />
+      <location filename="../UI/UserInterface.py" line="2499" />
+      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="1427" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>Conda</source>
       <translation>Conda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1232" />
+      <location filename="../UI/UserInterface.py" line="1434" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>Cooperation</source>
       <translation>Coopération</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2375" />
-      <location filename="../UI/UserInterface.py" line="1436" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1239" />
       <source>IRC</source>
       <translation>IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
-      <location filename="../UI/UserInterface.py" line="2518" />
-      <location filename="../UI/UserInterface.py" line="1442" />
-      <location filename="../UI/UserInterface.py" line="1244" />
+      <location filename="../UI/UserInterface.py" line="2521" />
+      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>MicroPython</source>
       <translation>MicroPython</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2098" />
-      <location filename="../UI/UserInterface.py" line="1450" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1254" />
       <source>Shell</source>
       <translation>Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <location filename="../UI/UserInterface.py" line="1456" />
-      <location filename="../UI/UserInterface.py" line="1256" />
+      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
       <source>Task-Viewer</source>
       <translation>Visualisueur de tâches</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2142" />
-      <location filename="../UI/UserInterface.py" line="1462" />
-      <location filename="../UI/UserInterface.py" line="1260" />
+      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="1464" />
+      <location filename="../UI/UserInterface.py" line="1262" />
       <source>Log-Viewer</source>
       <translation>Fenêtre de log</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1469" />
-      <location filename="../UI/UserInterface.py" line="1267" />
+      <location filename="../UI/UserInterface.py" line="1471" />
+      <location filename="../UI/UserInterface.py" line="1269" />
       <source>Numbers</source>
       <translation>Nombres</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1844" />
+      <location filename="../UI/UserInterface.py" line="1846" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - Mode passif</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <location filename="../UI/UserInterface.py" line="1847" />
+      <location filename="../UI/UserInterface.py" line="1855" />
+      <location filename="../UI/UserInterface.py" line="1849" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} - {1} - Mode Passif</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
+      <location filename="../UI/UserInterface.py" line="1861" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} - {1} - {2} - Mode Passif</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1885" />
-      <source>Quit</source>
-      <translation>Quitter</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1887" />
+      <source>Quit</source>
+      <translation>Quitter</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1889" />
       <source>&amp;Quit</source>
       <translation>&amp;Quitter</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1888" />
+      <location filename="../UI/UserInterface.py" line="1890" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Quit the IDE</source>
-      <translation>Quitter l'IDE</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1895" />
+      <source>Quit the IDE</source>
+      <translation>Quitter l'IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1897" />
       <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Quitter l'IDE&lt;/b&gt;&lt;p&gt;Cette commande fait quitter l'IDE. Toutes les modifications non-enregistrées devraient d'abord être enregistrées. Tous les programmes Python débogués seront stoppés et les préférences seront écrites sur le disque.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1911" />
       <location filename="../UI/UserInterface.py" line="1909" />
-      <location filename="../UI/UserInterface.py" line="1907" />
       <source>Restart</source>
       <translation>Redémarrer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1910" />
+      <location filename="../UI/UserInterface.py" line="1912" />
       <source>Ctrl+Shift+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Shift+Q</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1915" />
+      <location filename="../UI/UserInterface.py" line="1917" />
       <source>Restart the IDE</source>
       <translation>Rédémarrer l'IDE</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1917" />
+      <location filename="../UI/UserInterface.py" line="1919" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <location filename="../UI/UserInterface.py" line="1928" />
-      <source>Save session</source>
-      <translation>Enregistrer la session</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Save session...</source>
-      <translation>Enregistrer session...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1937" />
+      <location filename="../UI/UserInterface.py" line="1930" />
+      <source>Save session</source>
+      <translation>Enregistrer la session</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1931" />
+      <source>Save session...</source>
+      <translation>Enregistrer session...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrer session...&lt;/b&gt;&lt;p&gt;Ceci enregistre la session sur le disque. Une fenêtre s'ouvre pour sélectionner le nom de fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7892" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <location filename="../UI/UserInterface.py" line="1947" />
+      <location filename="../UI/UserInterface.py" line="7866" />
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1949" />
       <source>Load session</source>
       <translation>Charger la session</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
+      <location filename="../UI/UserInterface.py" line="1950" />
       <source>Load session...</source>
       <translation>Charger la session...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1958" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Charger session...&lt;/b&gt;&lt;p&gt;Ceci charge une session enregistrée sur le disque auparant. Une fenêtre s'ouvre pour sélectionner le fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1966" />
-      <source>New Window</source>
-      <translation>Nouvelle fenêtre</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1968" />
+      <source>New Window</source>
+      <translation>Nouvelle fenêtre</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1970" />
       <source>New &amp;Window</source>
       <translation>&amp;Nouvelle fenêtre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1969" />
+      <location filename="../UI/UserInterface.py" line="1971" />
       <source>Ctrl+Shift+N</source>
       <comment>File|New Window</comment>
       <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1974" />
+      <location filename="../UI/UserInterface.py" line="1976" />
       <source>Open a new eric instance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1976" />
+      <location filename="../UI/UserInterface.py" line="1978" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1992" />
       <location filename="../UI/UserInterface.py" line="1990" />
-      <location filename="../UI/UserInterface.py" line="1988" />
       <source>Edit Profile</source>
       <translation>Profil d'Edition</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1997" />
-      <source>Activate the edit view profile</source>
-      <translation>Active la fenêtre d'édition des profils Edition/Débogage</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Activate the edit view profile</source>
+      <translation>Active la fenêtre d'édition des profils Edition/Débogage</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2001" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Edition des profils&lt;/b&gt;&lt;p&gt;Active la fenêtre d'édition des profils Edition/Débogage. On peut y configurer les différentes fenêtres devant apparaitre en mode Edition ou Débogage.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2014" />
       <location filename="../UI/UserInterface.py" line="2012" />
-      <location filename="../UI/UserInterface.py" line="2010" />
       <source>Debug Profile</source>
       <translation>Profil Débogage</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2019" />
-      <source>Activate the debug view profile</source>
-      <translation>Active le profil Débogage</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Activate the debug view profile</source>
+      <translation>Active le profil Débogage</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profil Debogage&lt;/b&gt;&lt;p&gt;Active le profil Bébogage. La fenêtre affichée dans ce mode peut être configurée avec la fenêtre "Edition des profils"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2033" />
+      <location filename="../UI/UserInterface.py" line="2035" />
       <source>&amp;Project-Viewer</source>
       <translation>Gestionnaire de &amp;projet</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="2036" />
       <source>Alt+Shift+P</source>
       <translation>Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2040" />
+      <location filename="../UI/UserInterface.py" line="2042" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2043" />
+      <location filename="../UI/UserInterface.py" line="2045" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2055" />
+      <location filename="../UI/UserInterface.py" line="2057" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>Gestionnaire de &amp;multi-projet</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="2058" />
       <source>Alt+Shift+M</source>
       <translation>Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2062" />
+      <location filename="../UI/UserInterface.py" line="2064" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2065" />
+      <location filename="../UI/UserInterface.py" line="2067" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2077" />
+      <location filename="../UI/UserInterface.py" line="2079" />
       <source>&amp;Debug-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="2080" />
       <source>Alt+Shift+D</source>
       <translation>Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2084" />
+      <location filename="../UI/UserInterface.py" line="2086" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2087" />
+      <location filename="../UI/UserInterface.py" line="2089" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2099" />
+      <location filename="../UI/UserInterface.py" line="2101" />
       <source>&amp;Shell</source>
       <translation>&amp;Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="2102" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2106" />
+      <location filename="../UI/UserInterface.py" line="2108" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2109" />
+      <location filename="../UI/UserInterface.py" line="2111" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2121" />
+      <location filename="../UI/UserInterface.py" line="2123" />
       <source>&amp;File-Browser</source>
       <translation>Navigateur de &amp;fichier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="2124" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2128" />
+      <location filename="../UI/UserInterface.py" line="2130" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2131" />
+      <location filename="../UI/UserInterface.py" line="2133" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2143" />
+      <location filename="../UI/UserInterface.py" line="2145" />
       <source>Lo&amp;g-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="2146" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2150" />
+      <location filename="../UI/UserInterface.py" line="2152" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="2155" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2165" />
+      <location filename="../UI/UserInterface.py" line="2167" />
       <source>&amp;Task-Viewer</source>
       <translation>Visionneur de &amp;tâches</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="2168" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2174" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2190" />
       <source>Templ&amp;ate-Viewer</source>
       <translation>Visionneur de g&amp;abarits</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="2191" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2197" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2198" />
+      <location filename="../UI/UserInterface.py" line="2200" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2213" />
+      <location filename="../UI/UserInterface.py" line="2215" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2220" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2222" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2236" />
+      <location filename="../UI/UserInterface.py" line="2238" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2243" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2245" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2259" />
+      <location filename="../UI/UserInterface.py" line="2261" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Barre &amp;horizontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2266" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation>Afficher/Masquer la barre d'outils horizontale</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2268" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation>Afficher/Masquer la barre d'outils horizontale</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Afficher/Masquer la barre d'outils horizontale&lt;/b&gt;&lt;p&gt;Affiche ou masque la barre d'outils horizontale, selon.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2281" />
+      <location filename="../UI/UserInterface.py" line="2283" />
       <source>Left Sidebar</source>
       <translation>Barre latérale de gauche</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2282" />
+      <location filename="../UI/UserInterface.py" line="2284" />
       <source>&amp;Left Sidebar</source>
       <translation>Barre latérale de &amp;gauche</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2289" />
-      <source>Toggle the left sidebar window</source>
-      <translation>Affiche/Masque la barre latérale de gauche</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2291" />
+      <source>Toggle the left sidebar window</source>
+      <translation>Affiche/Masque la barre latérale de gauche</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Affiche/masque la barre latérale de gauche&lt;/b&gt;&lt;p&gt;Affiche ou maque la barre latérale de gauche.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2304" />
+      <location filename="../UI/UserInterface.py" line="2306" />
       <source>Right Sidebar</source>
       <translation type="unfinished">Barre latérale de droite</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2305" />
+      <location filename="../UI/UserInterface.py" line="2307" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2312" />
-      <source>Toggle the right sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2314" />
+      <source>Toggle the right sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2329" />
       <source>Bottom Sidebar</source>
       <translation>Barre du bas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2328" />
+      <location filename="../UI/UserInterface.py" line="2330" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Barre du bas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation>Affiche/Masque la barre du bas</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2337" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation>Affiche/Masque la barre du bas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;A/ffiche/Masque la barre du bas&lt;/b&gt;&lt;p&gt;Affiche ou masque la barre du bas&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2350" />
-      <source>Cooperation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2351" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2352" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2353" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2354" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
+      <location filename="../UI/UserInterface.py" line="2360" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2361" />
+      <location filename="../UI/UserInterface.py" line="2363" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2376" />
+      <location filename="../UI/UserInterface.py" line="2378" />
       <source>&amp;IRC</source>
       <translation>&amp;IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="2379" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2383" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2386" />
+      <location filename="../UI/UserInterface.py" line="2388" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2397" />
-      <source>Symbols-Viewer</source>
-      <translation>Visionneur de symbole</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2398" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>Visionneur de s&amp;ymbole</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2399" />
+      <source>Symbols-Viewer</source>
+      <translation>Visionneur de symbole</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2400" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>Visionneur de s&amp;ymbole</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2401" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2407" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2408" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2422" />
-      <source>Numbers-Viewer</source>
-      <translation>Visionneur de nombres</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2423" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>Visionneur de nom&amp;bres</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2424" />
+      <source>Numbers-Viewer</source>
+      <translation>Visionneur de nombres</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation>Visionneur de nom&amp;bres</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2426" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
+      <location filename="../UI/UserInterface.py" line="2432" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2433" />
+      <location filename="../UI/UserInterface.py" line="2435" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="2451" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2455" />
+      <location filename="../UI/UserInterface.py" line="2457" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2460" />
+      <location filename="../UI/UserInterface.py" line="2462" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="2478" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2482" />
+      <location filename="../UI/UserInterface.py" line="2484" />
       <source>Switch the input focus to the PyPI Package Management window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2487" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="2500" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2504" />
+      <location filename="../UI/UserInterface.py" line="2506" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="2522" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2528" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2529" />
+      <location filename="../UI/UserInterface.py" line="2531" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="2546" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2552" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2553" />
+      <location filename="../UI/UserInterface.py" line="2555" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="2570" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2574" />
+      <location filename="../UI/UserInterface.py" line="2576" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2579" />
+      <location filename="../UI/UserInterface.py" line="2581" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="2597" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2603" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="2620" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2626" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2641" />
-      <location filename="../UI/UserInterface.py" line="2640" />
+      <location filename="../UI/UserInterface.py" line="2643" />
+      <location filename="../UI/UserInterface.py" line="2642" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2642" />
+      <location filename="../UI/UserInterface.py" line="2644" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2648" />
+      <location filename="../UI/UserInterface.py" line="2650" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2653" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="2666" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
+      <location filename="../UI/UserInterface.py" line="2672" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2673" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2686" />
-      <source>What's This?</source>
-      <translation>Qu'est-ce que c'est ?</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2688" />
+      <source>What's This?</source>
+      <translation>Qu'est-ce que c'est ?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2690" />
       <source>&amp;What's This?</source>
       <translation>&amp;Qu'est-ce que c'est?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2689" />
+      <location filename="../UI/UserInterface.py" line="2691" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>Context sensitive help</source>
-      <translation>Aide contextuelle</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2696" />
+      <source>Context sensitive help</source>
+      <translation>Aide contextuelle</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Affiche l'aide contextuelle&lt;/b&gt;&lt;p&gt;Dans le mode "Qu'est-ce que c'est?", la souris est affichée avec un point d'interrogation, et on peut cliquer sur les éléments de  l'interface pour obtenir une courte description de l'élément. Cette fonction peut être obtenue avec le bouton d'aide contextuelle de la barre principale.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2709" />
-      <source>Helpviewer</source>
-      <translation>Visionneur d'aide</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2711" />
+      <source>Helpviewer</source>
+      <translation>Visionneur d'aide</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2713" />
       <source>&amp;Helpviewer...</source>
       <translation>Visionneur d'&amp;aide...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2714" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2717" />
-      <source>Open the helpviewer window</source>
-      <translation>Ouvre le visualiseur d'aide</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2719" />
+      <source>Open the helpviewer window</source>
+      <translation>Ouvre le visualiseur d'aide</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2739" />
+      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Versions</source>
       <translation>Afficher les versions</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2740" />
+      <location filename="../UI/UserInterface.py" line="2742" />
       <source>Show &amp;Versions</source>
       <translation>Afficher les &amp;versions</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <source>Display version information</source>
-      <translation>Affiche les informations sur les versions</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2748" />
+      <source>Display version information</source>
+      <translation>Affiche les informations sur les versions</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Afficher les versions&lt;/b&gt;&lt;p&gt;Affiche les informations sur les versions.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2754" />
+      <location filename="../UI/UserInterface.py" line="2756" />
       <source>Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2757" />
       <source>&amp;Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2764" />
       <source>Copy version information to the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2765" />
+      <location filename="../UI/UserInterface.py" line="2767" />
       <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2781" />
-      <location filename="../UI/UserInterface.py" line="2774" />
-      <source>Show Error Log</source>
-      <translation>Montrer l'historique d'erreur</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Show Error &amp;Log...</source>
-      <translation>Montrer &amp;l'historique d'erreur...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2783" />
+      <location filename="../UI/UserInterface.py" line="2776" />
+      <source>Show Error Log</source>
+      <translation>Montrer l'historique d'erreur</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2777" />
+      <source>Show Error &amp;Log...</source>
+      <translation>Montrer &amp;l'historique d'erreur...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2785" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Montrer l'historique d'erreur...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre avec les messages d'erreur les plus récents.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
+      <location filename="../UI/UserInterface.py" line="2794" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2795" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
-      <source>Show Installation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Show Installation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4738" />
-      <location filename="../UI/UserInterface.py" line="2811" />
+      <location filename="../UI/UserInterface.py" line="4712" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>Report Bug</source>
       <translation>Rapport de bogue</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2811" />
-      <source>Report &amp;Bug...</source>
-      <translation>Rapport de &amp;bogue...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2813" />
-      <source>Report a bug</source>
-      <translation>Envoyer un rapport de bogue</translation>
+      <source>Report &amp;Bug...</source>
+      <translation>Rapport de &amp;bogue...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2815" />
+      <source>Report a bug</source>
+      <translation>Envoyer un rapport de bogue</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Rapport de bogue...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour envoyer un rapport de bogue.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2821" />
+      <location filename="../UI/UserInterface.py" line="2823" />
       <source>Request Feature</source>
       <translation>Suggestion d'amélioration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2824" />
       <source>Request &amp;Feature...</source>
       <translation>Suggestion d'&amp;amélioration...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2828" />
-      <source>Send a feature request</source>
-      <translation>Envoyer une suggestion d'amélioration</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2830" />
+      <source>Send a feature request</source>
+      <translation>Envoyer une suggestion d'amélioration</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Demande d'amélioration...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre permettant d'envoyer une demande d'amélioration.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4174" />
-      <location filename="../UI/UserInterface.py" line="2841" />
-      <source>Testing</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../UI/UserInterface.py" line="4148" />
       <location filename="../UI/UserInterface.py" line="2843" />
+      <source>Testing</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2845" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2849" />
-      <source>Start the testing dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2851" />
+      <source>Start the testing dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
-      <source>Restart Last Test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2864" />
+      <source>Restart Last Test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2866" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2870" />
-      <source>Restarts the last test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2872" />
+      <source>Restarts the last test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2882" />
-      <source>Rerun Failed Tests</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2884" />
+      <source>Rerun Failed Tests</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2886" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
+      <location filename="../UI/UserInterface.py" line="2896" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2906" />
+      <source>Test Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2908" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2914" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2916" />
       <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2923" />
+      <source>Test Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2925" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Run tests of the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2931" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2933" />
       <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
-      <source>Qt-Designer</source>
-      <translation>Qt-Designer</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2942" />
+      <source>Qt-Designer</source>
+      <translation>Qt-Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2944" />
       <source>Qt-&amp;Designer...</source>
       <translation>Qt-&amp;Designer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start Qt-Designer</source>
-      <translation>Démarrer Qt-Designer</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2950" />
+      <source>Start Qt-Designer</source>
+      <translation>Démarrer Qt-Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Démarrer Qt-Designer.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2959" />
-      <source>Qt-Linguist</source>
-      <translation>Qt-Linguist</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2961" />
+      <source>Qt-Linguist</source>
+      <translation>Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2963" />
       <source>Qt-&amp;Linguist...</source>
       <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2967" />
-      <source>Start Qt-Linguist</source>
-      <translation>Démarrer Qt-Linguist</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2969" />
+      <source>Start Qt-Linguist</source>
+      <translation>Démarrer Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2971" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Démarrer Qt-Linguist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>UI Previewer</source>
-      <translation>Visionneur d'UI</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2979" />
+      <source>UI Previewer</source>
+      <translation>Visionneur d'UI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
       <source>&amp;UI Previewer...</source>
       <translation>Visionneur d'&amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
-      <source>Start the UI Previewer</source>
-      <translation>Démarre le Visionneur d'UI</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2987" />
+      <source>Start the UI Previewer</source>
+      <translation>Démarre le Visionneur d'UI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Visulaiseur d'UI&lt;/b&gt;&lt;p&gt;Démarre le visualiseur d'UI.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2993" />
-      <source>Translations Previewer</source>
-      <translation>Visionneur de traductions</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2995" />
+      <source>Translations Previewer</source>
+      <translation>Visionneur de traductions</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2997" />
       <source>&amp;Translations Previewer...</source>
       <translation>Visionneur de &amp;Traductions...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <source>Start the Translations Previewer</source>
-      <translation>Démarre le visionneur de traductions</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3003" />
+      <source>Start the Translations Previewer</source>
+      <translation>Démarre le visionneur de traductions</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3005" />
       <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Visionneur de traductions&lt;/b&gt;&lt;p&gt;Démarre le visionneur de traductions.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3012" />
-      <source>Compare Files</source>
-      <translation>Comparaison de fichiers</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3014" />
+      <source>Compare Files</source>
+      <translation>Comparaison de fichiers</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3016" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Comparaison de fichiers...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
-      <location filename="../UI/UserInterface.py" line="3020" />
+      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3022" />
       <source>Compare two files</source>
       <translation>Compare deux fichiers</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3024" />
       <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Comparaison de Fichiers&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour comparer deux fichiers.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3031" />
-      <source>Compare Files side by side</source>
-      <translation>Comparaison de fichiers côte à côte</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3033" />
+      <source>Compare Files side by side</source>
+      <translation>Comparaison de fichiers côte à côte</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3035" />
       <source>Compare &amp;Files side by side...</source>
       <translation>Comparer des &amp;fichiers côte à côte...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3043" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Comparaison de fichiers côte à côte&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour comparer deux fichiers et affiche les différences côte à côte.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>SQL Browser</source>
-      <translation>Navigateur SQL</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3053" />
+      <source>SQL Browser</source>
+      <translation>Navigateur SQL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3055" />
       <source>SQL &amp;Browser...</source>
       <translation>&amp;Navigateur SQL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>Browse a SQL database</source>
-      <translation>Parcourir une base de données SQL</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3061" />
+      <source>Browse a SQL database</source>
+      <translation>Parcourir une base de données SQL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Navigateur SQL&lt;/b&gt;&lt;p&gt;Parcourir une base de données SQL.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3075" />
-      <location filename="../UI/UserInterface.py" line="3067" />
-      <source>Mini Editor</source>
-      <translation>Mini-éditeur</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini édit&amp;eur...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <location filename="../UI/UserInterface.py" line="3069" />
+      <source>Mini Editor</source>
+      <translation>Mini-éditeur</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3071" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini édit&amp;eur...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3079" />
       <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mini Editeur&lt;/b&gt;&lt;p&gt;ouvre une fenêtre avec un éditeur simplifié.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3086" />
-      <source>Hex Editor</source>
-      <translation>Hex Editor</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3088" />
+      <source>Hex Editor</source>
+      <translation>Hex Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3090" />
       <source>&amp;Hex Editor...</source>
       <translation>&amp;Hex Editor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3094" />
-      <source>Start the eric Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>Start the eric Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3106" />
-      <source>eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3108" />
+      <source>eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3110" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3114" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3116" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3118" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3126" />
-      <source>FIDO2 Security Key Management</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3128" />
+      <source>FIDO2 Security Key Management</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3130" />
       <source>FIDO2 Security Key Management...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3135" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>Start the FIDO2 Security Key Management tool</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
+      <location filename="../UI/UserInterface.py" line="3140" />
       <source>&lt;b&gt;FIDO2 Security Key Management&lt;/b&gt;&lt;p&gt;Start a tool to manage FIDO2 securit y keys.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Icon Editor</source>
-      <translation>Éditeur d'icone</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3151" />
+      <source>Icon Editor</source>
+      <translation>Éditeur d'icone</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3153" />
       <source>&amp;Icon Editor...</source>
       <translation>Éditeur d'&amp;icone...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
-      <source>Start the eric Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3159" />
+      <source>Start the eric Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3161" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6631" />
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="6605" />
+      <location filename="../UI/UserInterface.py" line="3173" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3173" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <source>Take snapshots of a screen region</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3181" />
+      <source>Take snapshots of a screen region</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3193" />
+      <source>eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>eric PDF &amp;Viewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3199" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3201" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
-      <source>Preferences</source>
-      <translation>Préférences</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3212" />
+      <source>Preferences</source>
+      <translation>Préférences</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Préférences...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Set the prefered configuration</source>
-      <translation>Édition des préférences</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3220" />
+      <source>Set the prefered configuration</source>
+      <translation>Édition des préférences</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3222" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Préférences&lt;/b&gt;&lt;p&gt;Edite les valeurs souhaitées pour la configuration du logiciel.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Export Preferences</source>
-      <translation>Exporte les préférences</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3233" />
+      <source>Export Preferences</source>
+      <translation>Exporte les préférences</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;xporter les préférences...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
-      <source>Export the current configuration</source>
-      <translation>Exporte la configuration courante</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3241" />
+      <source>Export the current configuration</source>
+      <translation>Exporte la configuration courante</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exporter les préférences&lt;/b&gt;&lt;p&gt;Export la configuration courante dans un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
-      <source>Import Preferences</source>
-      <translation>Importe les préférences</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3252" />
+      <source>Import Preferences</source>
+      <translation>Importe les préférences</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
       <source>I&amp;mport Preferences...</source>
       <translation>I&amp;mporter les préférences...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3261" />
       <source>Import a previously exported configuration</source>
       <translation>Importe les préférences d'un fichier précédemment exporté</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3262" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importer les préférences&lt;/b&gt;&lt;p&gt;Importe les préférences d'un fichier précédemment exporté.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
-      <source>Export Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3273" />
+      <source>Export Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3281" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3290" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3292" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
-      <source>Import a previously exported theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3300" />
+      <source>Import a previously exported theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3302" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload APIs</source>
-      <translation>Recharger les APIs</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload &amp;APIs</source>
-      <translation>Recharger les &amp;APIs</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3311" />
-      <source>Reload the API information</source>
-      <translation>Recharger les informations des API</translation>
+      <source>Reload APIs</source>
+      <translation>Recharger les APIs</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3311" />
+      <source>Reload &amp;APIs</source>
+      <translation>Recharger les &amp;APIs</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Reload the API information</source>
+      <translation>Recharger les informations des API</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Recharger les APIs&lt;/b&gt;&lt;p&gt;Recharger les informations des API.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <location filename="../UI/UserInterface.py" line="3319" />
-      <source>Show external tools</source>
-      <translation>Afficher les outils externes</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Show external &amp;tools</source>
-      <translation>Afficher les &amp;outils externes</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3329" />
+      <location filename="../UI/UserInterface.py" line="3321" />
+      <source>Show external tools</source>
+      <translation>Afficher les outils externes</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3323" />
+      <source>Show external &amp;tools</source>
+      <translation>Afficher les &amp;outils externes</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3331" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>View Profiles</source>
-      <translation>Profils de visualisation</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3341" />
+      <source>View Profiles</source>
+      <translation>Profils de visualisation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3343" />
       <source>&amp;View Profiles...</source>
       <translation>Profils de &amp;Visualisation...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Configure view profiles</source>
-      <translation>Configuration des profils de visualisation</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Configure view profiles</source>
+      <translation>Configuration des profils de visualisation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profils de Visualisation&lt;/b&gt;&lt;p&gt;Configure les modes de visualisation de l'éditeur  (modes Edition/Débogage). Avec cet fenêtre de configuration, on peut sélectionner les sous-fenêtres actives par défaut pour chacun des mode de visualisation.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
-      <source>Toolbars</source>
-      <translation>Barres d'outils</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3362" />
+      <source>Toolbars</source>
+      <translation>Barres d'outils</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3364" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Barres d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
-      <source>Configure toolbars</source>
-      <translation>Configuration des barres d'outils</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3370" />
+      <source>Configure toolbars</source>
+      <translation>Configuration des barres d'outils</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3372" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Barres d'outils&lt;/b&gt;&lt;p&gt;Configuration des barres d'outils. Avec cette fenêtre vous pouvez modifier les actions des différentes barres affichées et créer  vos propres barres d'outils&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
-      <source>Keyboard Shortcuts</source>
-      <translation>Raccourcis clavier</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3383" />
+      <source>Keyboard Shortcuts</source>
+      <translation>Raccourcis clavier</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>&amp;Raccourcis claviers...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3389" />
-      <source>Set the keyboard shortcuts</source>
-      <translation>Définition des raccourcis clavier</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3391" />
+      <source>Set the keyboard shortcuts</source>
+      <translation>Définition des raccourcis clavier</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Raccourcis claviers&lt;/b&gt;&lt;p&gt;Edite les raccourcis claviers pour l'application.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7600" />
-      <location filename="../UI/UserInterface.py" line="7581" />
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7555" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exporter les raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Exporter les raccourcis claviers...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Exporte les raccourcis claviers</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3411" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Exporte les raccourcis claviers</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3413" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exporter les raccourcis clavier&lt;/b&gt;&lt;p&gt;Exporte les raccourcis claviers de l'application.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7619" />
-      <location filename="../UI/UserInterface.py" line="3420" />
+      <location filename="../UI/UserInterface.py" line="7593" />
+      <location filename="../UI/UserInterface.py" line="3422" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importer des raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Importer des raccourcis clavier...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3428" />
-      <source>Import the keyboard shortcuts</source>
-      <translation>Importe des raccourcis clavier</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3430" />
+      <source>Import the keyboard shortcuts</source>
+      <translation>Importe des raccourcis clavier</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3432" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importer des raccourcis clavier&lt;/b&gt;&lt;p&gt;Importe des raccourcis claviers de l'application.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3440" />
-      <source>Manage SSL Certificates</source>
-      <translation>Gestion des certificats SSL</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3442" />
+      <source>Manage SSL Certificates</source>
+      <translation>Gestion des certificats SSL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3444" />
       <source>Manage SSL Certificates...</source>
       <translation>Gestion des certificats SSL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Manage the saved SSL certificates</source>
       <translation>Gestion des certificats SSL enregistrés</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3454" />
       <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3462" />
-      <source>Edit Message Filters</source>
-      <translation>Éditer les filtres de message</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3464" />
+      <source>Edit Message Filters</source>
+      <translation>Éditer les filtres de message</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3466" />
       <source>Edit Message Filters...</source>
       <translation>Éditer les filtres de message...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished">Éditer les filtres de message utilisés pour supprimer les messages indésirés</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3474" />
+      <location filename="../UI/UserInterface.py" line="3476" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <location filename="../UI/UserInterface.py" line="3487" />
-      <location filename="../UI/UserInterface.py" line="3485" />
-      <source>Clear private data</source>
-      <translation>Nettoyer les données privées</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3489" />
+      <location filename="../UI/UserInterface.py" line="3487" />
+      <source>Clear private data</source>
+      <translation>Nettoyer les données privées</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3506" />
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3508" />
+      <location filename="../UI/UserInterface.py" line="3507" />
       <source>Activate current editor</source>
       <translation>Activer l'éditeur courant</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3507" />
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3518" />
-      <location filename="../UI/UserInterface.py" line="3517" />
+      <location filename="../UI/UserInterface.py" line="3520" />
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>Show next</source>
       <translation>Afficher le suivant</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3519" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3530" />
-      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <source>Show previous</source>
       <translation>Afficher le précédent</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3533" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3542" />
-      <location filename="../UI/UserInterface.py" line="3541" />
+      <location filename="../UI/UserInterface.py" line="3544" />
+      <location filename="../UI/UserInterface.py" line="3543" />
       <source>Switch between tabs</source>
       <translation>Intervertir les onglets</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3543" />
+      <location filename="../UI/UserInterface.py" line="3545" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3553" />
-      <source>Plugin Infos</source>
-      <translation>Infos Plugins</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3555" />
+      <source>Plugin Infos</source>
+      <translation>Infos Plugins</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>&amp;Plugin Infos...</source>
       <translation>Infos &amp;Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3561" />
-      <source>Show Plugin Infos</source>
-      <translation>Affiche les infos sur les plugins</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3563" />
+      <source>Show Plugin Infos</source>
+      <translation>Affiche les infos sur les plugins</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3565" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Infos Plugins...&lt;/b&gt;&lt;p&gt;Affiche une fenêtre donnant des informations sur les plugins chargés.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3581" />
-      <location filename="../UI/UserInterface.py" line="3573" />
-      <source>Install Plugins</source>
-      <translation>Installation de plugins</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3575" />
-      <source>&amp;Install Plugins...</source>
-      <translation>&amp;Installation de plugins...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <source>Install Plugins</source>
+      <translation>Installation de plugins</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>&amp;Install Plugins...</source>
+      <translation>&amp;Installation de plugins...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Installation de plugins...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour installer ou mettre à jour des plugins.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3600" />
-      <location filename="../UI/UserInterface.py" line="3592" />
-      <source>Uninstall Plugin</source>
-      <translation>Désinstaller un plugin</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>&amp;Désinstaller un plugin...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3602" />
+      <location filename="../UI/UserInterface.py" line="3594" />
+      <source>Uninstall Plugin</source>
+      <translation>Désinstaller un plugin</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3596" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>&amp;Désinstaller un plugin...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Désinstaller un plugin...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour désinstaller un plugin.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3615" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Référentiel de plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3619" />
-      <source>Show Plugins available for download</source>
-      <translation>Affiche les plugins disponibles au téléchargement</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3621" />
+      <source>Show Plugins available for download</source>
+      <translation>Affiche les plugins disponibles au téléchargement</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3623" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Référentiel de plugins...&lt;/b&gt;&lt;p&gt;Affiche une fenêtre donnant la liste des plugins disponibles sur internet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3651" />
-      <location filename="../UI/UserInterface.py" line="3650" />
+      <location filename="../UI/UserInterface.py" line="3653" />
+      <location filename="../UI/UserInterface.py" line="3652" />
       <source>Qt5 Documentation</source>
       <translation>Documentation Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>Open Qt5 Documentation</source>
-      <translation>Lance la Documentation Qt5</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3659" />
+      <source>Open Qt5 Documentation</source>
+      <translation>Lance la Documentation Qt5</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3672" />
-      <location filename="../UI/UserInterface.py" line="3671" />
+      <location filename="../UI/UserInterface.py" line="3674" />
+      <location filename="../UI/UserInterface.py" line="3673" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Documentation Qt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3678" />
-      <source>Open Qt6 Documentation</source>
-      <translation type="unfinished">Lance la Documentation Qt5 {6 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3680" />
+      <source>Open Qt6 Documentation</source>
+      <translation type="unfinished">Lance la Documentation Qt5 {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3682" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3693" />
-      <location filename="../UI/UserInterface.py" line="3692" />
+      <location filename="../UI/UserInterface.py" line="3695" />
+      <location filename="../UI/UserInterface.py" line="3694" />
       <source>PyQt5 Documentation</source>
       <translation>Documentation PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3699" />
-      <source>Open PyQt5 Documentation</source>
-      <translation>Lance la documentation PyQt5</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Open PyQt5 Documentation</source>
+      <translation>Lance la documentation PyQt5</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3714" />
-      <location filename="../UI/UserInterface.py" line="3713" />
+      <location filename="../UI/UserInterface.py" line="3716" />
+      <location filename="../UI/UserInterface.py" line="3715" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">Documentation PyQt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3720" />
-      <source>Open PyQt6 Documentation</source>
-      <translation type="unfinished">Lance la documentation PyQt5 {6 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3722" />
+      <source>Open PyQt6 Documentation</source>
+      <translation type="unfinished">Lance la documentation PyQt5 {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3724" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3740" />
-      <location filename="../UI/UserInterface.py" line="3739" />
+      <location filename="../UI/UserInterface.py" line="3742" />
+      <location filename="../UI/UserInterface.py" line="3741" />
       <source>Python 3 Documentation</source>
       <translation>Documentation Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3746" />
-      <source>Open Python 3 Documentation</source>
-      <translation>Ouvrir la Documentation Python 3</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3748" />
+      <source>Open Python 3 Documentation</source>
+      <translation>Ouvrir la Documentation Python 3</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3750" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3767" />
-      <location filename="../UI/UserInterface.py" line="3766" />
+      <location filename="../UI/UserInterface.py" line="3769" />
+      <location filename="../UI/UserInterface.py" line="3768" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3773" />
-      <source>Open eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3775" />
+      <source>Open eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3777" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3793" />
-      <location filename="../UI/UserInterface.py" line="3792" />
-      <source>PySide2 Documentation</source>
-      <translation>Documentation PySide2</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3799" />
-      <source>Open PySide2 Documentation</source>
-      <translation>Ouvrir la Documentation PySide2</translation>
+      <location filename="../UI/UserInterface.py" line="3795" />
+      <location filename="../UI/UserInterface.py" line="3794" />
+      <source>PySide6 Documentation</source>
+      <translation type="unfinished">Documentation PySide2 {6 ?}</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3801" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3819" />
-      <location filename="../UI/UserInterface.py" line="3818" />
-      <source>PySide6 Documentation</source>
-      <translation type="unfinished">Documentation PySide2 {6 ?}</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3825" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished">Ouvrir la Documentation PySide2 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3827" />
+      <location filename="../UI/UserInterface.py" line="3803" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3863" />
+      <location filename="../UI/UserInterface.py" line="3839" />
       <source>Sessions</source>
       <translation type="unfinished">Sessions</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3944" />
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtras</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3954" />
+      <location filename="../UI/UserInterface.py" line="3930" />
       <source>Wi&amp;zards</source>
       <translation>As&amp;sistants</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3948" />
       <source>P&amp;lugins</source>
       <translation>P&amp;lugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="3957" />
       <source>Configure...</source>
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3990" />
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="3983" />
       <source>Select Tool Group</source>
       <translation>Sélection d'un groupe d'outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4018" />
+      <location filename="../UI/UserInterface.py" line="3994" />
       <source>Se&amp;ttings</source>
       <translation>&amp;Configuration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4051" />
+      <location filename="../UI/UserInterface.py" line="4027" />
       <source>&amp;Window</source>
       <translation>&amp;Fenêtre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4060" />
+      <location filename="../UI/UserInterface.py" line="4036" />
       <source>&amp;Windows</source>
       <translation>&amp;Fenêtres</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4064" />
+      <location filename="../UI/UserInterface.py" line="4040" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4068" />
+      <location filename="../UI/UserInterface.py" line="4044" />
       <source>Left Side</source>
       <translation>Coté gauche</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4087" />
+      <location filename="../UI/UserInterface.py" line="4063" />
       <source>Right Side</source>
       <translation>Coté droit</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4106" />
+      <location filename="../UI/UserInterface.py" line="4082" />
       <source>Bottom Side</source>
       <translation>Coté bas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4090" />
       <source>Plug-ins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="4096" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Barres d'Outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4133" />
+      <location filename="../UI/UserInterface.py" line="4109" />
       <source>&amp;Help</source>
       <translation>A&amp;ide</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4190" />
-      <location filename="../UI/UserInterface.py" line="4173" />
+      <location filename="../UI/UserInterface.py" line="4164" />
+      <location filename="../UI/UserInterface.py" line="4147" />
       <source>Tools</source>
       <translation>Outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4192" />
-      <location filename="../UI/UserInterface.py" line="4177" />
+      <location filename="../UI/UserInterface.py" line="4166" />
+      <location filename="../UI/UserInterface.py" line="4151" />
       <source>Settings</source>
       <translation>Configuration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6361" />
-      <location filename="../UI/UserInterface.py" line="4193" />
-      <location filename="../UI/UserInterface.py" line="4178" />
+      <location filename="../UI/UserInterface.py" line="6335" />
+      <location filename="../UI/UserInterface.py" line="4167" />
+      <location filename="../UI/UserInterface.py" line="4152" />
       <source>Help</source>
       <translation>Aide</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4194" />
-      <location filename="../UI/UserInterface.py" line="4179" />
+      <location filename="../UI/UserInterface.py" line="4168" />
+      <location filename="../UI/UserInterface.py" line="4153" />
       <source>Profiles</source>
       <translation>Profils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4195" />
-      <location filename="../UI/UserInterface.py" line="4180" />
+      <location filename="../UI/UserInterface.py" line="4169" />
+      <location filename="../UI/UserInterface.py" line="4154" />
       <source>Plugins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4191" />
+      <location filename="../UI/UserInterface.py" line="4165" />
       <source>Unittest</source>
       <translation>Tests unitaires</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4368" />
+      <location filename="../UI/UserInterface.py" line="4342" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre d'état affiche le langage de l'éditeur actif.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4377" />
+      <location filename="../UI/UserInterface.py" line="4351" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette partie de la barre d'état affiche l'encodage des éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4386" />
+      <location filename="../UI/UserInterface.py" line="4360" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre d'état affiche le type de fin de lignes utilisé pour les éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4395" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette partie de la barre d'état affiche les droits d'écriture des fichiers en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4404" />
+      <location filename="../UI/UserInterface.py" line="4378" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre d'état affiche le numéro de ligne de l'éditeur actif.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
+      <location filename="../UI/UserInterface.py" line="4387" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre d'état affiche la position du curseur.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4427" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre d'état permet de zoomer l'éditeur courant ou le shell.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4501" />
-      <location filename="../UI/UserInterface.py" line="4460" />
+      <location filename="../UI/UserInterface.py" line="4475" />
+      <location filename="../UI/UserInterface.py" line="4434" />
       <source>External Tools/{0}</source>
       <translation>Outils externe/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4609" />
+      <location filename="../UI/UserInterface.py" line="4583" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation>&lt;h2&gt;Numéros de version&lt;/h2&gt;&lt;table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4679" />
+      <location filename="../UI/UserInterface.py" line="4653" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4683" />
+      <location filename="../UI/UserInterface.py" line="4657" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4739" />
+      <location filename="../UI/UserInterface.py" line="4713" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>L'adresse mail ou l'adresse du serveur mail est vide. Veuillez configurer vos paramètres mails dans la fenêtre des Préférences.</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5048" />
+      <source>Restart application</source>
+      <translation>Redémarrage de l'application</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5049" />
+      <source>The application needs to be restarted. Do it now?</source>
+      <translation>L'application a bersoin d'être relancée. Relancer maintenant ?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5073" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5074" />
-      <source>Restart application</source>
-      <translation>Redémarrage de l'application</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5075" />
-      <source>The application needs to be restarted. Do it now?</source>
-      <translation>L'application a bersoin d'être relancée. Relancer maintenant ?</translation>
+      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+
+Shall the upgrade be done now?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5098" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5099" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5100" />
-      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5124" />
-      <source>Upgrade Eric</source>
+      <source>Upgrade Eric and PyQt6</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5125" />
-      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
-
-Shall the upgrade be done now?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5150" />
-      <source>Upgrade Eric and PyQt6</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5151" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5213" />
+      <location filename="../UI/UserInterface.py" line="5187" />
       <source>&amp;Builtin Tools</source>
       <translation>Outils &amp;internes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5233" />
+      <location filename="../UI/UserInterface.py" line="5207" />
       <source>&amp;Plugin Tools</source>
       <translation>Outils &amp;plugins</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5210" />
+      <source>&amp;User Tools</source>
+      <translation>Outils &amp;utilisateurs</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5236" />
-      <source>&amp;User Tools</source>
-      <translation>Outils &amp;utilisateurs</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5262" />
       <source>Configure Tool Groups ...</source>
       <translation>Configuration des groupes d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5266" />
+      <location filename="../UI/UserInterface.py" line="5240" />
       <source>Configure current Tool Group ...</source>
       <translation>Configuration du groupe d'outils courant...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5305" />
-      <location filename="../UI/UserInterface.py" line="5285" />
+      <location filename="../UI/UserInterface.py" line="5279" />
+      <location filename="../UI/UserInterface.py" line="5259" />
       <source>No User Tools Configured</source>
       <translation>Pas d'outils utilisateurs configuré</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5381" />
+      <location filename="../UI/UserInterface.py" line="5355" />
       <source>&amp;Show all</source>
       <translation>Tout &amp;afficher</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5383" />
+      <location filename="../UI/UserInterface.py" line="5357" />
       <source>&amp;Hide all</source>
       <translation>Tout &amp;masquer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6498" />
-      <location filename="../UI/UserInterface.py" line="6487" />
-      <location filename="../UI/UserInterface.py" line="6439" />
-      <location filename="../UI/UserInterface.py" line="6429" />
-      <location filename="../UI/UserInterface.py" line="6252" />
-      <location filename="../UI/UserInterface.py" line="6242" />
-      <location filename="../UI/UserInterface.py" line="6184" />
-      <location filename="../UI/UserInterface.py" line="6174" />
+      <location filename="../UI/UserInterface.py" line="6472" />
+      <location filename="../UI/UserInterface.py" line="6461" />
+      <location filename="../UI/UserInterface.py" line="6413" />
+      <location filename="../UI/UserInterface.py" line="6403" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6216" />
+      <location filename="../UI/UserInterface.py" line="6158" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <source>Problem</source>
       <translation>Problème</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6499" />
-      <location filename="../UI/UserInterface.py" line="6488" />
-      <location filename="../UI/UserInterface.py" line="6440" />
-      <location filename="../UI/UserInterface.py" line="6430" />
-      <location filename="../UI/UserInterface.py" line="6253" />
-      <location filename="../UI/UserInterface.py" line="6243" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6175" />
+      <location filename="../UI/UserInterface.py" line="6473" />
+      <location filename="../UI/UserInterface.py" line="6462" />
+      <location filename="../UI/UserInterface.py" line="6414" />
+      <location filename="../UI/UserInterface.py" line="6404" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; n'existe pas ou est de longeur nulle.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6740" />
-      <location filename="../UI/UserInterface.py" line="6651" />
-      <location filename="../UI/UserInterface.py" line="6534" />
-      <location filename="../UI/UserInterface.py" line="6511" />
-      <location filename="../UI/UserInterface.py" line="6452" />
-      <location filename="../UI/UserInterface.py" line="6399" />
-      <location filename="../UI/UserInterface.py" line="6377" />
-      <location filename="../UI/UserInterface.py" line="6328" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6275" />
-      <location filename="../UI/UserInterface.py" line="6216" />
-      <location filename="../UI/UserInterface.py" line="6207" />
+      <location filename="../UI/UserInterface.py" line="6714" />
+      <location filename="../UI/UserInterface.py" line="6625" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6302" />
+      <location filename="../UI/UserInterface.py" line="6293" />
+      <location filename="../UI/UserInterface.py" line="6258" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6190" />
+      <location filename="../UI/UserInterface.py" line="6181" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6208" />
+      <location filename="../UI/UserInterface.py" line="6182" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer Qt-Designer.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6191" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6250" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer Qt-Linguist.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6285" />
+      <location filename="../UI/UserInterface.py" line="6259" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6320" />
+      <location filename="../UI/UserInterface.py" line="6294" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer Qt-Assistant.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6303" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6362" />
+      <location filename="../UI/UserInterface.py" line="6336" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>Aucun visualiseur personalisé n'est sélectionné. Prière d'en spécifier un dans les préférences.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6378" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6374" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Impossible de démarrer le visualiseur d'aide.&lt;br&gt;Assurez-vous qu'il est bien ici &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6453" />
+      <location filename="../UI/UserInterface.py" line="6427" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6512" />
+      <location filename="../UI/UserInterface.py" line="6486" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6535" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer le navigateur SQL.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6632" />
+      <location filename="../UI/UserInterface.py" line="6606" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6652" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6685" />
-      <location filename="../UI/UserInterface.py" line="6675" />
+      <location filename="../UI/UserInterface.py" line="6659" />
+      <location filename="../UI/UserInterface.py" line="6649" />
       <source>External Tools</source>
       <translation>Outils externes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6676" />
+      <location filename="../UI/UserInterface.py" line="6650" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6686" />
+      <location filename="../UI/UserInterface.py" line="6660" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6723" />
+      <location filename="../UI/UserInterface.py" line="6697" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Démarrage du processus '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6741" />
+      <location filename="../UI/UserInterface.py" line="6715" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6820" />
+      <location filename="../UI/UserInterface.py" line="6794" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7108" />
-      <location filename="../UI/UserInterface.py" line="7046" />
-      <location filename="../UI/UserInterface.py" line="7002" />
-      <location filename="../UI/UserInterface.py" line="6928" />
-      <location filename="../UI/UserInterface.py" line="6864" />
+      <location filename="../UI/UserInterface.py" line="7082" />
+      <location filename="../UI/UserInterface.py" line="7020" />
+      <location filename="../UI/UserInterface.py" line="6976" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6838" />
       <source>Documentation Missing</source>
       <translation>Documentation Manquante</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7109" />
-      <location filename="../UI/UserInterface.py" line="7047" />
-      <location filename="../UI/UserInterface.py" line="7003" />
-      <location filename="../UI/UserInterface.py" line="6929" />
-      <location filename="../UI/UserInterface.py" line="6865" />
+      <location filename="../UI/UserInterface.py" line="7083" />
+      <location filename="../UI/UserInterface.py" line="7021" />
+      <location filename="../UI/UserInterface.py" line="6977" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6839" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7090" />
-      <location filename="../UI/UserInterface.py" line="6972" />
+      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="6946" />
       <source>Documentation</source>
       <translation>Documentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6973" />
+      <location filename="../UI/UserInterface.py" line="6947" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7091" />
+      <location filename="../UI/UserInterface.py" line="7065" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7270" />
-      <location filename="../UI/UserInterface.py" line="7206" />
+      <location filename="../UI/UserInterface.py" line="7244" />
+      <location filename="../UI/UserInterface.py" line="7180" />
       <source>Start Web Browser</source>
       <translation>Démarrer le navigateur web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7207" />
+      <location filename="../UI/UserInterface.py" line="7181" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7271" />
+      <location filename="../UI/UserInterface.py" line="7245" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Open Browser</source>
       <translation>Ouverture du navigateur</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Could not start a web browser</source>
       <translation>Impossible de lancer le navigateur web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7595" />
+      <location filename="../UI/UserInterface.py" line="7557" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7601" />
+      <location filename="../UI/UserInterface.py" line="7575" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7805" />
+      <location filename="../UI/UserInterface.py" line="7779" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7808" />
+      <location filename="../UI/UserInterface.py" line="7782" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7845" />
+      <location filename="../UI/UserInterface.py" line="7819" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7846" />
+      <location filename="../UI/UserInterface.py" line="7820" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier de session &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7869" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Save Session</source>
       <translation type="unfinished">Enregistrer la session</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7894" />
-      <location filename="../UI/UserInterface.py" line="7871" />
+      <location filename="../UI/UserInterface.py" line="7868" />
+      <location filename="../UI/UserInterface.py" line="7845" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8400" />
+      <location filename="../UI/UserInterface.py" line="8374" />
       <source>Drop Error</source>
       <translation>Erreur de suppression</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8401" />
+      <location filename="../UI/UserInterface.py" line="8375" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; n'est pas un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8598" />
+      <location filename="../UI/UserInterface.py" line="8550" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8551" />
+      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8599" />
-      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
       <source>First time usage</source>
       <translation>Première utilisation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8600" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8622" />
       <source>Select Workspace Directory</source>
       <translation>Sélectionner le répertoire de travail</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8790" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8791" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <source>PySide2 Documentation</source>
+      <translation type="vanished">Documentation PySide2</translation>
+    </message>
+    <message>
+      <source>Open PySide2 Documentation</source>
+      <translation type="vanished">Ouvrir la Documentation PySide2</translation>
+    </message>
+    <message>
       <source>&lt;/table&gt;</source>
       <translation type="vanished">&lt;/table&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_it.ts	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/i18n/eric7_it.ts	Sun Apr 13 14:46:18 2025 +0200
@@ -1738,47 +1738,47 @@
   <context>
     <name>BackgroundService</name>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="168" />
+      <location filename="../Utilities/BackgroundService.py" line="169" />
       <source>{0} not configured.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="230" />
-      <source>Initialization of Background Service</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>Initialization of Background Service</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="232" />
       <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="244" />
-      <source>Restart background client?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="245" />
+      <source>Restart background client?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="246" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="274" />
+      <location filename="../Utilities/BackgroundService.py" line="275" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="515" />
+      <location filename="../Utilities/BackgroundService.py" line="516" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="524" />
-      <source>Background client disconnected.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="525" />
+      <source>Background client disconnected.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="526" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -3770,7 +3770,7 @@
       <translation>Premi per cancellare la lista degli host</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="526" />
+      <location filename="../Cooperation/ChatWidget.py" line="528" />
       <location filename="../Cooperation/ChatWidget.ui" line="0" />
       <source>Clear</source>
       <translation>Pulisci</translation>
@@ -3801,154 +3801,154 @@
       <translation>Mostra lo stato del server</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="322" />
+      <location filename="../Cooperation/ChatWidget.py" line="324" />
       <location filename="../Cooperation/ChatWidget.py" line="85" />
       <source>Start Server</source>
       <translation>Avvia Server</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="153" />
+      <location filename="../Cooperation/ChatWidget.py" line="155" />
       <source>! Unknown command: {0}
 </source>
       <translation>! Comando sconosciuto: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="176" />
+      <location filename="../Cooperation/ChatWidget.py" line="178" />
       <source>* {0} has joined.
 </source>
       <translation>* {0} è entrato.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="193" />
+      <location filename="../Cooperation/ChatWidget.py" line="195" />
       <source>New User</source>
       <translation>Nuovo Utente</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="194" />
+      <location filename="../Cooperation/ChatWidget.py" line="196" />
       <source>{0} has joined.</source>
       <translation>{0} è entrato.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="217" />
+      <location filename="../Cooperation/ChatWidget.py" line="219" />
       <source>* {0} has left.
 </source>
       <translation>* {0} è uscito.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="226" />
+      <location filename="../Cooperation/ChatWidget.py" line="228" />
       <source>User Left</source>
       <translation>Utente uscito</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="227" />
+      <location filename="../Cooperation/ChatWidget.py" line="229" />
       <source>{0} has left.</source>
       <translation>{0} è uscito.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="255" />
+      <location filename="../Cooperation/ChatWidget.py" line="257" />
       <source>Message from &lt;{0}&gt;</source>
       <translation>Messaggio da &lt;{0}&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="330" />
+      <location filename="../Cooperation/ChatWidget.py" line="332" />
       <source>Stop Server</source>
       <translation>Ferma Server</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="336" />
+      <location filename="../Cooperation/ChatWidget.py" line="338" />
       <source>! Server Error: {0}
 </source>
       <translation>! Errore Server; {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="347" />
+      <location filename="../Cooperation/ChatWidget.py" line="349" />
       <source>Disconnect</source>
       <translation>Disconnetti</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="351" />
+      <location filename="../Cooperation/ChatWidget.py" line="353" />
       <source>Connect</source>
       <translation>Connetti</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="515" />
+      <location filename="../Cooperation/ChatWidget.py" line="517" />
       <source>Copy</source>
       <translation>Copia</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="519" />
+      <location filename="../Cooperation/ChatWidget.py" line="521" />
       <source>Cut all</source>
       <translation>Taglia tutto</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="522" />
+      <location filename="../Cooperation/ChatWidget.py" line="524" />
       <source>Copy all</source>
       <translation>Copia tutto</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="530" />
+      <location filename="../Cooperation/ChatWidget.py" line="532" />
       <source>Save</source>
       <translation>Salva</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="588" />
-      <location filename="../Cooperation/ChatWidget.py" line="573" />
+      <location filename="../Cooperation/ChatWidget.py" line="590" />
+      <location filename="../Cooperation/ChatWidget.py" line="575" />
       <source>Save Chat</source>
       <translation>Salva Chat</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="575" />
+      <location filename="../Cooperation/ChatWidget.py" line="577" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation>File Testo(*.txt);;Tutti i file (*)</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="589" />
+      <location filename="../Cooperation/ChatWidget.py" line="591" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="604" />
+      <location filename="../Cooperation/ChatWidget.py" line="606" />
       <source>Error saving Chat</source>
       <translation>Errore nel salvataggio della Chat</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="605" />
+      <location filename="../Cooperation/ChatWidget.py" line="607" />
       <source>&lt;p&gt;The chat contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il contenuto della chat non può essere scritto su &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="644" />
+      <location filename="../Cooperation/ChatWidget.py" line="646" />
       <source>Kick User</source>
       <translation>Kick Utente</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="648" />
+      <location filename="../Cooperation/ChatWidget.py" line="650" />
       <source>Ban User</source>
       <translation>Ban Utente</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="652" />
+      <location filename="../Cooperation/ChatWidget.py" line="654" />
       <source>Ban and Kick User</source>
       <translation>Ban e Kick Utente</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="683" />
+      <location filename="../Cooperation/ChatWidget.py" line="685" />
       <source>* {0} has been kicked.
 </source>
       <translation>* {0} è stato allontanato.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="700" />
+      <location filename="../Cooperation/ChatWidget.py" line="702" />
       <source>* {0} has been banned.
 </source>
       <translation>* {0} è stato bannato.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="717" />
+      <location filename="../Cooperation/ChatWidget.py" line="719" />
       <source>* {0} has been banned and kicked.
 </source>
       <translation>* {0} è stato allontanato e bannato.
@@ -4898,32 +4898,32 @@
   <context>
     <name>CodeDocumentationViewer</name>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="220" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="222" />
       <source>Code Info Provider:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="238" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="240" />
       <source>Select the code info provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="239" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="241" />
       <source>&lt;disabled&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="420" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="422" />
       <source>No documentation available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="441" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="443" />
       <source>No source code documentation provider has been registered. This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="449" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="451" />
       <source>This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
@@ -8836,10 +8836,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="608" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="505" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="467" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="455" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="604" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="501" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="463" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="451" />
       <location filename="../Project/CreateDialogCodeDialog.py" line="419" />
       <source>Code Generation</source>
       <translation>Generazione del codice</translation>
@@ -8850,22 +8850,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="456" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="452" />
       <source>&lt;p&gt;No code template file available for project type "{0}".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="468" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="464" />
       <source>&lt;p&gt;Could not open the code template file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso aprire il file del modello del codice "{0}".&lt;p&gt;&lt;p&gt;Ragione: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="506" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="502" />
       <source>&lt;p&gt;Could not open the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso aprire il file sorgente "{0}".&lt;/p&gt;&lt;p&gt;Ragione: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="609" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="605" />
       <source>&lt;p&gt;Could not write the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso scrivere il file sorgente "{0}".&lt;/p&gt;&lt;p&gt;Ragione: {1}&lt;/p&gt;</translation>
     </message>
@@ -9368,676 +9368,676 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="207" />
+      <location filename="../Debugger/DebugUI.py" line="210" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="234" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="237" />
       <source>Run Script</source>
       <translation>Esegui Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="236" />
+      <location filename="../Debugger/DebugUI.py" line="239" />
       <source>&amp;Run Script...</source>
       <translation>Esegui Sc&amp;ript...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="242" />
+      <location filename="../Debugger/DebugUI.py" line="245" />
       <source>Run the current Script</source>
       <translation>Esegui lo script corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="244" />
+      <location filename="../Debugger/DebugUI.py" line="247" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Esegui Script&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando ed esegue lo script al di fuori del debugger. Se il file non è stato salvato può essere salvato prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2386" />
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="255" />
+      <location filename="../Debugger/DebugUI.py" line="2389" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="258" />
       <source>Run Project</source>
       <translation>Esegui Progetto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="257" />
+      <location filename="../Debugger/DebugUI.py" line="260" />
       <source>Run &amp;Project...</source>
       <translation>Esegui &amp;Progetto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="263" />
+      <location filename="../Debugger/DebugUI.py" line="266" />
       <source>Run the current Project</source>
       <translation>Esegui il progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="265" />
+      <location filename="../Debugger/DebugUI.py" line="268" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Esegui Progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando ed esegue il progetto corrente fuori dal debugger. Se file del progetto corrente non sono stati salvati, è possibile salvarli prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="277" />
+      <location filename="../Debugger/DebugUI.py" line="280" />
       <source>Coverage run of Script</source>
       <translation>Esecuzione sotto analisi dello Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="279" />
+      <location filename="../Debugger/DebugUI.py" line="282" />
       <source>Coverage run of Script...</source>
       <translation>Esecuzione sotto analisi del progetto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="286" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Esegui un'esecuzione coperta dello script corrente</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Esegui un'esecuzione coperta dello script corrente</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Copertura eseguzione dello scitp&lt;/b&gt;&lt;p&gt;Imposta gli argomenti alla linea di comando ed esegui lo script sotto il controllo di uno strumento di analisi. Se il file ha delle modifiche non salvate è possibile salvarlo prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="300" />
+      <location filename="../Debugger/DebugUI.py" line="303" />
       <source>Coverage run of Project</source>
       <translation>Esecuzione sotto analisi del progetto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="302" />
+      <location filename="../Debugger/DebugUI.py" line="305" />
       <source>Coverage run of Project...</source>
       <translation>Esecuzione sotto analisi del progetto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="309" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>Esegui un'esecuzione coperta del progetto corrente</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>Esegui un'esecuzione coperta del progetto corrente</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Esecuzione sotto analisi del progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti alla linea di comando ed esegui il progetto sotto il controllo di uno strumento di analisi. Se ci sono file del progetto con modifiche non salvate è possibile salvarli prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="324" />
+      <location filename="../Debugger/DebugUI.py" line="327" />
       <source>Profile Script</source>
       <translation>Profila Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="326" />
+      <location filename="../Debugger/DebugUI.py" line="329" />
       <source>Profile Script...</source>
       <translation>Profila Script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="332" />
+      <location filename="../Debugger/DebugUI.py" line="335" />
       <source>Profile the current Script</source>
       <translation>Profile lo script corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="334" />
+      <location filename="../Debugger/DebugUI.py" line="337" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profila Script&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando profila lo script. Se il file non è stato salvato può essere salvato prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="344" />
+      <location filename="../Debugger/DebugUI.py" line="347" />
       <source>Profile Project</source>
       <translation>Profila Progetto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="346" />
+      <location filename="../Debugger/DebugUI.py" line="349" />
       <source>Profile Project...</source>
       <translation>Profila Progetto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="352" />
+      <location filename="../Debugger/DebugUI.py" line="355" />
       <source>Profile the current Project</source>
       <translation>Profila il progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="354" />
+      <location filename="../Debugger/DebugUI.py" line="357" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profila Progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e profila il progetto. Se file del progetto corrente non sono stati salvati, è possibile salvarli prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="365" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="368" />
       <source>Debug Script</source>
       <translation>Debug dello script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="367" />
+      <location filename="../Debugger/DebugUI.py" line="370" />
       <source>&amp;Debug Script...</source>
       <translation>&amp;Debug dello script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="373" />
+      <location filename="../Debugger/DebugUI.py" line="376" />
       <source>Debug the current Script</source>
       <translation>Debug dello script corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="375" />
+      <location filename="../Debugger/DebugUI.py" line="378" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debug dello Script&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python della finestra dell'editor. Se il file ha modifiche non salvate è possibile salvarle prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2579" />
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="387" />
+      <location filename="../Debugger/DebugUI.py" line="2582" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="390" />
       <source>Debug Project</source>
       <translation>Debug del Progetto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="389" />
+      <location filename="../Debugger/DebugUI.py" line="392" />
       <source>Debug &amp;Project...</source>
       <translation>Debug del &amp;Progetto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="395" />
+      <location filename="../Debugger/DebugUI.py" line="398" />
       <source>Debug the current Project</source>
       <translation>Debug del progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="397" />
+      <location filename="../Debugger/DebugUI.py" line="400" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debug del Progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python della finestra dell'editor. Se il progetto ha modifiche non salvate è possibile salvarle prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2895" />
-      <location filename="../Debugger/DebugUI.py" line="411" />
-      <location filename="../Debugger/DebugUI.py" line="409" />
+      <location filename="../Debugger/DebugUI.py" line="2898" />
+      <location filename="../Debugger/DebugUI.py" line="414" />
+      <location filename="../Debugger/DebugUI.py" line="412" />
       <source>Restart</source>
       <translation>Riavvio</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="417" />
+      <location filename="../Debugger/DebugUI.py" line="420" />
       <source>Restart the last debugged script</source>
       <translation>Riavvia l'ultimo script debuggato</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="419" />
+      <location filename="../Debugger/DebugUI.py" line="422" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Riavvia&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python dell'ultimo script in debug. Se il file ha modifiche non salvate è possibile salvarle prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="628" />
-      <location filename="../Debugger/DebugUI.py" line="433" />
-      <location filename="../Debugger/DebugUI.py" line="431" />
+      <location filename="../Debugger/DebugUI.py" line="631" />
+      <location filename="../Debugger/DebugUI.py" line="436" />
+      <location filename="../Debugger/DebugUI.py" line="434" />
       <source>Stop</source>
       <translation>Stop</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="439" />
+      <location filename="../Debugger/DebugUI.py" line="442" />
       <source>Stop the running script.</source>
       <translation>Ferma lo script in esecuzione.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="441" />
+      <location filename="../Debugger/DebugUI.py" line="444" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ferma&lt;/b&gt;&lt;p&gt;Questo ferma lo script in esecuzione nel backend del debugger.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="452" />
+      <location filename="../Debugger/DebugUI.py" line="455" />
       <source>Continue</source>
       <translation>Continua</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="454" />
+      <location filename="../Debugger/DebugUI.py" line="457" />
       <source>&amp;Continue</source>
       <translation>&amp;Continua</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="460" />
+      <location filename="../Debugger/DebugUI.py" line="463" />
       <source>Continue running the program from the current line</source>
       <translation>Continua l'esecuzione del programma dalla linea corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="462" />
+      <location filename="../Debugger/DebugUI.py" line="465" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continua&lt;/b&gt;&lt;p&gt;Continua l'esecuzione del programma dalla linea corrente. Il programma si fermerà quando finirà o quando incontrerà un breakpoint.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="473" />
+      <location filename="../Debugger/DebugUI.py" line="476" />
       <source>Continue to Cursor</source>
       <translation>Continua fino al cursore</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="475" />
+      <location filename="../Debugger/DebugUI.py" line="478" />
       <source>Continue &amp;To Cursor</source>
       <translation>Con&amp;tinua fino al Cursore</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="482" />
+      <location filename="../Debugger/DebugUI.py" line="485" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Continua l'esecuzione del programma dalla linea attuale fino alla posizione del cursore</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="488" />
+      <location filename="../Debugger/DebugUI.py" line="491" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continua fino al cursore&lt;/b&gt;&lt;p&gt;Continua l'esecuzione del programma dalla linea attuale fino alla posizione del cursore.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="498" />
+      <location filename="../Debugger/DebugUI.py" line="501" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="500" />
+      <location filename="../Debugger/DebugUI.py" line="503" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="507" />
+      <location filename="../Debugger/DebugUI.py" line="510" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="513" />
+      <location filename="../Debugger/DebugUI.py" line="516" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="524" />
+      <location filename="../Debugger/DebugUI.py" line="527" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="526" />
+      <location filename="../Debugger/DebugUI.py" line="529" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="533" />
+      <location filename="../Debugger/DebugUI.py" line="536" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="539" />
+      <location filename="../Debugger/DebugUI.py" line="542" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="553" />
+      <location filename="../Debugger/DebugUI.py" line="556" />
       <source>Single Step</source>
       <translation>Step Singolo</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="555" />
+      <location filename="../Debugger/DebugUI.py" line="558" />
       <source>Sin&amp;gle Step</source>
       <translation>Step Sin&amp;golo</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="561" />
+      <location filename="../Debugger/DebugUI.py" line="564" />
       <source>Execute a single Python statement</source>
       <translation>Esegui una singola istruzione Python</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="563" />
+      <location filename="../Debugger/DebugUI.py" line="566" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Passo singolo&lt;/b&gt;&lt;p&gt;Esegue una singola istruzione Python. Se l'istruzione è una &lt;tt&gt;import&lt;/tt&gt;, un costruttore di una classe, o un metodo o una chiamata di funzione allora il controllo verrà tornato al debugger alla prossima istruzione.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="575" />
+      <location filename="../Debugger/DebugUI.py" line="578" />
       <source>Step Over</source>
       <translation>Step Over</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="577" />
+      <location filename="../Debugger/DebugUI.py" line="580" />
       <source>Step &amp;Over</source>
       <translation>Step &amp;Over</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="584" />
+      <location filename="../Debugger/DebugUI.py" line="587" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Esegui una singola istruzione Python restando nella stessa struttura</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="590" />
+      <location filename="../Debugger/DebugUI.py" line="593" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Singolo passor&lt;/b&gt;&lt;p&gt;Esegui una singola istruzione Python restando nella stessa struttura. Se l'istruzione e' un &lt;tt&gt;import&lt;/tt&gt;, un costruttore di classe, o un metodo o una chiamata di funzione allora il controllo tornerà al debugger dopo che l'istruzione è completata.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="603" />
+      <location filename="../Debugger/DebugUI.py" line="606" />
       <source>Step Out</source>
       <translation>Step Out</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="605" />
+      <location filename="../Debugger/DebugUI.py" line="608" />
       <source>Step Ou&amp;t</source>
       <translation>Step Ou&amp;t</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="612" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Esegue istruzioni Python fino a quando esce dal blocco corrente</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Esegue istruzioni Python fino a quando esce dal blocco corrente</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Esegue istruzioni Python fino a quando esce dal blocco corrente. Se l'istruzione e' un &lt;tt&gt;import&lt;/tt&gt;, un costruttore di classe, o un metodo o una chiamata di funzione allora il controllo tornerà al debugger dopo l'uscita dal blocco corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="630" />
+      <location filename="../Debugger/DebugUI.py" line="633" />
       <source>&amp;Stop</source>
       <translation>&amp;Stop</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="636" />
+      <location filename="../Debugger/DebugUI.py" line="639" />
       <source>Stop debugging</source>
       <translation>Ferma il debug</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="638" />
+      <location filename="../Debugger/DebugUI.py" line="641" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Ferma la sessione di debug.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="644" />
+      <location filename="../Debugger/DebugUI.py" line="647" />
       <source>Variables Type Filter</source>
       <translation>Filtro per i tipi di variabili</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="645" />
+      <location filename="../Debugger/DebugUI.py" line="648" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>Filtro per i tipi di varia&amp;bili...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="651" />
+      <location filename="../Debugger/DebugUI.py" line="654" />
       <source>Configure variables type filter</source>
       <translation>Configura il filtro per i tipi di variabile</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="653" />
+      <location filename="../Debugger/DebugUI.py" line="656" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtro tipo variabili&lt;/b&gt;&lt;p&gt;Configura il filtro per i tipi variabile. Solo i tipi di variabile che non sono selezionati sono mostrati nella finestra delle variabili globali o locali durante una sessione di debug. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="664" />
+      <location filename="../Debugger/DebugUI.py" line="667" />
       <source>Exceptions Filter</source>
       <translation>Filtro per le eccezioni</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="665" />
+      <location filename="../Debugger/DebugUI.py" line="668" />
       <source>&amp;Exceptions Filter...</source>
       <translation>Filtro per le &amp;Eccezioni...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="671" />
+      <location filename="../Debugger/DebugUI.py" line="674" />
       <source>Configure exceptions filter</source>
       <translation>Configura il filtro per le eccezioni</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="673" />
+      <location filename="../Debugger/DebugUI.py" line="676" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtro per le Eccezioni&lt;/b&gt;&lt;p&gt;Configura il filtro per le eccezioni. Solo i tipi di eccezione che sono elencati sono evidenziati durante una sessione di debug.&lt;/p&gt;&lt;p&gt;Notare che, tutte le eccezioni non gestite sono evidenziate indipendentemente dalla lista del filtro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="685" />
+      <location filename="../Debugger/DebugUI.py" line="688" />
       <source>Ignored Exceptions</source>
       <translation>Eccezione ignorata</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="686" />
+      <location filename="../Debugger/DebugUI.py" line="689" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>Eccezione &amp;ignorata...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="692" />
+      <location filename="../Debugger/DebugUI.py" line="695" />
       <source>Configure ignored exceptions</source>
       <translation>Configura eccezioni ignorate</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="694" />
+      <location filename="../Debugger/DebugUI.py" line="697" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eccezioni ignorate&lt;/b&gt;&lt;p&gt;Configura le eccezioni da ignorare. Solo i tipi di eccezione che non sono elencati sono evidenziati durante una sessione di debug.&lt;/p&gt;&lt;p&gt;Per favore nota che le eccezioni non gestite non possono essere ignorate.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="716" />
-      <location filename="../Debugger/DebugUI.py" line="710" />
-      <location filename="../Debugger/DebugUI.py" line="708" />
+      <location filename="../Debugger/DebugUI.py" line="719" />
+      <location filename="../Debugger/DebugUI.py" line="713" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Toggle Breakpoint</source>
       <translation>Toggle Breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="714" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="718" />
+      <location filename="../Debugger/DebugUI.py" line="721" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Attiva un breakpoint sulla linea corrente dell'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="736" />
-      <location filename="../Debugger/DebugUI.py" line="728" />
+      <location filename="../Debugger/DebugUI.py" line="739" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Edit Breakpoint</source>
       <translation>Modifica Breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="730" />
+      <location filename="../Debugger/DebugUI.py" line="733" />
       <source>Edit Breakpoint...</source>
       <translation>Modifica Breakpoint...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="734" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="738" />
+      <location filename="../Debugger/DebugUI.py" line="741" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Modifica Breakpoint&lt;/b&gt;&lt;p&gt;Apre un dialogo per modificare le proprietà del breakpoint. Lavora sulla linea corrente dell'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="756" />
-      <location filename="../Debugger/DebugUI.py" line="750" />
-      <location filename="../Debugger/DebugUI.py" line="748" />
+      <location filename="../Debugger/DebugUI.py" line="759" />
+      <location filename="../Debugger/DebugUI.py" line="753" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Next Breakpoint</source>
       <translation>Prossimo Breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="754" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="758" />
+      <location filename="../Debugger/DebugUI.py" line="761" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Prossimo Breakpoint&lt;/b&gt;&lt;p&gt;Va al prossimo breakpoint dell'editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="775" />
-      <location filename="../Debugger/DebugUI.py" line="769" />
-      <location filename="../Debugger/DebugUI.py" line="767" />
+      <location filename="../Debugger/DebugUI.py" line="778" />
+      <location filename="../Debugger/DebugUI.py" line="772" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Previous Breakpoint</source>
       <translation>Breakpoint Precedente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="773" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="777" />
+      <location filename="../Debugger/DebugUI.py" line="780" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Breakpoint Precedente&lt;/b&gt;&lt;p&gt;Va al breakpoint precedente dell'editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="793" />
-      <location filename="../Debugger/DebugUI.py" line="787" />
-      <location filename="../Debugger/DebugUI.py" line="786" />
+      <location filename="../Debugger/DebugUI.py" line="796" />
+      <location filename="../Debugger/DebugUI.py" line="790" />
+      <location filename="../Debugger/DebugUI.py" line="789" />
       <source>Clear Breakpoints</source>
       <translation>Pulisci i Breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="795" />
+      <location filename="../Debugger/DebugUI.py" line="798" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Pulisci i Breakpoints&lt;/b&gt;&lt;p&gt;Elimina i breakpoint di tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="819" />
+      <location filename="../Debugger/DebugUI.py" line="822" />
       <source>&amp;Debug</source>
       <translation>&amp;Debug</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="821" />
+      <location filename="../Debugger/DebugUI.py" line="824" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="823" />
+      <location filename="../Debugger/DebugUI.py" line="826" />
       <source>&amp;Breakpoints</source>
       <translation>&amp;Breakpoints</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="866" />
-      <location filename="../Debugger/DebugUI.py" line="864" />
+      <location filename="../Debugger/DebugUI.py" line="869" />
+      <location filename="../Debugger/DebugUI.py" line="867" />
       <source>Start</source>
       <translation>Inizia</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="879" />
-      <location filename="../Debugger/DebugUI.py" line="877" />
+      <location filename="../Debugger/DebugUI.py" line="882" />
+      <location filename="../Debugger/DebugUI.py" line="880" />
       <source>Debug</source>
       <translation>Debug</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1342" />
+      <location filename="../Debugger/DebugUI.py" line="1345" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1348" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1353" />
+      <location filename="../Debugger/DebugUI.py" line="1356" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1365" />
+      <location filename="../Debugger/DebugUI.py" line="1368" />
       <source>Program terminated</source>
       <translation>Programma terminato</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1401" />
+      <location filename="../Debugger/DebugUI.py" line="1404" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>Il programma che viene debuggato contiene un errore di sintassi non specificato.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1421" />
+      <location filename="../Debugger/DebugUI.py" line="1424" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; contiene l'errore di sintassi &lt;b&gt;{1}&lt;/b&gt; alla linea &lt;b&gt;{2}&lt;/b&gt;, carattere &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1449" />
+      <location filename="../Debugger/DebugUI.py" line="1452" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Un'eccezione non gestita è occorso. Guarda la finestra di shell per dettagli.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1498" />
+      <location filename="../Debugger/DebugUI.py" line="1501" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il programma in debug ha sollevato un'eccezione &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Linea: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Interrompere qui ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1516" />
+      <location filename="../Debugger/DebugUI.py" line="1519" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1532" />
+      <location filename="../Debugger/DebugUI.py" line="1535" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il programma debuggato ha sollevato un'eccezione &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1594" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1609" />
+      <location filename="../Debugger/DebugUI.py" line="1612" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>Il programma debuggato è terminato in maniera inaspettata.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1670" />
+      <location filename="../Debugger/DebugUI.py" line="1673" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1717" />
+      <location filename="../Debugger/DebugUI.py" line="1720" />
       <source>Breakpoint Condition Error</source>
       <translation>Errore condizione di interruzione</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1718" />
+      <location filename="../Debugger/DebugUI.py" line="1721" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La condizione del breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contiene un errore di sintassi.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1779" />
+      <location filename="../Debugger/DebugUI.py" line="1782" />
       <source>Watch Expression Error</source>
       <translation>Errore espressione di watch</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1780" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'espressione  &lt;b&gt;{0}&lt;/b&gt; contiene un errore di sintassi.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1810" />
+      <location filename="../Debugger/DebugUI.py" line="1813" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'espressione '&lt;b&gt;{0}&lt;/b&gt;' esiste già.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1815" />
+      <location filename="../Debugger/DebugUI.py" line="1818" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'espressione  '&lt;b&gt;{0}&lt;/b&gt;' per la variabile &lt;b&gt;{1}&lt;/b&gt; esiste già.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1821" />
+      <location filename="../Debugger/DebugUI.py" line="1824" />
       <source>Watch expression already exists</source>
       <translation>L'espressione di controllo esiste già</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1986" />
-      <location filename="../Debugger/DebugUI.py" line="1977" />
+      <location filename="../Debugger/DebugUI.py" line="1989" />
+      <location filename="../Debugger/DebugUI.py" line="1980" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1979" />
+      <location filename="../Debugger/DebugUI.py" line="1982" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2387" />
-      <location filename="../Debugger/DebugUI.py" line="2189" />
-      <location filename="../Debugger/DebugUI.py" line="1987" />
+      <location filename="../Debugger/DebugUI.py" line="2390" />
+      <location filename="../Debugger/DebugUI.py" line="2192" />
+      <location filename="../Debugger/DebugUI.py" line="1990" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Non c'è uno script principale definito per il progetto. Esco</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2188" />
-      <location filename="../Debugger/DebugUI.py" line="2179" />
+      <location filename="../Debugger/DebugUI.py" line="2191" />
+      <location filename="../Debugger/DebugUI.py" line="2182" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2181" />
+      <location filename="../Debugger/DebugUI.py" line="2184" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2580" />
+      <location filename="../Debugger/DebugUI.py" line="2583" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>Non c'è uno script principale per il progetto. Non è possibile il debug.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3252" />
+      <location filename="../Debugger/DebugUI.py" line="3255" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -33466,7 +33466,6 @@
   <context>
     <name>HelpDocumentationPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="64" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="60" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="56" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="52" />
@@ -33593,21 +33592,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>Enter the PySide2 documentation directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
@@ -34023,29 +34007,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Documentazione Python 3</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Documentazione Qt4 {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Documentazione Qt4 {6 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Documentazione Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Documentazione Qt4 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="453" />
@@ -34054,76 +34028,79 @@
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="454" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="455" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="512" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="514" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="513" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="701" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="700" />
       <source>Help Engine</source>
       <translation type="unfinished">Motore di help</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="725" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="724" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">Ricerca documentazione...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="736" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="735" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">Gestisci i documenti QtHelp</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="764" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="763" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Reindicizza la documentazione</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="769" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="768" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="862" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="842" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="861" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="841" />
       <source>Clear History</source>
       <translation type="unfinished">Pulisci la history</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="966" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="965" />
       <source>Updating search index</source>
       <translation type="unfinished">Aggiornamento indice di ricerca</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1024" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1023" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrato per:</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1060" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1054" />
       <source>Unfiltered</source>
       <translation type="unfinished">Non filtrato</translation>
     </message>
+    <message>
+      <source>Qt5 Documentation</source>
+      <translation type="vanished">Documentazione Qt4 {5 ?}</translation>
+    </message>
+    <message>
+      <source>PyQt5 Documentation</source>
+      <translation type="vanished">Documentazione PyQt4 {5 ?}</translation>
+    </message>
   </context>
   <context>
     <name>HelpViewersPage</name>
@@ -52303,7 +52280,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="415" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="416" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="221" />
       <source>No connection to Internet.</source>
       <translation type="unfinished" />
@@ -52339,24 +52316,24 @@
       <translation type="unfinished">{0} ({1})</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="435" />
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="411" />
-      <source>Error downloading dictionary file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="436" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="412" />
+      <source>Error downloading dictionary file</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="437" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="413" />
       <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="450" />
-      <source>Error downloading dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="451" />
+      <source>Error downloading dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="452" />
       <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -54231,7 +54208,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="459" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="460" />
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
@@ -54247,25 +54224,25 @@
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="192" />
       <source>%n supported serial device(s) detected.</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="205" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="206" />
       <source>{0} - {1} ({2})</source>
       <comment>board name, description, port name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="228" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="229" />
       <source>No supported serial devices detected.</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="233" />
       <source>
 %n unknown device(s) for manual selection.</source>
       <translation type="unfinished">
@@ -54274,17 +54251,17 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="239" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="240" />
       <source>Manual Selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="250" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="251" />
       <source>WebREPL (manual)</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="270" />
       <source>
 %n WebREPL connection(s) defined.</source>
       <translation type="unfinished">
@@ -54292,39 +54269,39 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="329" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="300" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
       <source>Unknown MicroPython Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="302" />
       <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href="mailto:{1}"&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="313" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="314" />
       <source>{0} (0x{1:04x}/0x{2:04x})</source>
       <comment>description, VID, PID</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="331" />
       <source>Would you like to add them to the list of manually configured devices?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="454" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="455" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="491" />
-      <source>No device attached</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="492" />
+      <source>No device attached</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="493" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -54333,353 +54310,353 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="523" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="731" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="718" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="720" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="726" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1198" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1190" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="729" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="730" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="772" />
-      <source>Run Script</source>
-      <translation type="unfinished">Esegui Script</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
-      <source>There is no editor open. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
-      <source>The current editor does not contain a script. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
+      <source>Run Script</source>
+      <translation type="unfinished">Esegui Script</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="774" />
+      <source>There is no editor open. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="783" />
+      <source>The current editor does not contain a script. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="792" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="827" />
-      <source>Start Chart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="828" />
+      <source>Start Chart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="829" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="843" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="844" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="860" />
-      <source>Unsaved Chart Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="861" />
+      <source>Unsaved Chart Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="862" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="909" />
-      <source>Start File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="910" />
+      <source>Start File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="911" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="930" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="931" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1017" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1018" />
       <source>Downloads</source>
       <translation type="unfinished">Downloads</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
       <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1067" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Implementation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1071" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1079" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1080" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Local Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1083" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1084" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1087" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1088" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1691" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1099" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1091" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1092" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1730" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1727" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1095" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1096" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1503" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1105" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1504" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1106" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1529" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1520" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1109" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1530" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1110" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1130" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1131" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1137" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1140" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1141" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1150" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Configure</source>
       <translation type="unfinished">Configura</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1153" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1154" />
       <source>Quit</source>
       <translation type="unfinished">Esci</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1162" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1163" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1173" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
-      <source>Device Version Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1174" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1170" />
+      <source>Device Version Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1175" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1204" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1205" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1220" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1211" />
-      <source>Device Implementation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
-      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
+      <source>Device Implementation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1213" />
+      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1296" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1297" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1304" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1305" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1320" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1321" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1332" />
-      <source>Local Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1333" />
+      <source>Local Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1334" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1374" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1357" />
-      <source>Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
-      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1375" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
+      <source>Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1359" />
+      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1376" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1399" />
-      <source>Error handling device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1400" />
+      <source>Error handling device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1401" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1442" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1443" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1468" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1469" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">File Python (*.py);;Tutti i File (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1478" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1479" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1488" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1489" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1522" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1613" />
-      <source>Add Unknown Devices</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1614" />
+      <source>Add Unknown Devices</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1664" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1665" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1716" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1717" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -54687,17 +54664,17 @@
   <context>
     <name>MicroPythonWindow</name>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="81" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="83" />
       <source>MicroPython / CircuitPython Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
@@ -59899,164 +59876,164 @@
   <context>
     <name>Pip</name>
     <message>
-      <location filename="../PipInterface/Pip.py" line="157" />
+      <location filename="../PipInterface/Pip.py" line="161" />
       <source>python exited with an error ({0}).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="166" />
+      <location filename="../PipInterface/Pip.py" line="170" />
       <source>python did not finish within 30 seconds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="168" />
+      <location filename="../PipInterface/Pip.py" line="172" />
       <source>python could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="229" />
+      <location filename="../PipInterface/Pip.py" line="233" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="254" />
+      <location filename="../PipInterface/Pip.py" line="258" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="255" />
+      <location filename="../PipInterface/Pip.py" line="259" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="308" />
+      <location filename="../PipInterface/Pip.py" line="312" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="355" />
+      <location filename="../PipInterface/Pip.py" line="359" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="487" />
-      <location filename="../PipInterface/Pip.py" line="469" />
+      <location filename="../PipInterface/Pip.py" line="491" />
+      <location filename="../PipInterface/Pip.py" line="473" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="470" />
+      <location filename="../PipInterface/Pip.py" line="474" />
       <source>There are no packages except 'eric-ide' or 'PyQt6' left for upgrade.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="533" />
+      <location filename="../PipInterface/Pip.py" line="537" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="564" />
+      <location filename="../PipInterface/Pip.py" line="568" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="586" />
+      <location filename="../PipInterface/Pip.py" line="590" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="621" />
-      <location filename="../PipInterface/Pip.py" line="611" />
+      <location filename="../PipInterface/Pip.py" line="625" />
+      <location filename="../PipInterface/Pip.py" line="615" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="612" />
+      <location filename="../PipInterface/Pip.py" line="753" />
+      <location filename="../PipInterface/Pip.py" line="616" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="622" />
+      <location filename="../PipInterface/Pip.py" line="626" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="642" />
+      <location filename="../PipInterface/Pip.py" line="646" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="776" />
-      <location filename="../PipInterface/Pip.py" line="702" />
-      <location filename="../PipInterface/Pip.py" line="672" />
-      <location filename="../PipInterface/Pip.py" line="663" />
+      <location filename="../PipInterface/Pip.py" line="780" />
+      <location filename="../PipInterface/Pip.py" line="706" />
+      <location filename="../PipInterface/Pip.py" line="676" />
+      <location filename="../PipInterface/Pip.py" line="667" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
-      <location filename="../PipInterface/Pip.py" line="703" />
-      <location filename="../PipInterface/Pip.py" line="664" />
+      <location filename="../PipInterface/Pip.py" line="781" />
+      <location filename="../PipInterface/Pip.py" line="707" />
+      <location filename="../PipInterface/Pip.py" line="668" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="720" />
+      <location filename="../PipInterface/Pip.py" line="724" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="759" />
-      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="763" />
+      <location filename="../PipInterface/Pip.py" line="752" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="760" />
+      <location filename="../PipInterface/Pip.py" line="764" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="787" />
+      <location filename="../PipInterface/Pip.py" line="791" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1198" />
+      <location filename="../PipInterface/Pip.py" line="1203" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1224" />
-      <location filename="../PipInterface/Pip.py" line="1215" />
+      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1220" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1216" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1248" />
-      <location filename="../PipInterface/Pip.py" line="1241" />
+      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1246" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1242" />
+      <location filename="../PipInterface/Pip.py" line="1247" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1273" />
-      <location filename="../PipInterface/Pip.py" line="1265" />
+      <location filename="../PipInterface/Pip.py" line="1278" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1266" />
+      <location filename="../PipInterface/Pip.py" line="1271" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -60976,205 +60953,205 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="737" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="731" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
       <source>Cleanup Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="733" />
       <source>The environment cleanup was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="739" />
       <source>Some leftover package directories could not been removed. Delete them manually.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="834" />
-      <source>Search PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="835" />
+      <source>Search PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="836" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="854" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="855" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="856" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="857" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="860" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="862" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="863" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="869" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="870" />
       <source>Install</source>
       <translation type="unfinished">Installa</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1048" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="871" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1049" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="872" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="874" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="875" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="877" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="878" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="884" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="885" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="886" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="887" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="889" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="890" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="892" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="893" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="896" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="897" />
       <source>Install from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="900" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="901" />
       <source>Uninstall from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="905" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="906" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="912" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="913" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="914" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="915" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="917" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="918" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="920" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="921" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="923" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="924" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="940" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="941" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="944" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="945" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="948" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="949" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="952" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="953" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="959" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="960" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="962" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="963" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="967" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="968" />
       <source>Configure...</source>
       <translation type="unfinished">Configura...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1211" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1198" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1187" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1212" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1199" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1188" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1213" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1200" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1189" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1421" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1422" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished">{0} {1}</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1442" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1443" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1445" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1446" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1585" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1560" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1586" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1561" />
       <source>unknown</source>
       <translation type="unfinished">sconosciuto</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1582" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1583" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
@@ -61201,7 +61178,7 @@
   <context>
     <name>PipPackagesWindow</name>
     <message>
-      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <location filename="../PipInterface/PipPackagesWindow.py" line="60" />
       <source>Manage Packages</source>
       <translation type="unfinished" />
     </message>
@@ -61722,52 +61699,52 @@
   <context>
     <name>PluginManager</name>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="230" />
+      <location filename="../PluginManager/PluginManager.py" line="232" />
       <source>Could not create a package for {0}.</source>
       <translation>Non posso creare un package per {0}.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="262" />
+      <location filename="../PluginManager/PluginManager.py" line="264" />
       <source>The internal plugin directory &lt;b&gt;{0}&lt;/b&gt; does not exits.</source>
       <translation>La directory dei plugin interni &lt;b&gt;{0}&lt;/b&gt; non esiste.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="439" />
+      <location filename="../PluginManager/PluginManager.py" line="441" />
       <source>Module is missing the 'autoactivate' attribute.</source>
       <translation>Il modulo manca dell'attributo 'autoactivate'.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="450" />
+      <location filename="../PluginManager/PluginManager.py" line="452" />
       <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source>
       <translation>Il modulo manca dell'attributo 'pluginType' e/oppure 'pluginTypename'.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="478" />
+      <location filename="../PluginManager/PluginManager.py" line="480" />
       <source>Module failed to load. Error: {0}</source>
       <translation>Il modulo ha fallito il caricamento. Errore: {0}</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="661" />
+      <location filename="../PluginManager/PluginManager.py" line="663" />
       <source>Incompatible plugin activation method.</source>
       <translation>Metodo di attivazione del plugin incompatibile.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1269" />
+      <location filename="../PluginManager/PluginManager.py" line="1271" />
       <source>Plugin Manager Error</source>
       <translation>Errore del gestore dei Plugin</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1270" />
+      <location filename="../PluginManager/PluginManager.py" line="1272" />
       <source>&lt;p&gt;The plugin download directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Please configure it via the configuration dialog.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La directory di download dei plugin &lt;b&gt;{0}&lt;/b&gt; non può essere creata. Per favore configurarla con il dialogo di configurazione.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1358" />
+      <location filename="../PluginManager/PluginManager.py" line="1360" />
       <source>Error downloading file</source>
       <translation>Errone nello scaricamento del file</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1359" />
+      <location filename="../PluginManager/PluginManager.py" line="1361" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso scaricare il file richiesto da {0}&lt;/p&gt;&lt;p&gt;Errore: {1}&lt;/p&gt;</translation>
     </message>
@@ -62653,18 +62630,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1911" />
+      <location filename="../Preferences/__init__.py" line="1891" />
       <source>Export Preferences</source>
       <translation>Esporta Preferenze</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1940" />
-      <location filename="../Preferences/__init__.py" line="1913" />
+      <location filename="../Preferences/__init__.py" line="1920" />
+      <location filename="../Preferences/__init__.py" line="1893" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>File proprietà (*.ini);;Tutti i file(*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1938" />
+      <location filename="../Preferences/__init__.py" line="1918" />
       <source>Import Preferences</source>
       <translation>Importa Preferenze</translation>
     </message>
@@ -63192,113 +63169,98 @@
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="204" />
-      <source>Translation Extractor (Python, PySide2)</source>
+      <source>Translation Extractor (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="213" />
-      <source>Forms Compiler (Python, PySide2)</source>
+      <source>Forms Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="222" />
-      <source>Resource Compiler (Python, PySide2)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="232" />
-      <source>Translation Extractor (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="241" />
-      <source>Forms Compiler (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="250" />
       <source>Resource Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="265" />
+      <location filename="../Preferences/ProgramsDialog.py" line="237" />
       <source>conda Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="275" />
+      <location filename="../Preferences/ProgramsDialog.py" line="247" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="527" />
-      <location filename="../Preferences/ProgramsDialog.py" line="524" />
-      <location filename="../Preferences/ProgramsDialog.py" line="508" />
-      <location filename="../Preferences/ProgramsDialog.py" line="378" />
-      <location filename="../Preferences/ProgramsDialog.py" line="311" />
-      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <location filename="../Preferences/ProgramsDialog.py" line="499" />
+      <location filename="../Preferences/ProgramsDialog.py" line="496" />
+      <location filename="../Preferences/ProgramsDialog.py" line="480" />
+      <location filename="../Preferences/ProgramsDialog.py" line="350" />
+      <location filename="../Preferences/ProgramsDialog.py" line="283" />
+      <location filename="../Preferences/ProgramsDialog.py" line="266" />
       <source>(unknown)</source>
       <translation>(sconosciuto)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="298" />
+      <location filename="../Preferences/ProgramsDialog.py" line="270" />
       <source>Spell Checker - PyEnchant</source>
       <translation>Correttore - PyEnchant</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="315" />
+      <location filename="../Preferences/ProgramsDialog.py" line="287" />
       <source>Source Highlighter - Pygments</source>
       <translation>Evidenziatore Sorgente - Pygments</translation>
     </message>
     <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <source>MicroPython - MPY Cross Compiler</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="301" />
+      <source>MicroPython - ESP Tool</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="312" />
+      <source>MicroPython - PyBoard Flasher</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ProgramsDialog.py" line="322" />
-      <source>MicroPython - MPY Cross Compiler</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="329" />
-      <source>MicroPython - ESP Tool</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="340" />
-      <source>MicroPython - PyBoard Flasher</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="350" />
       <source>MicroPython - STLink Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="360" />
+      <location filename="../Preferences/ProgramsDialog.py" line="332" />
       <source>MicroPython - STLink Flasher</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="382" />
+      <location filename="../Preferences/ProgramsDialog.py" line="354" />
       <source>Code Assistant - Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="462" />
+      <location filename="../Preferences/ProgramsDialog.py" line="434" />
       <source>(not configured)</source>
       <translation>(non configurato)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="497" />
+      <location filename="../Preferences/ProgramsDialog.py" line="469" />
       <source>(module not found)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="530" />
+      <location filename="../Preferences/ProgramsDialog.py" line="502" />
       <source>(not executable)</source>
       <translation>(non eseguibile)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="576" />
-      <location filename="../Preferences/ProgramsDialog.py" line="544" />
-      <location filename="../Preferences/ProgramsDialog.py" line="542" />
+      <location filename="../Preferences/ProgramsDialog.py" line="548" />
+      <location filename="../Preferences/ProgramsDialog.py" line="516" />
+      <location filename="../Preferences/ProgramsDialog.py" line="514" />
       <source>(not found)</source>
       <translation>(non trovato)</translation>
     </message>
@@ -63357,379 +63319,369 @@
     </message>
     <message>
       <location filename="../Project/Project.py" line="362" />
-      <source>PySide2 GUI</source>
+      <source>PySide6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="363" />
-      <source>PySide2 Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="367" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="466" />
-      <location filename="../Project/Project.py" line="454" />
-      <location filename="../Project/Project.py" line="443" />
+      <location filename="../Project/Project.py" line="461" />
+      <location filename="../Project/Project.py" line="449" />
+      <location filename="../Project/Project.py" line="438" />
       <source>Registering Project Type</source>
       <translation>Registrazione tipo progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="444" />
+      <location filename="../Project/Project.py" line="439" />
       <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="455" />
+      <location filename="../Project/Project.py" line="450" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="467" />
+      <location filename="../Project/Project.py" line="462" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="772" />
+      <location filename="../Project/Project.py" line="767" />
       <source>All Files (*)</source>
       <translation type="unfinished">Tutti i file (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1321" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1579" />
-      <location filename="../Project/Project.py" line="1553" />
-      <location filename="../Project/Project.py" line="1517" />
-      <location filename="../Project/Project.py" line="1435" />
-      <location filename="../Project/Project.py" line="1396" />
-      <location filename="../Project/Project.py" line="1371" />
-      <location filename="../Project/Project.py" line="1334" />
+      <location filename="../Project/Project.py" line="1567" />
+      <location filename="../Project/Project.py" line="1541" />
+      <location filename="../Project/Project.py" line="1505" />
+      <location filename="../Project/Project.py" line="1423" />
+      <location filename="../Project/Project.py" line="1384" />
+      <location filename="../Project/Project.py" line="1359" />
+      <location filename="../Project/Project.py" line="1322" />
       <source>Please save the project first.</source>
       <translation>Prima salvare il progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1370" />
+      <location filename="../Project/Project.py" line="1358" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1412" />
-      <location filename="../Project/Project.py" line="1395" />
+      <location filename="../Project/Project.py" line="1400" />
+      <location filename="../Project/Project.py" line="1383" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1402" />
+      <location filename="../Project/Project.py" line="1390" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1421" />
+      <location filename="../Project/Project.py" line="1409" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La sessione del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere cancellato.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1422" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1516" />
+      <location filename="../Project/Project.py" line="1504" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1552" />
+      <location filename="../Project/Project.py" line="1540" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1595" />
-      <location filename="../Project/Project.py" line="1578" />
+      <location filename="../Project/Project.py" line="1583" />
+      <location filename="../Project/Project.py" line="1566" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1585" />
+      <location filename="../Project/Project.py" line="1573" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1604" />
+      <location filename="../Project/Project.py" line="1592" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file delle proprietà del debugger del progetto&lt;b&gt;{0}&lt;/b&gt; non può essere cancellato.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1777" />
+      <location filename="../Project/Project.py" line="1765" />
       <source>Add Language</source>
       <translation>Aggiungi Lingua</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1778" />
+      <location filename="../Project/Project.py" line="1766" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Devi prima specificare un pattern di traduzione.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1919" />
+      <location filename="../Project/Project.py" line="1905" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1946" />
-      <location filename="../Project/Project.py" line="1920" />
+      <location filename="../Project/Project.py" line="1932" />
+      <location filename="../Project/Project.py" line="1906" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1945" />
+      <location filename="../Project/Project.py" line="1931" />
       <source>Delete translation</source>
       <translation>Cancella traduzione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2098" />
-      <location filename="../Project/Project.py" line="2081" />
+      <location filename="../Project/Project.py" line="2084" />
+      <location filename="../Project/Project.py" line="2067" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2200" />
-      <location filename="../Project/Project.py" line="2082" />
+      <location filename="../Project/Project.py" line="2186" />
+      <location filename="../Project/Project.py" line="2068" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già.&lt;/p&gt;&lt;p&gt;Sovrascriverlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2099" />
+      <location filename="../Project/Project.py" line="2085" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file selezionato &lt;b&gt;{0}&lt;/b&gt; non può essere aggiunto a &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Motivo: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2097" />
       <source>Add file</source>
       <translation>Aggiungi file</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2296" />
-      <location filename="../Project/Project.py" line="2112" />
+      <location filename="../Project/Project.py" line="2282" />
+      <location filename="../Project/Project.py" line="2098" />
       <source>The target directory must not be empty.</source>
       <translation>La directory di destinazione non deve essere vuota.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2172" />
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2185" />
+      <location filename="../Project/Project.py" line="2158" />
+      <location filename="../Project/Project.py" line="2138" />
       <source>Add Directory</source>
       <translation type="unfinished">Aggiungi Cartella</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2153" />
+      <location filename="../Project/Project.py" line="2139" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La directory di partenza non contiene nessun file appartenente alla categoria selezionata.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2173" />
+      <location filename="../Project/Project.py" line="2159" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La directory di destinazione&lt;b&gt;{0}&lt;/b&gt; non può essere creata.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2307" />
-      <location filename="../Project/Project.py" line="2295" />
+      <location filename="../Project/Project.py" line="2293" />
+      <location filename="../Project/Project.py" line="2281" />
       <source>Add directory</source>
       <translation>Aggiungi directory</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2308" />
+      <location filename="../Project/Project.py" line="2294" />
       <source>The source directory must not be empty.</source>
       <translation>La directory sorgente non deve essere vuota.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2422" />
-      <location filename="../Project/Project.py" line="2404" />
-      <location filename="../Project/Project.py" line="2388" />
-      <location filename="../Project/Project.py" line="2381" />
+      <location filename="../Project/Project.py" line="2408" />
+      <location filename="../Project/Project.py" line="2390" />
+      <location filename="../Project/Project.py" line="2374" />
+      <location filename="../Project/Project.py" line="2367" />
       <source>Rename File</source>
       <translation>Rinomina File</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8089" />
-      <location filename="../Project/Project.py" line="3909" />
-      <location filename="../Project/Project.py" line="2405" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2423" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere rinominato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2690" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2691" />
-      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2719" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2720" />
-      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2853" />
-      <source>Create project directory</source>
-      <translation>Crea la directory del progetto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2854" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;La directory del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere creata.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3682" />
-      <location filename="../Project/Project.py" line="2954" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3683" />
-      <location filename="../Project/Project.py" line="2955" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2995" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2996" />
-      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3463" />
-      <location filename="../Project/Project.py" line="3020" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3464" />
-      <location filename="../Project/Project.py" line="3021" />
-      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3712" />
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3144" />
-      <location filename="../Project/Project.py" line="3112" />
-      <location filename="../Project/Project.py" line="3094" />
-      <location filename="../Project/Project.py" line="3069" />
-      <location filename="../Project/Project.py" line="3031" />
-      <source>New Project</source>
-      <translation>Nuovo Progetto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3032" />
-      <source>Add existing files to the project?</source>
-      <translation>Aggiungi file esistenti al progetto ?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3713" />
-      <location filename="../Project/Project.py" line="3070" />
-      <source>Select Version Control System</source>
-      <translation>Selezione il Sistema di Controllo della Versione (VCS)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3174" />
-      <location filename="../Project/Project.py" line="3095" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>Vuoi modificare le opzioni del comando VCS ?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3113" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Il file progetto deve essere aggiunto al repository ?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3150" />
-      <location filename="../Project/Project.py" line="3139" />
-      <source>None</source>
-      <translation>Nessuno</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3145" />
-      <source>Select version control system for the project</source>
-      <translation>Seleziona il version control system per il progetto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3356" />
-      <source>Translation Pattern</source>
-      <translation>Pattern di traduzione</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3357" />
-      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
-      <translation>Inserisci il path per il file di traduzione (usa '%language% al posto del codice lingua):</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3661" />
-      <source>Open Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="8075" />
-      <location filename="../Project/Project.py" line="8069" />
-      <location filename="../Project/Project.py" line="8059" />
-      <location filename="../Project/Project.py" line="3894" />
-      <location filename="../Project/Project.py" line="3884" />
-      <location filename="../Project/Project.py" line="3663" />
+      <location filename="../Project/Project.py" line="3895" />
+      <location filename="../Project/Project.py" line="2391" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2409" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere rinominato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2676" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2677" />
+      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2705" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2706" />
+      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2839" />
+      <source>Create project directory</source>
+      <translation>Crea la directory del progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2840" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;La directory del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere creata.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3668" />
+      <location filename="../Project/Project.py" line="2940" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3669" />
+      <location filename="../Project/Project.py" line="2941" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2981" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2982" />
+      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3449" />
+      <location filename="../Project/Project.py" line="3006" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3450" />
+      <location filename="../Project/Project.py" line="3007" />
+      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3698" />
+      <location filename="../Project/Project.py" line="3159" />
+      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3098" />
+      <location filename="../Project/Project.py" line="3080" />
+      <location filename="../Project/Project.py" line="3055" />
+      <location filename="../Project/Project.py" line="3017" />
+      <source>New Project</source>
+      <translation>Nuovo Progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3018" />
+      <source>Add existing files to the project?</source>
+      <translation>Aggiungi file esistenti al progetto ?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3699" />
+      <location filename="../Project/Project.py" line="3056" />
+      <source>Select Version Control System</source>
+      <translation>Selezione il Sistema di Controllo della Versione (VCS)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3160" />
+      <location filename="../Project/Project.py" line="3081" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>Vuoi modificare le opzioni del comando VCS ?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3099" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Il file progetto deve essere aggiunto al repository ?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3125" />
+      <source>None</source>
+      <translation>Nessuno</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3131" />
+      <source>Select version control system for the project</source>
+      <translation>Seleziona il version control system per il progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3342" />
+      <source>Translation Pattern</source>
+      <translation>Pattern di traduzione</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3343" />
+      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
+      <translation>Inserisci il path per il file di traduzione (usa '%language% al posto del codice lingua):</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3647" />
+      <source>Open Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8061" />
+      <location filename="../Project/Project.py" line="8055" />
+      <location filename="../Project/Project.py" line="8045" />
+      <location filename="../Project/Project.py" line="3880" />
+      <location filename="../Project/Project.py" line="3870" />
+      <location filename="../Project/Project.py" line="3649" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="3892" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3878" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3947" />
+      <location filename="../Project/Project.py" line="3933" />
       <source>Close Project</source>
       <translation>Chiudi progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3948" />
+      <location filename="../Project/Project.py" line="3934" />
       <source>The current project has unsaved changes.</source>
       <translation>Il progetto attuale ha delle modifiche non salvate.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4134" />
+      <location filename="../Project/Project.py" line="4098" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4149" />
-      <location filename="../Project/Project.py" line="4113" />
+      <location filename="../Project/Project.py" line="4135" />
+      <location filename="../Project/Project.py" line="4099" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Il progetto contiene %n file con errori di sintassi.</numerusform>
@@ -63737,1268 +63689,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4793" />
       <source>New project</source>
       <translation>Nuovo progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4809" />
+      <location filename="../Project/Project.py" line="4795" />
       <source>&amp;New...</source>
       <translation>&amp;Nuovo...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4801" />
+      <source>Generate a new project</source>
+      <translation>Genera un nuovo progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4803" />
+      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Nuovo...&lt;/b&gt;&lt;p&gt;Apre un dialogo per l'inserimento delle informazioni per un nuovo progetto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4813" />
+      <source>Open project</source>
+      <translation>Apri progetto</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4815" />
-      <source>Generate a new project</source>
-      <translation>Genera un nuovo progetto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4817" />
-      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Nuovo...&lt;/b&gt;&lt;p&gt;Apre un dialogo per l'inserimento delle informazioni per un nuovo progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4827" />
-      <source>Open project</source>
-      <translation>Apri progetto</translation>
+      <source>&amp;Open...</source>
+      <translation>&amp;Apri...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4821" />
+      <source>Open an existing project</source>
+      <translation>Apri un progetto esistente</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4823" />
+      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Apri...&lt;/b&gt;&lt;p&gt;Apre un progetto esistente.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4829" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Apri...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4835" />
-      <source>Open an existing project</source>
-      <translation>Apri un progetto esistente</translation>
+      <source>Open remote project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4831" />
+      <source>Open (Remote)...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4837" />
-      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Apri...&lt;/b&gt;&lt;p&gt;Apre un progetto esistente.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4843" />
-      <source>Open remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4845" />
-      <source>Open (Remote)...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4853" />
+      <location filename="../Project/Project.py" line="4839" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4862" />
+      <location filename="../Project/Project.py" line="4848" />
       <source>Reload project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4850" />
+      <source>Re&amp;load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4856" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4858" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4864" />
-      <source>Re&amp;load</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4870" />
-      <source>Reload the current project</source>
-      <translation type="unfinished" />
+      <source>Close project</source>
+      <translation>Chiudi progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4866" />
+      <source>&amp;Close</source>
+      <translation>&amp;Chiudi</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4872" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4878" />
-      <source>Close project</source>
-      <translation>Chiudi progetto</translation>
+      <source>Close the current project</source>
+      <translation>Chiudi il progetto corrente</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4874" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Chiudi&lt;/b&gt;&lt;p&gt;Chiude l'attuale progetto.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4880" />
-      <source>&amp;Close</source>
-      <translation>&amp;Chiudi</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4886" />
-      <source>Close the current project</source>
-      <translation>Chiudi il progetto corrente</translation>
+      <source>Save project</source>
+      <translation>Salva progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5177" />
+      <location filename="../Project/Project.py" line="4882" />
+      <source>&amp;Save</source>
+      <translation>&amp;Salva</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4888" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Chiudi&lt;/b&gt;&lt;p&gt;Chiude l'attuale progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4894" />
-      <source>Save project</source>
-      <translation>Salva progetto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5191" />
-      <location filename="../Project/Project.py" line="4896" />
-      <source>&amp;Save</source>
-      <translation>&amp;Salva</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Salva il progetto corrente</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4890" />
+      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Salva&lt;/b&gt;&lt;p&gt;Salva l'attuale progetto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
+      <source>Save project as</source>
+      <translation>Salva progetto come</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4898" />
+      <source>Save &amp;as...</source>
+      <translation>S&amp;alva come...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4904" />
-      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Salva&lt;/b&gt;&lt;p&gt;Salva l'attuale progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4910" />
-      <source>Save project as</source>
-      <translation>Salva progetto come</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4912" />
-      <source>Save &amp;as...</source>
-      <translation>S&amp;alva come...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation>Salva il progetto attuale come un nuovo file</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4920" />
+      <location filename="../Project/Project.py" line="4906" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Salva as &lt;/b&gt;&lt;p&gt;Salva l'attuale progetto come nuovo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4929" />
+      <location filename="../Project/Project.py" line="4915" />
       <source>Save project as (Remote)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4931" />
+      <location filename="../Project/Project.py" line="4917" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4938" />
+      <location filename="../Project/Project.py" line="4924" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4927" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4957" />
+      <location filename="../Project/Project.py" line="4943" />
       <source>Add files to project</source>
       <translation>Aggiungi file al progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4959" />
+      <location filename="../Project/Project.py" line="4945" />
       <source>Add &amp;files...</source>
       <translation>Aggiungi &amp;files...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4965" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>Add files to the current project</source>
       <translation>Aggiungi file al progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4967" />
+      <location filename="../Project/Project.py" line="4953" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aggiungi files...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere file al progetto corrente. Il posto dove aggiungerli è determinato dall'estensione.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4978" />
+      <location filename="../Project/Project.py" line="4964" />
       <source>Add directory to project</source>
       <translation>Aggiungi directory al progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4980" />
+      <location filename="../Project/Project.py" line="4966" />
       <source>Add directory...</source>
       <translation>Aggiungi directory...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4987" />
+      <location filename="../Project/Project.py" line="4973" />
       <source>Add a directory to the current project</source>
       <translation>Aggiungi una directory al progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4990" />
+      <location filename="../Project/Project.py" line="4976" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aggiungi directory...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere una directory al progetto corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5000" />
+      <location filename="../Project/Project.py" line="4986" />
       <source>Add translation to project</source>
       <translation>Aggiungi le traduzioni al progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5002" />
+      <location filename="../Project/Project.py" line="4988" />
       <source>Add &amp;translation...</source>
       <translation>Aggiungi &amp;traduzione...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4995" />
+      <source>Add a translation to the current project</source>
+      <translation>Aggiungi le traduzioni al progetto corrente</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4998" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Aggiungi traduzione...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere una traduzione al progetto corrente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5008" />
+      <source>Search new files</source>
+      <translation>Cerca nuovi file</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5009" />
-      <source>Add a translation to the current project</source>
-      <translation>Aggiungi le traduzioni al progetto corrente</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5012" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Aggiungi traduzione...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere una traduzione al progetto corrente.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5022" />
-      <source>Search new files</source>
-      <translation>Cerca nuovi file</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>Cerca &amp;nuovi file...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5015" />
+      <source>Search new files in the project directory.</source>
+      <translation>Cerca nei file nella directory del progetto.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5017" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5027" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5028" />
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5029" />
-      <source>Search new files in the project directory.</source>
-      <translation>Cerca nei file nella directory del progetto.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5031" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5042" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5048" />
+      <location filename="../Project/Project.py" line="5034" />
       <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5050" />
+      <location filename="../Project/Project.py" line="5036" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5059" />
+      <location filename="../Project/Project.py" line="5045" />
       <source>Project properties</source>
       <translation>Proprietà del progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5061" />
+      <location filename="../Project/Project.py" line="5047" />
       <source>&amp;Properties...</source>
       <translation>&amp;Proprietà...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5067" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Show the project properties</source>
       <translation>Mostra le proprietà del progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5069" />
+      <location filename="../Project/Project.py" line="5055" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Proprietà...&lt;/b&gt;&lt;p&gt;Mosta un dialogo per modificare le proprietà di un progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5078" />
+      <location filename="../Project/Project.py" line="5064" />
       <source>User project properties</source>
       <translation>Proprietà utente del progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5080" />
+      <location filename="../Project/Project.py" line="5066" />
       <source>&amp;User Properties...</source>
       <translation>Proprietà &amp;utente...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5073" />
+      <source>Show the user specific project properties</source>
+      <translation>Mostra le proprietà del multiprogetto specifiche dell'utente</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5076" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Proprietà utente...&lt;/b&gt;&lt;p&gt;Mosta un dialogo per modificare le proprietà utente di un progetto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5086" />
+      <source>Filetype Associations</source>
+      <translation>Associazione tipi file</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5087" />
-      <source>Show the user specific project properties</source>
-      <translation>Mostra le proprietà del multiprogetto specifiche dell'utente</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5090" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Proprietà utente...&lt;/b&gt;&lt;p&gt;Mosta un dialogo per modificare le proprietà utente di un progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5100" />
-      <source>Filetype Associations</source>
-      <translation>Associazione tipi file</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation>Associazione tipi file...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5108" />
+      <location filename="../Project/Project.py" line="5094" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5097" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5110" />
+      <source>Lexer Associations</source>
+      <translation>Associazioni analizzatore lessicale</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5111" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5124" />
-      <source>Lexer Associations</source>
-      <translation>Associazioni analizzatore lessicale</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation>Associazioni analizzatore lessicale...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5132" />
+      <location filename="../Project/Project.py" line="5118" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation>Mostra le associazioni degli analizzatori lessicali del progetto (sovrascrivendo i default)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5135" />
+      <location filename="../Project/Project.py" line="5121" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Associazioni analizzatore lessicale...&lt;/b&gt;&lt;p&gt;Mostra un dialogo per modificare le associazioni degli analizzatori lessicali dei progetti. Queste associazioni sovrascrivono the impostazioni globali. Gli analizzatori lessicali sono utilizzati per l'evidenziazione del testo nell'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5153" />
+      <location filename="../Project/Project.py" line="5139" />
       <source>Debugger Properties</source>
       <translation>Proprietà Debugger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5154" />
+      <location filename="../Project/Project.py" line="5140" />
       <source>Debugger &amp;Properties...</source>
       <translation>&amp;Proprietà Debugger...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5160" />
+      <location filename="../Project/Project.py" line="5146" />
       <source>Show the debugger properties</source>
       <translation>Mostra le proprietàd el debugger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5162" />
+      <location filename="../Project/Project.py" line="5148" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Proprietà debugger...&lt;/b&gt;&lt;p&gt;Mostra un dialogo per modificare le impostazioni specifiche per il progetto del debugger.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5158" />
       <source>Load</source>
       <translation>Carica</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5173" />
+      <location filename="../Project/Project.py" line="5159" />
       <source>&amp;Load</source>
       <translation>&amp;Carica</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5179" />
+      <location filename="../Project/Project.py" line="5165" />
       <source>Load the debugger properties</source>
       <translation>Carica le proprietàd el debugger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5181" />
+      <location filename="../Project/Project.py" line="5167" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Carica le proprietà del debugger&lt;/b&gt;&lt;p&gt;Carica le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
+      <location filename="../Project/Project.py" line="5176" />
       <source>Save</source>
       <translation>Salva</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5197" />
+      <location filename="../Project/Project.py" line="5183" />
       <source>Save the debugger properties</source>
       <translation>Salva le proprietà del debugger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5199" />
+      <location filename="../Project/Project.py" line="5185" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Salva le proprietà del debugger&lt;/b&gt;&lt;p&gt;Salva le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5208" />
+      <location filename="../Project/Project.py" line="5194" />
       <source>Delete</source>
       <translation>Cancella</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5209" />
+      <location filename="../Project/Project.py" line="5195" />
       <source>&amp;Delete</source>
       <translation>&amp;Cancella</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5215" />
+      <location filename="../Project/Project.py" line="5201" />
       <source>Delete the debugger properties</source>
       <translation>Cancella le proprietà del debugger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5217" />
+      <location filename="../Project/Project.py" line="5203" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cancella le proprietà del debugger&lt;/b&gt;&lt;p&gt;Cancella il file che contiene le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5227" />
+      <location filename="../Project/Project.py" line="5213" />
       <source>Reset</source>
       <translation>Resetta</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5228" />
+      <location filename="../Project/Project.py" line="5214" />
       <source>&amp;Reset</source>
       <translation>&amp;Resetta</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5234" />
+      <location filename="../Project/Project.py" line="5220" />
       <source>Reset the debugger properties</source>
       <translation>Resetta le proprietà del debugger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5236" />
+      <location filename="../Project/Project.py" line="5222" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Azzera le proprietà del debugger&lt;/b&gt;&lt;p&gt;Azzera le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5252" />
-      <location filename="../Project/Project.py" line="5251" />
+      <location filename="../Project/Project.py" line="5238" />
+      <location filename="../Project/Project.py" line="5237" />
       <source>Load session</source>
       <translation>Carica sessione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5258" />
+      <location filename="../Project/Project.py" line="5244" />
       <source>Load the projects session file.</source>
       <translation>Carica il file di sessione del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5260" />
+      <location filename="../Project/Project.py" line="5246" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Carica sessione&lt;/b&gt;&lt;p&gt;Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.&lt;br&gt;- tutti i file sorgente aperti&lt;br&gt;- tutti i breakpoint&lt;br&gt;- gli argomenti alla riga di comango&lt;br&gt;- la directory di lavoro&lt;br&gt;- il flag di segnalazione delle eccezioni&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5276" />
-      <location filename="../Project/Project.py" line="5275" />
+      <location filename="../Project/Project.py" line="5262" />
+      <location filename="../Project/Project.py" line="5261" />
       <source>Save session</source>
       <translation>Salva sessione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5282" />
+      <location filename="../Project/Project.py" line="5268" />
       <source>Save the projects session file.</source>
       <translation>Salva il file sessione del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5284" />
+      <location filename="../Project/Project.py" line="5270" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Salva sessione&lt;/b&gt;&lt;p&gt;Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.&lt;br&gt;- tutti i file sorgente aperti&lt;br&gt;- tutti i breakpoint&lt;br&gt;- gli argomenti alla riga di comango&lt;br&gt;- la directory di lavoro&lt;br&gt;- il flag di segnalazione delle eccezioni&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5300" />
-      <location filename="../Project/Project.py" line="5299" />
+      <location filename="../Project/Project.py" line="5286" />
+      <location filename="../Project/Project.py" line="5285" />
       <source>Delete session</source>
       <translation>Cancella sessione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5306" />
+      <location filename="../Project/Project.py" line="5292" />
       <source>Delete the projects session file.</source>
       <translation>Cancella il file di sessione del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5308" />
+      <location filename="../Project/Project.py" line="5294" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cancella sessione&lt;/b&gt;&lt;p&gt;Cancella la sessione del progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5323" />
+      <location filename="../Project/Project.py" line="5309" />
       <source>Code Metrics</source>
       <translation>Statistiche codice</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5324" />
+      <location filename="../Project/Project.py" line="5310" />
       <source>&amp;Code Metrics...</source>
       <translation>Statistiche &amp;codice...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5317" />
+      <source>Show some code metrics for the project.</source>
+      <translation>Mostra alcune statistiche del codice per il progetto.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5320" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Statistiche codice...&lt;/b&gt;&lt;p&gt;Mostra alcune statistiche di tutti i file Python nel progetto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5330" />
+      <source>Python Code Coverage</source>
+      <translation>Analisi codice Python</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5331" />
-      <source>Show some code metrics for the project.</source>
-      <translation>Mostra alcune statistiche del codice per il progetto.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5334" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Statistiche codice...&lt;/b&gt;&lt;p&gt;Mostra alcune statistiche di tutti i file Python nel progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5344" />
-      <source>Python Code Coverage</source>
-      <translation>Analisi codice Python</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation>A&amp;nalisi codice...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5338" />
+      <source>Show code coverage information for the project.</source>
+      <translation>Mostra le informazioni dell'analisi del codice del progetto.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5341" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Analisi codice...&lt;/b&gt;&lt;p&gt;Mostra le analisi  del codice di tutti i file Python nel progetto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6775" />
+      <location filename="../Project/Project.py" line="6762" />
+      <location filename="../Project/Project.py" line="5351" />
+      <source>Profile Data</source>
+      <translation>Profilazione dati</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5352" />
-      <source>Show code coverage information for the project.</source>
-      <translation>Mostra le informazioni dell'analisi del codice del progetto.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5355" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Analisi codice...&lt;/b&gt;&lt;p&gt;Mostra le analisi  del codice di tutti i file Python nel progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6789" />
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="5365" />
-      <source>Profile Data</source>
-      <translation>Profilazione dati</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Profilazione dati...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5373" />
+      <location filename="../Project/Project.py" line="5359" />
       <source>Show profiling data for the project.</source>
       <translation>Mostra la profilazione dei dati per il progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5376" />
+      <location filename="../Project/Project.py" line="5362" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilazione dati...&lt;/b&gt;&lt;p&gt;Mostra la profilazione dei dati per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="6827" />
+      <location filename="../Project/Project.py" line="5377" />
       <source>Application Diagram</source>
       <translation>Diagrammi dell'applicazione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5392" />
+      <location filename="../Project/Project.py" line="5378" />
       <source>&amp;Application Diagram...</source>
       <translation>Diagramma dell' &amp;Applicazione...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5399" />
+      <location filename="../Project/Project.py" line="5385" />
       <source>Show a diagram of the project.</source>
       <translation>Mostra un diagramma del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5402" />
+      <location filename="../Project/Project.py" line="5388" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diagrammi dell'applicazione...&lt;/b&gt;&lt;p&gt;Mostra un diagramma del progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5411" />
+      <location filename="../Project/Project.py" line="5397" />
       <source>Load Diagram</source>
       <translation type="unfinished">Carico Diagramma</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5412" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5418" />
+      <location filename="../Project/Project.py" line="5404" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5420" />
+      <location filename="../Project/Project.py" line="5406" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
-      <location filename="../Project/Project.py" line="6954" />
-      <location filename="../Project/Project.py" line="5435" />
+      <location filename="../Project/Project.py" line="6995" />
+      <location filename="../Project/Project.py" line="6940" />
+      <location filename="../Project/Project.py" line="5421" />
       <source>Create Package List</source>
       <translation>Crea lista del package</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5437" />
+      <location filename="../Project/Project.py" line="5423" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished">Crea un &amp;archivio per il plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5444" />
+      <location filename="../Project/Project.py" line="5430" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="5433" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7080" />
-      <location filename="../Project/Project.py" line="5458" />
+      <location filename="../Project/Project.py" line="7066" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5460" />
+      <location filename="../Project/Project.py" line="5446" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5452" />
+      <source>Create eric plugin archive files.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5454" />
+      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5466" />
-      <source>Create eric plugin archive files.</source>
+      <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5468" />
-      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5480" />
-      <source>Create Plugin Archives (Snapshot)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5489" />
+      <location filename="../Project/Project.py" line="5475" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5492" />
+      <location filename="../Project/Project.py" line="5478" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7536" />
-      <location filename="../Project/Project.py" line="7507" />
-      <location filename="../Project/Project.py" line="7461" />
-      <location filename="../Project/Project.py" line="7413" />
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="5497" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5512" />
+      <location filename="../Project/Project.py" line="5498" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5518" />
+      <location filename="../Project/Project.py" line="5504" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5520" />
+      <location filename="../Project/Project.py" line="5506" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7513" />
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="7499" />
+      <location filename="../Project/Project.py" line="5516" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5531" />
+      <location filename="../Project/Project.py" line="5517" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5524" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5541" />
+      <location filename="../Project/Project.py" line="5527" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5559" />
+      <location filename="../Project/Project.py" line="5545" />
       <source>Create SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5560" />
+      <location filename="../Project/Project.py" line="5546" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5553" />
+      <source>Create a SBOM file of the project dependencies.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5556" />
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5567" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5570" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5581" />
       <source>Clear Byte Code Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5582" />
+      <location filename="../Project/Project.py" line="5568" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5589" />
+      <location filename="../Project/Project.py" line="5575" />
       <source>Clear the byte code caches of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5592" />
+      <location filename="../Project/Project.py" line="5578" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5608" />
+      <location filename="../Project/Project.py" line="5594" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5609" />
+      <location filename="../Project/Project.py" line="5595" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5601" />
+      <source>Show some information about 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5603" />
+      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5615" />
-      <source>Show some information about 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5617" />
-      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5629" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5630" />
+      <location filename="../Project/Project.py" line="5616" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5637" />
+      <location filename="../Project/Project.py" line="5623" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5640" />
+      <location filename="../Project/Project.py" line="5626" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5652" />
+      <location filename="../Project/Project.py" line="5638" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5653" />
+      <location filename="../Project/Project.py" line="5639" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5660" />
+      <location filename="../Project/Project.py" line="5646" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5651" />
+      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5664" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5665" />
-      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <source>Code Formatting &amp;Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5672" />
+      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5678" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5679" />
-      <source>Code Formatting &amp;Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5686" />
-      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5792" />
       <location filename="../Project/Project.py" line="5692" />
-      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <location filename="../Project/Project.py" line="5807" />
-      <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5706" />
-      <location filename="../Project/Project.py" line="5705" />
+      <location filename="../Project/Project.py" line="5691" />
       <source>Configure</source>
       <translation type="unfinished">Configura</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5713" />
+      <location filename="../Project/Project.py" line="5699" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5718" />
+      <location filename="../Project/Project.py" line="5704" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5734" />
+      <location filename="../Project/Project.py" line="5720" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5735" />
+      <location filename="../Project/Project.py" line="5721" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5741" />
+      <location filename="../Project/Project.py" line="5727" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5743" />
+      <location filename="../Project/Project.py" line="5729" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5756" />
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5763" />
+      <location filename="../Project/Project.py" line="5749" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5752" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5766" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5780" />
-      <location filename="../Project/Project.py" line="5779" />
+      <location filename="../Project/Project.py" line="5765" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5787" />
+      <location filename="../Project/Project.py" line="5773" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5814" />
+      <location filename="../Project/Project.py" line="5800" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5820" />
+      <location filename="../Project/Project.py" line="5806" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5836" />
+      <location filename="../Project/Project.py" line="5822" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5823" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5830" />
+      <source>Install the project into the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5833" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5844" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5851" />
+      <source>Configure the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5854" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5864" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5865" />
-      <source>Configure the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5868" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5878" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5871" />
+      <source>Upgrade the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5873" />
+      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5885" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5887" />
-      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5900" />
+      <location filename="../Project/Project.py" line="5886" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5906" />
+      <location filename="../Project/Project.py" line="5892" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5908" />
+      <location filename="../Project/Project.py" line="5894" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5926" />
+      <source>&amp;Project</source>
+      <translation>&amp;Progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5927" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Apri un progetto &amp;recente</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5929" />
+      <source>Session</source>
+      <translation>Sessione</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5930" />
+      <source>Debugger</source>
+      <translation>Debugger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5931" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5933" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5934" />
+      <source>&amp;Version Control</source>
+      <translation>Controllo di &amp;Versione</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5938" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Controlla</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5940" />
-      <source>&amp;Project</source>
-      <translation>&amp;Progetto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5941" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Apri un progetto &amp;recente</translation>
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5942" />
+      <source>Sho&amp;w</source>
+      <translation>&amp;Mostra</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Session</source>
-      <translation>Sessione</translation>
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagrammi</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
-      <source>Debugger</source>
-      <translation>Debugger</translation>
+      <source>Pac&amp;kagers</source>
+      <translation>Pac&amp;kagers</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
+      <source>Source &amp;Documentation</source>
+      <translation>&amp;Documentazione sorgenti</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Project-T&amp;ools</source>
+      <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
-      <source>&amp;Version Control</source>
-      <translation>Controllo di &amp;Versione</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5952" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Controlla</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5954" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5956" />
-      <source>Sho&amp;w</source>
-      <translation>&amp;Mostra</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5957" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagrammi</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5958" />
-      <source>Pac&amp;kagers</source>
-      <translation>Pac&amp;kagers</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5959" />
-      <source>Source &amp;Documentation</source>
-      <translation>&amp;Documentazione sorgenti</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5961" />
-      <source>Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6124" />
-      <location filename="../Project/Project.py" line="6122" />
+      <location filename="../Project/Project.py" line="6110" />
+      <location filename="../Project/Project.py" line="6108" />
       <source>Project</source>
       <translation>Progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6206" />
+      <location filename="../Project/Project.py" line="6192" />
       <source>&amp;Clear</source>
       <translation>Pulis&amp;ci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6403" />
+      <location filename="../Project/Project.py" line="6389" />
       <source>Search New Files</source>
       <translation>Cerca Nuovi File</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6404" />
+      <location filename="../Project/Project.py" line="6390" />
       <source>There were no new files found to be added.</source>
       <translation>Non sono stati trovati file da aggiungere.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6565" />
-      <location filename="../Project/Project.py" line="6552" />
+      <location filename="../Project/Project.py" line="6551" />
+      <location filename="../Project/Project.py" line="6538" />
       <source>Version Control System</source>
       <translation>Version Control System</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6553" />
+      <location filename="../Project/Project.py" line="6539" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6566" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;VCS selezionato &lt;b&gt;{0}&lt;/b&gt;non trovato.&lt;br&gt;Disabilito il controllo di versione.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="6709" />
+      <source>Coverage Data</source>
+      <translation>Dati Analisi</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6763" />
+      <location filename="../Project/Project.py" line="6710" />
+      <source>There is no main script defined for the current project. Aborting</source>
+      <translation>Non c'è uno script principale definito per il progetto. Esco</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6722" />
+      <source>Code Coverage</source>
+      <translation>Analisi codice</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="6723" />
-      <source>Coverage Data</source>
-      <translation>Dati Analisi</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6777" />
-      <location filename="../Project/Project.py" line="6724" />
-      <source>There is no main script defined for the current project. Aborting</source>
-      <translation>Non c'è uno script principale definito per il progetto. Esco</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6736" />
-      <source>Code Coverage</source>
-      <translation>Analisi codice</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Per favore seleziona un file per l'analisi</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6790" />
+      <location filename="../Project/Project.py" line="6776" />
       <source>Please select a profile file</source>
       <translation>Per favore seleziona un file per la profilazione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6842" />
+      <location filename="../Project/Project.py" line="6828" />
       <source>Include module names?</source>
       <translation>Includi i nomi dei moduli ?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6955" />
+      <location filename="../Project/Project.py" line="6941" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;PKGLIST&lt;/b&gt; esiste già.&lt;/p&gt;&lt;p&gt;Sovrascriverlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7010" />
+      <location filename="../Project/Project.py" line="6996" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;PKGLIST&lt;/b&gt; non può essere creato.&lt;br /&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7321" />
-      <location filename="../Project/Project.py" line="7277" />
-      <location filename="../Project/Project.py" line="7227" />
-      <location filename="../Project/Project.py" line="7216" />
-      <location filename="../Project/Project.py" line="7198" />
-      <location filename="../Project/Project.py" line="7151" />
-      <location filename="../Project/Project.py" line="7121" />
-      <location filename="../Project/Project.py" line="7093" />
-      <location filename="../Project/Project.py" line="7063" />
-      <location filename="../Project/Project.py" line="7048" />
-      <location filename="../Project/Project.py" line="7031" />
+      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7137" />
+      <location filename="../Project/Project.py" line="7107" />
+      <location filename="../Project/Project.py" line="7079" />
+      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7034" />
+      <location filename="../Project/Project.py" line="7017" />
       <source>Create Plugin Archive</source>
       <translation>Crea un archivio per il plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7032" />
+      <location filename="../Project/Project.py" line="7018" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>Non c'è uno script principale definito per il progetto. Esco...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7035" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7064" />
+      <location filename="../Project/Project.py" line="7050" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7072" />
+      <location filename="../Project/Project.py" line="7058" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7073" />
+      <location filename="../Project/Project.py" line="7059" />
       <source>Abort</source>
       <translation type="unfinished">Termina</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7076" />
+      <location filename="../Project/Project.py" line="7062" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7094" />
+      <location filename="../Project/Project.py" line="7080" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7122" />
+      <location filename="../Project/Project.py" line="7108" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7152" />
+      <location filename="../Project/Project.py" line="7138" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7199" />
+      <location filename="../Project/Project.py" line="7185" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere aggiunto all'archivio.Lo ignoro.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7217" />
+      <location filename="../Project/Project.py" line="7203" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7228" />
+      <location filename="../Project/Project.py" line="7214" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7278" />
+      <location filename="../Project/Project.py" line="7264" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file plugin &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7322" />
+      <location filename="../Project/Project.py" line="7308" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7414" />
+      <location filename="../Project/Project.py" line="7400" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7462" />
+      <location filename="../Project/Project.py" line="7448" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7508" />
+      <location filename="../Project/Project.py" line="7494" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7516" />
+      <location filename="../Project/Project.py" line="7502" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
+      <location filename="../Project/Project.py" line="7507" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7537" />
+      <location filename="../Project/Project.py" line="7523" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7975" />
+      <location filename="../Project/Project.py" line="7961" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7976" />
+      <location filename="../Project/Project.py" line="7962" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8057" />
+      <location filename="../Project/Project.py" line="8043" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8088" />
-      <location filename="../Project/Project.py" line="8073" />
+      <location filename="../Project/Project.py" line="8074" />
+      <location filename="../Project/Project.py" line="8059" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65247,9 +65199,9 @@
   <context>
     <name>ProjectFormsBrowser</name>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1141" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1092" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1055" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1131" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
       <location filename="../Project/ProjectFormsBrowser.py" line="142" />
       <location filename="../Project/ProjectFormsBrowser.py" line="77" />
       <source>Forms</source>
@@ -65522,102 +65474,102 @@
       <translation>Compila le form</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="701" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="732" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="719" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="700" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="683" />
       <source>New Form</source>
       <translation>Nuova form</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="685" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
       <source>Select a form type:</source>
       <translation>Seleziona tipo form:</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="703" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="702" />
       <source>Qt User-Interface Files (*.ui);;All Files (*)</source>
       <translation>File interfaccia Qt (*.ui);;Tutti i file (*)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="721" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Il file esiste già! Sovrascriverlo ?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="734" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
       <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il nuovo file della form &lt;b&gt;{0}&lt;/b&gt; non può essere creato.&lt;br&gt;Problema: {1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectFormsBrowser.py" line="759" />
+      <source>Delete forms</source>
+      <translation>Cancella le form</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFormsBrowser.py" line="760" />
-      <source>Delete forms</source>
-      <translation>Cancella le form</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="761" />
       <source>Do you really want to delete these forms from the project?</source>
       <translation>Vuoi veramente cancellare queste form dal progetto ?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="893" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="882" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="875" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="888" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="877" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="870" />
       <source>Form Compilation</source>
       <translation>Compilazione form</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="876" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="871" />
       <source>The compilation of the form file was successful.</source>
       <translation>La compilazione della form è avvenuta con successo.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="883" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="878" />
       <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La compilazione del file form è fallita.&lt;/p&gt;&lt;p&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="894" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="889" />
       <source>The compilation of the form file failed.</source>
       <translation>La compilazione della form è fallita.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="986" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="977" />
       <source>Process Generation Error</source>
       <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="987" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="978" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Non posso avviare {0}.&lt;br&gt;Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1074" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1037" />
       <source>Compiling forms...</source>
       <translation>Compilazione form in corso...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1134" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1084" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1047" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1075" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1038" />
       <source>Abort</source>
       <translation>Termina</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1137" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1087" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1050" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1127" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1078" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1041" />
       <source>%v/%m Forms</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1133" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1123" />
       <source>Determining changed forms...</source>
       <translation>Determina form modificate...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1163" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1153" />
       <source>Compiling changed forms...</source>
       <translation>Compila le form modificate...</translation>
     </message>
@@ -66069,9 +66021,9 @@
   <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="956" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="880" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="844" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="940" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="864" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="828" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="87" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="68" />
       <source>Resources</source>
@@ -66098,219 +66050,219 @@
       <translation type="unfinished">Browser delle risorse</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="165" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="163" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="150" />
       <source>Compile resource</source>
       <translation>Compila risorse</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="396" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="385" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="344" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="333" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="247" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="235" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="172" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="154" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="384" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="373" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="334" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="323" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="241" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="229" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="170" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
       <source>Compile all resources</source>
       <translation>Compila tutte le risorse</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="389" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="337" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="296" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="239" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="158" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="377" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="327" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="288" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="233" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="156" />
       <source>Configure rcc Compiler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="308" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="300" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="179" />
       <source>Open</source>
       <translation>Apri</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
       <source>Rename file</source>
       <translation>Rinomina file</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="349" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="310" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="339" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="302" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
       <source>Remove from project</source>
       <translation>Rimuovi dal progetto</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="351" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="187" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="341" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="304" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
       <source>Delete</source>
       <translation>Cancella</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="345" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="249" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="236" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="200" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="195" />
+      <source>New resource...</source>
+      <translation>Nuova risorsa...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="390" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="346" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="254" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
+      <source>Add resources...</source>
+      <translation>Aggiungi risorsa...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="393" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="348" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="257" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="206" />
+      <source>Add resources directory...</source>
+      <translation>Aggiungi directory delle risorse...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="353" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="211" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectResourcesBrowser.py" line="355" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="255" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="242" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="199" />
-      <source>New resource...</source>
-      <translation>Nuova risorsa...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="402" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="356" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="260" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="208" />
-      <source>Add resources...</source>
-      <translation>Aggiungi risorsa...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="405" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="358" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="210" />
-      <source>Add resources directory...</source>
-      <translation>Aggiungi directory delle risorse...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="363" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="269" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="365" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="217" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="213" />
       <source>Copy Path to Clipboard</source>
       <translation>Copia il path nella Clipboard</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="410" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="367" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="315" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="272" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="219" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="398" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="357" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="307" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="266" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
       <source>Expand all directories</source>
       <translation>Espandi tutte le directory</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="413" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="369" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="317" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="274" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="220" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="401" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="359" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="309" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="268" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="216" />
       <source>Collapse all directories</source>
       <translation>Riduci tutte le directory</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="416" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="372" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="320" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="277" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="222" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="404" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="362" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="271" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="218" />
       <source>Configure...</source>
       <translation>Configura...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="303" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="292" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="295" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="284" />
       <source>Compile resources</source>
       <translation>Compila le risorse</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="595" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="574" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="555" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="583" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="562" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="543" />
       <source>New Resource</source>
       <translation>Nuova risorsa</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="557" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="545" />
       <source>Qt Resource Files (*.qrc)</source>
       <translation>File Risorse Qt (*.qrc)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="575" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="563" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Il file esiste già. Sovrascriverlo ?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="596" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="584" />
       <source>&lt;p&gt;The new resource file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il nuovo file risorse &lt;b&gt;{0}&lt;/b&gt; non può essere creato. &lt;br&gt;Problema:  {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="622" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="610" />
       <source>Delete resources</source>
       <translation>Cancella risorse</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="623" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="611" />
       <source>Do you really want to delete these resources from the project?</source>
       <translation>Vuoi veramente cancellare queste risorse dal progetto ?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="717" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="708" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="701" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="705" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="696" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="689" />
       <source>Resource Compilation</source>
       <translation>Compilazione risorse</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="702" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="690" />
       <source>The compilation of the resource file was successful.</source>
       <translation>La compilazione del file risorse è avvenuta con successo.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="709" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="697" />
       <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La compilazione del file risorse è fallita.&lt;/p&gt;&lt;p&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="718" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="706" />
       <source>The compilation of the resource file failed.</source>
       <translation>La compilazione del file risorse è fallita.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="805" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="789" />
       <source>Process Generation Error</source>
       <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="806" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="790" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Non posso avviare {0}.&lt;br&gt;Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="871" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="835" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="855" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="819" />
       <source>Compiling resources...</source>
       <translation>Compilazione risorse in corso...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="949" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="872" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="836" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="933" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="856" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="820" />
       <source>Abort</source>
       <translation>Termina</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="952" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="875" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="839" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="936" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="859" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="823" />
       <source>%v/%m Resources</source>
       <translation>Risorse %v/%m</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="948" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="932" />
       <source>Determining changed resources...</source>
       <translation>Determinazione risorse modificate...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="986" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="970" />
       <source>Compiling changed resources...</source>
       <translation>Compilazione risorse modificate in corso...</translation>
     </message>
@@ -66846,250 +66798,250 @@
       <translation type="unfinished">Browser delle traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="514" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="456" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="296" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="238" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="213" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="182" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="508" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="236" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="180" />
       <source>Open in Editor</source>
       <translation>Apri con l'editor</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="255" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="253" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation</source>
       <translation>Genera traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="193" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="263" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="191" />
       <source>Generate translation (with obsolete)</source>
       <translation>Genera traduzioni (con deprecati)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="580" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="551" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="274" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="199" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="572" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="543" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="378" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="272" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="197" />
       <source>Generate all translations</source>
       <translation>Genera tutte le traduzioni</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="581" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="281" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
+      <source>Generate all translations (with obsolete)</source>
+      <translation>Genera tutte le traduzioni (con deprecati)</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="446" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="207" />
+      <source>Open in Qt-Linguist</source>
+      <translation>Apri in Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="301" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <source>Release translation</source>
+      <translation>Rilascia traduzione</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="589" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="391" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="283" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
-      <source>Generate all translations (with obsolete)</source>
-      <translation>Genera tutte le traduzioni (con deprecati)</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="452" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
-      <source>Open in Qt-Linguist</source>
-      <translation>Apri in Qt-Linguist</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
-      <source>Release translation</source>
-      <translation>Rilascia traduzione</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="597" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="560" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="399" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="363" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="552" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="395" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="359" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Release all translations</source>
       <translation>Rilascia tutte le traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="226" />
       <source>Preview translation</source>
       <translation>Anteprima traduzione</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="368" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="232" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="557" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="364" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
       <source>Preview all translations</source>
       <translation>Anteprima tutte le traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="481" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="374" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="246" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="475" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="370" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="244" />
       <source>Extract messages</source>
       <translation>Estrai messaggi</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="291" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="289" />
       <source>Open</source>
       <translation>Apri</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="319" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Remove from project</source>
       <translation>Rimuovi dal progetto</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="595" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="526" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="320" />
+      <source>Delete</source>
+      <translation>Cancella</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="600" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="402" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="324" />
+      <source>New translation...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="603" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="532" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="322" />
-      <source>Delete</source>
-      <translation>Cancella</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="608" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="406" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="326" />
-      <source>New translation...</source>
-      <translation type="unfinished" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="327" />
+      <source>Add translation files...</source>
+      <translation>Aggiungi file traduzione...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="607" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="609" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Copia il path nella Clipboard</translation>
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="611" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="329" />
-      <source>Add translation files...</source>
-      <translation>Aggiungi file traduzione...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="615" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="413" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="617" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Copia il path nella Clipboard</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="619" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="535" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="416" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="338" />
       <source>Configure...</source>
       <translation>Configura...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="490" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="440" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="484" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
       <source>Generate translations</source>
       <translation>Genera traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="500" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="445" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
       <source>Generate translations (with obsolete)</source>
       <translation>Genera traduzioni (con deprecati)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="515" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="455" />
       <source>Release translations</source>
       <translation>Rilascia traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
       <source>Preview translations</source>
       <translation>Anteprima traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="882" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="866" />
       <source>Delete translation files</source>
       <translation>Cancella file della traduzione</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="883" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="867" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation>Vuoi veramente cancellare questi file traduzione del progetto ?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1582" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1051" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1011" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1560" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1035" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="995" />
       <source>Write temporary project file</source>
       <translation>Scrivi un file progetto temporaneo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1583" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1307" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1012" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1561" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1287" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="996" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Nessun file traduzione (*.ts) selezionato.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1052" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1036" />
       <source>&lt;p&gt;The temporary project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file temporaneo &lt;b&gt;{0}&lt;/b&gt; del progetto non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1306" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1189" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1177" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1286" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1173" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1161" />
       <source>Translation file generation</source>
       <translation>Generazione file traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1178" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1162" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation>La generazione dei file di traduzione (*.ts) è avvenuta con successo.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1184" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1168" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1190" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1174" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1612" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1360" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1590" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1388" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1340" />
       <source>Process Generation Error</source>
       <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1361" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1389" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1341" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Non posso avviare {0}.&lt;br&gt;Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1497" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1479" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1477" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1459" />
       <source>Translation file release</source>
       <translation>Rilascia file traduzione</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1480" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1460" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation>Il rilascio dei file traduzione (*.qm) è avvenuta con successo.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1498" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1478" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation>La generazione dei file di traduzione (*.qm) è fallita.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1613" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1591" />
       <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare lrelease.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -69655,38 +69607,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="214" />
+      <location filename="../UI/PythonAstViewer.py" line="216" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="224" />
+      <location filename="../UI/PythonAstViewer.py" line="226" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="230" />
+      <location filename="../UI/PythonAstViewer.py" line="232" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="248" />
+      <location filename="../UI/PythonAstViewer.py" line="250" />
       <source>Module</source>
       <translation type="unfinished">Modulo</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="280" />
+      <location filename="../UI/PythonAstViewer.py" line="282" />
       <source>{0}: {1}</source>
       <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="297" />
-      <location filename="../UI/PythonAstViewer.py" line="287" />
+      <location filename="../UI/PythonAstViewer.py" line="299" />
+      <location filename="../UI/PythonAstViewer.py" line="289" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="304" />
+      <location filename="../UI/PythonAstViewer.py" line="306" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -71827,7 +71779,7 @@
   <context>
     <name>QtPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="154" />
+      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="139" />
       <source>Sample: {0}designer{1}</source>
       <translation type="unfinished" />
     </message>
@@ -71871,7 +71823,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Tools Directory:</source>
       <translation type="unfinished" />
     </message>
@@ -71956,7 +71907,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Virtual Environment:</source>
       <translation type="unfinished" />
     </message>
@@ -71964,7 +71914,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Select the virtual environment to be used</source>
       <translation type="unfinished" />
     </message>
@@ -71972,7 +71921,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to open the virtual environment manager dialog</source>
       <translation type="unfinished" />
     </message>
@@ -71980,7 +71928,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to refresh the list of vitual environments</source>
       <translation type="unfinished" />
     </message>
@@ -72009,7 +71956,6 @@
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Generate imports relative to '.'</source>
       <translation type="unfinished" />
     </message>
@@ -72042,26 +71988,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>pyside2-uic Options</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>PySide6</source>
       <translation type="unfinished" />
     </message>
@@ -87945,64 +87871,64 @@
       <translation>Configura...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="575" />
+      <location filename="../Templates/TemplateViewer.py" line="577" />
       <source>Remove Template</source>
       <translation>Rimuovi template</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="576" />
+      <location filename="../Templates/TemplateViewer.py" line="578" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Vuoi veramente rimuovere &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="604" />
+      <location filename="../Templates/TemplateViewer.py" line="606" />
       <source>Import Templates</source>
       <translation>Importa template</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="621" />
-      <location filename="../Templates/TemplateViewer.py" line="606" />
+      <location filename="../Templates/TemplateViewer.py" line="623" />
+      <location filename="../Templates/TemplateViewer.py" line="608" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
-      <location filename="../Templates/TemplateViewer.py" line="619" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
+      <location filename="../Templates/TemplateViewer.py" line="621" />
       <source>Export Templates</source>
       <translation>Esporta template</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="654" />
+      <location filename="../Templates/TemplateViewer.py" line="656" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="655" />
+      <location filename="../Templates/TemplateViewer.py" line="657" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="675" />
+      <location filename="../Templates/TemplateViewer.py" line="677" />
       <source>Template Help</source>
       <translation>Help template</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="676" />
+      <location filename="../Templates/TemplateViewer.py" line="678" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="938" />
+      <location filename="../Templates/TemplateViewer.py" line="940" />
       <source>Edit Template Group</source>
       <translation>Modifica gruppo template</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="939" />
+      <location filename="../Templates/TemplateViewer.py" line="941" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Un gruppo di template con il nome &lt;b&gt;{0}&lt;/b&gt; esite già.&lt;/p&gt;</translation>
     </message>
@@ -91472,2586 +91398,2570 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="263" />
+      <location filename="../UI/UserInterface.py" line="265" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="319" />
+      <location filename="../UI/UserInterface.py" line="321" />
       <source>Initializing Plugin Manager...</source>
       <translation>Inizializzazione Gestore Plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="327" />
+      <location filename="../UI/UserInterface.py" line="329" />
       <source>Generating Main User Interface...</source>
       <translation>Generazione interfaccia utente principale...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="386" />
       <location filename="../UI/UserInterface.py" line="384" />
-      <location filename="../UI/UserInterface.py" line="382" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="593" />
+      <location filename="../UI/UserInterface.py" line="595" />
       <source>Initializing Tools...</source>
       <translation>Inizializzazione strumenti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="605" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Registering Objects...</source>
       <translation>Registrazione Oggetti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="640" />
+      <location filename="../UI/UserInterface.py" line="642" />
       <source>Initializing Actions...</source>
       <translation>Inizializzazione Azioni...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="643" />
+      <location filename="../UI/UserInterface.py" line="645" />
       <source>Initializing Menus...</source>
       <translation>Inizializzazione Menù...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="648" />
       <source>Initializing Toolbars...</source>
       <translation>Inizializzazione barre degli strumenti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Statusbar...</source>
       <translation>Inizializzazione barra di stato...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="676" />
       <location filename="../UI/UserInterface.py" line="674" />
-      <location filename="../UI/UserInterface.py" line="672" />
       <source>Initializing Single Application Server...</source>
       <translation>Inizializzazione Single Application Server...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="683" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Activating Plugins...</source>
       <translation>Attivazione Plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="688" />
+      <location filename="../UI/UserInterface.py" line="690" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="692" />
+      <location filename="../UI/UserInterface.py" line="694" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
+      <location filename="../UI/UserInterface.py" line="705" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Ripristino toolbarmanager...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="714" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="726" />
+      <location filename="../UI/UserInterface.py" line="728" />
       <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="732" />
+      <location filename="../UI/UserInterface.py" line="734" />
       <source>Reading Templates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="738" />
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2212" />
-      <location filename="../UI/UserInterface.py" line="1099" />
+      <location filename="../UI/UserInterface.py" line="2214" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Left Toolbox</source>
       <translation type="unfinished">Barra degli strumenti sinistra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2258" />
-      <location filename="../UI/UserInterface.py" line="1109" />
+      <location filename="../UI/UserInterface.py" line="2260" />
+      <location filename="../UI/UserInterface.py" line="1111" />
       <source>Horizontal Toolbox</source>
       <translation>Barra dei comandi orizzontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2235" />
-      <location filename="../UI/UserInterface.py" line="1120" />
+      <location filename="../UI/UserInterface.py" line="2237" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Right Toolbox</source>
       <translation type="unfinished">Barra degli strumenti destra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2054" />
-      <location filename="../UI/UserInterface.py" line="1316" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1132" />
       <source>Multiproject-Viewer</source>
       <translation>Multiproject-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2032" />
-      <location filename="../UI/UserInterface.py" line="1322" />
-      <location filename="../UI/UserInterface.py" line="1136" />
+      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="1324" />
+      <location filename="../UI/UserInterface.py" line="1138" />
       <source>Project-Viewer</source>
       <translation>Project-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2594" />
-      <location filename="../UI/UserInterface.py" line="2593" />
-      <location filename="../UI/UserInterface.py" line="1329" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="2596" />
+      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="1331" />
+      <location filename="../UI/UserInterface.py" line="1145" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
-      <location filename="../UI/UserInterface.py" line="2616" />
-      <location filename="../UI/UserInterface.py" line="1336" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2619" />
+      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="1338" />
+      <location filename="../UI/UserInterface.py" line="1152" />
       <source>Find File</source>
       <translation type="unfinished">Trova file</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1156" />
+      <location filename="../UI/UserInterface.py" line="1344" />
+      <location filename="../UI/UserInterface.py" line="1158" />
       <source>VCS Status</source>
       <translation type="unfinished">Stato VCS</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2187" />
-      <location filename="../UI/UserInterface.py" line="1349" />
-      <location filename="../UI/UserInterface.py" line="1163" />
+      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="1351" />
+      <location filename="../UI/UserInterface.py" line="1165" />
       <source>Template-Viewer</source>
       <translation>Templates-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2120" />
-      <location filename="../UI/UserInterface.py" line="1356" />
-      <location filename="../UI/UserInterface.py" line="1170" />
+      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="1358" />
+      <location filename="../UI/UserInterface.py" line="1172" />
       <source>File-Browser</source>
       <translation>File Browser</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1177" />
+      <location filename="../UI/UserInterface.py" line="1365" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Symbols</source>
       <translation>Simboli</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2076" />
-      <location filename="../UI/UserInterface.py" line="1385" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1187" />
+      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="1387" />
+      <location filename="../UI/UserInterface.py" line="1381" />
+      <location filename="../UI/UserInterface.py" line="1189" />
       <source>Debug-Viewer</source>
       <translation>Debug-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <location filename="../UI/UserInterface.py" line="2447" />
-      <location filename="../UI/UserInterface.py" line="1392" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="1394" />
+      <location filename="../UI/UserInterface.py" line="1196" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2663" />
-      <location filename="../UI/UserInterface.py" line="2662" />
-      <location filename="../UI/UserInterface.py" line="1399" />
-      <location filename="../UI/UserInterface.py" line="1201" />
+      <location filename="../UI/UserInterface.py" line="2665" />
+      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="1401" />
+      <location filename="../UI/UserInterface.py" line="1203" />
       <source>Help Viewer</source>
       <translation type="unfinished">Visualizzatore dell'Aiuto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3611" />
-      <location filename="../UI/UserInterface.py" line="2543" />
-      <location filename="../UI/UserInterface.py" line="2542" />
-      <location filename="../UI/UserInterface.py" line="1405" />
-      <location filename="../UI/UserInterface.py" line="1207" />
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1209" />
       <source>Plugin Repository</source>
       <translation>Repository Plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
-      <location filename="../UI/UserInterface.py" line="2566" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1213" />
+      <location filename="../UI/UserInterface.py" line="2569" />
+      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2475" />
-      <location filename="../UI/UserInterface.py" line="2474" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1220" />
+      <location filename="../UI/UserInterface.py" line="2477" />
+      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2497" />
-      <location filename="../UI/UserInterface.py" line="2496" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1225" />
+      <location filename="../UI/UserInterface.py" line="2499" />
+      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="1427" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1232" />
+      <location filename="../UI/UserInterface.py" line="1434" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>Cooperation</source>
       <translation>Cooperazione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2375" />
-      <location filename="../UI/UserInterface.py" line="1436" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1239" />
       <source>IRC</source>
       <translation type="unfinished">IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
-      <location filename="../UI/UserInterface.py" line="2518" />
-      <location filename="../UI/UserInterface.py" line="1442" />
-      <location filename="../UI/UserInterface.py" line="1244" />
+      <location filename="../UI/UserInterface.py" line="2521" />
+      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2098" />
-      <location filename="../UI/UserInterface.py" line="1450" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1254" />
       <source>Shell</source>
       <translation>Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <location filename="../UI/UserInterface.py" line="1456" />
-      <location filename="../UI/UserInterface.py" line="1256" />
+      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
       <source>Task-Viewer</source>
       <translation>Task-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2142" />
-      <location filename="../UI/UserInterface.py" line="1462" />
-      <location filename="../UI/UserInterface.py" line="1260" />
+      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="1464" />
+      <location filename="../UI/UserInterface.py" line="1262" />
       <source>Log-Viewer</source>
       <translation>Log-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1469" />
-      <location filename="../UI/UserInterface.py" line="1267" />
+      <location filename="../UI/UserInterface.py" line="1471" />
+      <location filename="../UI/UserInterface.py" line="1269" />
       <source>Numbers</source>
       <translation>Numeri</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1844" />
+      <location filename="../UI/UserInterface.py" line="1846" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - Passive Debug Mode</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <location filename="../UI/UserInterface.py" line="1847" />
+      <location filename="../UI/UserInterface.py" line="1855" />
+      <location filename="../UI/UserInterface.py" line="1849" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} -{1} Passive Debug Mode</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
+      <location filename="../UI/UserInterface.py" line="1861" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} -{1} - {2} - Passive Debug Mode</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1885" />
-      <source>Quit</source>
-      <translation>Esci</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1887" />
+      <source>Quit</source>
+      <translation>Esci</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1889" />
       <source>&amp;Quit</source>
       <translation>&amp;Esci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1888" />
+      <location filename="../UI/UserInterface.py" line="1890" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Quit the IDE</source>
-      <translation>Esci dall'IDE</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1895" />
+      <source>Quit the IDE</source>
+      <translation>Esci dall'IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1897" />
       <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Esci dall'IDE&lt;/b&gt;&lt;p&gt;Esci dall'IDE. Ogni cambiamento non salvato dovrebbe essere salvato prima. Ogni programma python in debug verrà fermato e le impostazioni scritte su disco.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1911" />
       <location filename="../UI/UserInterface.py" line="1909" />
-      <location filename="../UI/UserInterface.py" line="1907" />
       <source>Restart</source>
       <translation type="unfinished">Riavvio</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1910" />
+      <location filename="../UI/UserInterface.py" line="1912" />
       <source>Ctrl+Shift+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1915" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1917" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1919" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <location filename="../UI/UserInterface.py" line="1928" />
-      <source>Save session</source>
-      <translation>Salva sessione</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1937" />
+      <location filename="../UI/UserInterface.py" line="1930" />
+      <source>Save session</source>
+      <translation>Salva sessione</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1931" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7892" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <location filename="../UI/UserInterface.py" line="1947" />
+      <location filename="../UI/UserInterface.py" line="7866" />
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1949" />
       <source>Load session</source>
       <translation type="unfinished">Carica sessione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
+      <location filename="../UI/UserInterface.py" line="1950" />
       <source>Load session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1958" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1966" />
-      <source>New Window</source>
-      <translation type="unfinished">Nuova finestra</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1968" />
+      <source>New Window</source>
+      <translation type="unfinished">Nuova finestra</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1970" />
       <source>New &amp;Window</source>
       <translation type="unfinished">Nuova &amp;Finestra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1969" />
+      <location filename="../UI/UserInterface.py" line="1971" />
       <source>Ctrl+Shift+N</source>
       <comment>File|New Window</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1974" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1976" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1978" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1992" />
       <location filename="../UI/UserInterface.py" line="1990" />
-      <location filename="../UI/UserInterface.py" line="1988" />
       <source>Edit Profile</source>
       <translation>Modifica profilo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1997" />
-      <source>Activate the edit view profile</source>
-      <translation>Attiva il profilo della vista di editing</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Activate the edit view profile</source>
+      <translation>Attiva il profilo della vista di editing</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2001" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilo di edit&lt;/p&gt;&lt;p&gt;Attiva il "Profilo di Edit". Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo "Configura Profili.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2014" />
       <location filename="../UI/UserInterface.py" line="2012" />
-      <location filename="../UI/UserInterface.py" line="2010" />
       <source>Debug Profile</source>
       <translation>Profilo Debug</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2019" />
-      <source>Activate the debug view profile</source>
-      <translation>Attiva profilo Debug</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Activate the debug view profile</source>
+      <translation>Attiva profilo Debug</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilo di debug&lt;/p&gt;&lt;p&gt;Attiva il "Profilo di Debug". Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo "Configura Profili.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2033" />
+      <location filename="../UI/UserInterface.py" line="2035" />
       <source>&amp;Project-Viewer</source>
       <translation>&amp;Project-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="2036" />
       <source>Alt+Shift+P</source>
       <translation>Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2040" />
+      <location filename="../UI/UserInterface.py" line="2042" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2043" />
+      <location filename="../UI/UserInterface.py" line="2045" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2055" />
+      <location filename="../UI/UserInterface.py" line="2057" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>&amp;Multiproject-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="2058" />
       <source>Alt+Shift+M</source>
       <translation>Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2062" />
+      <location filename="../UI/UserInterface.py" line="2064" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2065" />
+      <location filename="../UI/UserInterface.py" line="2067" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2077" />
+      <location filename="../UI/UserInterface.py" line="2079" />
       <source>&amp;Debug-Viewer</source>
       <translation>&amp;Debug-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="2080" />
       <source>Alt+Shift+D</source>
       <translation>Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2084" />
+      <location filename="../UI/UserInterface.py" line="2086" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2087" />
+      <location filename="../UI/UserInterface.py" line="2089" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2099" />
+      <location filename="../UI/UserInterface.py" line="2101" />
       <source>&amp;Shell</source>
       <translation>&amp;Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="2102" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2106" />
+      <location filename="../UI/UserInterface.py" line="2108" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2109" />
+      <location filename="../UI/UserInterface.py" line="2111" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2121" />
+      <location filename="../UI/UserInterface.py" line="2123" />
       <source>&amp;File-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="2124" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2128" />
+      <location filename="../UI/UserInterface.py" line="2130" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2131" />
+      <location filename="../UI/UserInterface.py" line="2133" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2143" />
+      <location filename="../UI/UserInterface.py" line="2145" />
       <source>Lo&amp;g-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="2146" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2150" />
+      <location filename="../UI/UserInterface.py" line="2152" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="2155" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2165" />
+      <location filename="../UI/UserInterface.py" line="2167" />
       <source>&amp;Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="2168" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2174" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2190" />
       <source>Templ&amp;ate-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="2191" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2197" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2198" />
+      <location filename="../UI/UserInterface.py" line="2200" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2213" />
+      <location filename="../UI/UserInterface.py" line="2215" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2220" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2222" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2236" />
+      <location filename="../UI/UserInterface.py" line="2238" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2243" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2245" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2259" />
+      <location filename="../UI/UserInterface.py" line="2261" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Toolbox &amp;Orizzontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2266" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation>Abilita/Disabilita una finestra la toolbox orizzontale</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2268" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation>Abilita/Disabilita una finestra la toolbox orizzontale</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abilita/Disabilita la finestra della toolbox orizzontale&lt;/b&gt;&lt;p&gt;Se la finestra della toolbox orizzontale è nascosta verrà mostrata. Se è mostrata verrà chiusa.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2281" />
+      <location filename="../UI/UserInterface.py" line="2283" />
       <source>Left Sidebar</source>
       <translation>Barra laterale sinistra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2282" />
+      <location filename="../UI/UserInterface.py" line="2284" />
       <source>&amp;Left Sidebar</source>
       <translation>Barra &amp;laterale sinistra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2289" />
-      <source>Toggle the left sidebar window</source>
-      <translation>Abilita/Disabilita la finestra della barra laterale sinistra</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2291" />
+      <source>Toggle the left sidebar window</source>
+      <translation>Abilita/Disabilita la finestra della barra laterale sinistra</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abilita/Disabilita la finestra della barra laterale sinistra&lt;/b&gt;&lt;p&gt;Se la finestra della barra laterale sinistra è nascosta verrà mostrata. Se è mostrata verrà chiusa.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2304" />
+      <location filename="../UI/UserInterface.py" line="2306" />
       <source>Right Sidebar</source>
       <translation type="unfinished">Barra laterale destra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2305" />
+      <location filename="../UI/UserInterface.py" line="2307" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2312" />
-      <source>Toggle the right sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2314" />
+      <source>Toggle the right sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2329" />
       <source>Bottom Sidebar</source>
       <translation>Barra in basso</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2328" />
+      <location filename="../UI/UserInterface.py" line="2330" />
       <source>&amp;Bottom Sidebar</source>
       <translation>Barra in &amp;basso</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation>Abilita/Disabilita la finestra della barra in basso</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2337" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation>Abilita/Disabilita la finestra della barra in basso</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abilita/Disabilita la finestra della barra in basso&lt;/b&gt;&lt;p&gt;Se la finestra della barra in basso è nascosta verrà mostrata. Se è mostrata verrà chiusa.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2350" />
-      <source>Cooperation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2351" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2352" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2353" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2354" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
+      <location filename="../UI/UserInterface.py" line="2360" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2361" />
+      <location filename="../UI/UserInterface.py" line="2363" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2376" />
+      <location filename="../UI/UserInterface.py" line="2378" />
       <source>&amp;IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="2379" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2383" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2386" />
+      <location filename="../UI/UserInterface.py" line="2388" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2397" />
-      <source>Symbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2398" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2399" />
+      <source>Symbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2400" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2401" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2407" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2408" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2422" />
-      <source>Numbers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2423" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2424" />
+      <source>Numbers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2426" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
+      <location filename="../UI/UserInterface.py" line="2432" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2433" />
+      <location filename="../UI/UserInterface.py" line="2435" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="2451" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2455" />
+      <location filename="../UI/UserInterface.py" line="2457" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2460" />
+      <location filename="../UI/UserInterface.py" line="2462" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="2478" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2482" />
+      <location filename="../UI/UserInterface.py" line="2484" />
       <source>Switch the input focus to the PyPI Package Management window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2487" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="2500" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2504" />
+      <location filename="../UI/UserInterface.py" line="2506" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="2522" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2528" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2529" />
+      <location filename="../UI/UserInterface.py" line="2531" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="2546" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2552" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2553" />
+      <location filename="../UI/UserInterface.py" line="2555" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="2570" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2574" />
+      <location filename="../UI/UserInterface.py" line="2576" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2579" />
+      <location filename="../UI/UserInterface.py" line="2581" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="2597" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2603" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="2620" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2626" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2641" />
-      <location filename="../UI/UserInterface.py" line="2640" />
+      <location filename="../UI/UserInterface.py" line="2643" />
+      <location filename="../UI/UserInterface.py" line="2642" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2642" />
+      <location filename="../UI/UserInterface.py" line="2644" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2648" />
+      <location filename="../UI/UserInterface.py" line="2650" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2653" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="2666" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
+      <location filename="../UI/UserInterface.py" line="2672" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2673" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2686" />
-      <source>What's This?</source>
-      <translation>Cos'è questo ?</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2688" />
+      <source>What's This?</source>
+      <translation>Cos'è questo ?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2690" />
       <source>&amp;What's This?</source>
       <translation>C&amp;os'è Questo ?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2689" />
+      <location filename="../UI/UserInterface.py" line="2691" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>Context sensitive help</source>
-      <translation>Help sensibile al contesto</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2696" />
+      <source>Context sensitive help</source>
+      <translation>Help sensibile al contesto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostra helo sensibile al contesto&lt;/b&gt;&lt;p&gt;Nella modalità Cos'è Questo, il cursore del mouse mostra una freccia con un punto interrogativo e puoi premere sugli elementi dell'interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nel dialoghi questa funzionalità è accessibile usando il bottone di help contestuale nella fisestra del titolo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2709" />
-      <source>Helpviewer</source>
-      <translation>Visualizzatore Help</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2711" />
+      <source>Helpviewer</source>
+      <translation>Visualizzatore Help</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2713" />
       <source>&amp;Helpviewer...</source>
       <translation>Visualizzatore &amp;Help...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2714" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2717" />
-      <source>Open the helpviewer window</source>
-      <translation>Apri il visualizzatore di help</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2719" />
+      <source>Open the helpviewer window</source>
+      <translation>Apri il visualizzatore di help</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2739" />
+      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Versions</source>
       <translation>Mostra versione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2740" />
+      <location filename="../UI/UserInterface.py" line="2742" />
       <source>Show &amp;Versions</source>
       <translation>Mostra &amp;Versione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <source>Display version information</source>
-      <translation>Mostra informazioni sulla versione</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2748" />
+      <source>Display version information</source>
+      <translation>Mostra informazioni sulla versione</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostra versioni&lt;/b&gt;&lt;p&gt;Mostra delle informazioni sulla versione.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2754" />
+      <location filename="../UI/UserInterface.py" line="2756" />
       <source>Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2757" />
       <source>&amp;Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2764" />
       <source>Copy version information to the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2765" />
+      <location filename="../UI/UserInterface.py" line="2767" />
       <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2781" />
-      <location filename="../UI/UserInterface.py" line="2774" />
-      <source>Show Error Log</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Show Error &amp;Log...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2783" />
+      <location filename="../UI/UserInterface.py" line="2776" />
+      <source>Show Error Log</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2777" />
+      <source>Show Error &amp;Log...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2785" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
+      <location filename="../UI/UserInterface.py" line="2794" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2795" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
-      <source>Show Installation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Show Installation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4738" />
-      <location filename="../UI/UserInterface.py" line="2811" />
+      <location filename="../UI/UserInterface.py" line="4712" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>Report Bug</source>
       <translation>Segnala Bug</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2811" />
-      <source>Report &amp;Bug...</source>
-      <translation>Segnala &amp;Bug...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2813" />
-      <source>Report a bug</source>
-      <translation>Segnala un bug</translation>
+      <source>Report &amp;Bug...</source>
+      <translation>Segnala &amp;Bug...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2815" />
+      <source>Report a bug</source>
+      <translation>Segnala un bug</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation>&lt;b&gt;&gt;Segnala Bug...&lt;/b&gt;&lt;p&gt;Apre un dialogo per segnalare un bug.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2821" />
+      <location filename="../UI/UserInterface.py" line="2823" />
       <source>Request Feature</source>
       <translation>Richiedi funzionalità</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2824" />
       <source>Request &amp;Feature...</source>
       <translation>Richiedi &amp;funzionalità...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2828" />
-      <source>Send a feature request</source>
-      <translation>Invia una richiesta di funzionalità</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2830" />
+      <source>Send a feature request</source>
+      <translation>Invia una richiesta di funzionalità</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Richiedi funzionalità...&lt;/b&gt;&lt;p&gt;Apre un dialogo per mandare una richiesta di funzionalità.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4174" />
-      <location filename="../UI/UserInterface.py" line="2841" />
-      <source>Testing</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../UI/UserInterface.py" line="4148" />
       <location filename="../UI/UserInterface.py" line="2843" />
+      <source>Testing</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2845" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2849" />
-      <source>Start the testing dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2851" />
+      <source>Start the testing dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
-      <source>Restart Last Test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2864" />
+      <source>Restart Last Test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2866" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2870" />
-      <source>Restarts the last test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2872" />
+      <source>Restarts the last test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2882" />
-      <source>Rerun Failed Tests</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2884" />
+      <source>Rerun Failed Tests</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2886" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
+      <location filename="../UI/UserInterface.py" line="2896" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2906" />
+      <source>Test Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2908" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2914" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2916" />
       <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2923" />
+      <source>Test Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2925" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Run tests of the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2931" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2933" />
       <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
-      <source>Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2942" />
+      <source>Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2944" />
       <source>Qt-&amp;Designer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2950" />
+      <source>Start Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2959" />
-      <source>Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2961" />
+      <source>Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2963" />
       <source>Qt-&amp;Linguist...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2967" />
-      <source>Start Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2969" />
+      <source>Start Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2971" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>UI Previewer</source>
-      <translation>Anteprima UI</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2979" />
+      <source>UI Previewer</source>
+      <translation>Anteprima UI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
       <source>&amp;UI Previewer...</source>
       <translation>Antreprima &amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
-      <source>Start the UI Previewer</source>
-      <translation>Avvia UI Previewer</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2987" />
+      <source>Start the UI Previewer</source>
+      <translation>Avvia UI Previewer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Avvia UI Previewer.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2993" />
-      <source>Translations Previewer</source>
-      <translation>Anteprima traduzioni</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2995" />
+      <source>Translations Previewer</source>
+      <translation>Anteprima traduzioni</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2997" />
       <source>&amp;Translations Previewer...</source>
       <translation>Anteprima &amp;Traduzioni...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <source>Start the Translations Previewer</source>
-      <translation>Avvia l'anteprima delle traduzioni</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3003" />
+      <source>Start the Translations Previewer</source>
+      <translation>Avvia l'anteprima delle traduzioni</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3005" />
       <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Anteprima traduzioni&lt;/b&gt;&lt;p&gt;Avvia l'anteprima delle traduzioni.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3012" />
-      <source>Compare Files</source>
-      <translation>Confronta file</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3014" />
+      <source>Compare Files</source>
+      <translation>Confronta file</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3016" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Confronta file...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
-      <location filename="../UI/UserInterface.py" line="3020" />
+      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3022" />
       <source>Compare two files</source>
       <translation>Confronta due file</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3024" />
       <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Confronta file&lt;/b&gt;&lt;p&gt;Apre un dialogo per confrontare due file.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3031" />
-      <source>Compare Files side by side</source>
-      <translation>Confronta file affiancati</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3033" />
+      <source>Compare Files side by side</source>
+      <translation>Confronta file affiancati</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3035" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3043" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Confronta file affiancati&lt;/b&gt;&lt;p&gt;Apri un dialogo per confrontare due file e mostrare i risultati affiancati.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>SQL Browser</source>
-      <translation>SQL Browser</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3053" />
+      <source>SQL Browser</source>
+      <translation>SQL Browser</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3055" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL &amp;Browser...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>Browse a SQL database</source>
-      <translation>Naviga un database SQL</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3061" />
+      <source>Browse a SQL database</source>
+      <translation>Naviga un database SQL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
       <translation>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Naviga un database SQL.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3075" />
-      <location filename="../UI/UserInterface.py" line="3067" />
-      <source>Mini Editor</source>
-      <translation>Mini Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini &amp;Editor...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <location filename="../UI/UserInterface.py" line="3069" />
+      <source>Mini Editor</source>
+      <translation>Mini Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3071" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini &amp;Editor...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3079" />
       <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Apre un dialogo con un semplice editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3086" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3088" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3090" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3094" />
-      <source>Start the eric Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>Start the eric Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3106" />
-      <source>eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3108" />
+      <source>eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3110" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3114" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3116" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3118" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3126" />
-      <source>FIDO2 Security Key Management</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3128" />
+      <source>FIDO2 Security Key Management</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3130" />
       <source>FIDO2 Security Key Management...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3135" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>Start the FIDO2 Security Key Management tool</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
+      <location filename="../UI/UserInterface.py" line="3140" />
       <source>&lt;b&gt;FIDO2 Security Key Management&lt;/b&gt;&lt;p&gt;Start a tool to manage FIDO2 securit y keys.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Icon Editor</source>
-      <translation>Editor di icone</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3151" />
+      <source>Icon Editor</source>
+      <translation>Editor di icone</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3153" />
       <source>&amp;Icon Editor...</source>
       <translation>Editor di &amp;icone...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
-      <source>Start the eric Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3159" />
+      <source>Start the eric Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3161" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6631" />
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="6605" />
+      <location filename="../UI/UserInterface.py" line="3173" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3173" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <source>Take snapshots of a screen region</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3181" />
+      <source>Take snapshots of a screen region</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3193" />
+      <source>eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>eric PDF &amp;Viewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3199" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3201" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
-      <source>Preferences</source>
-      <translation>Preferenze</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3212" />
+      <source>Preferences</source>
+      <translation>Preferenze</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Preferenze...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Set the prefered configuration</source>
-      <translation>Imposta la configurazione preferita</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3220" />
+      <source>Set the prefered configuration</source>
+      <translation>Imposta la configurazione preferita</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3222" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Preferenze&lt;/b&gt;&lt;p&gt;Imposta i valori di configurazione dell'applicazione ai valori preferiti&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Export Preferences</source>
-      <translation>Esporta preferenze</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3233" />
+      <source>Export Preferences</source>
+      <translation>Esporta preferenze</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;sporta preferenze...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
-      <source>Export the current configuration</source>
-      <translation>Esporta la configurazione attuale</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3241" />
+      <source>Export the current configuration</source>
+      <translation>Esporta la configurazione attuale</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Esporta preferenze&lt;/b&gt;&lt;p&gt;Esporta la configurazione attuale su un file.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
-      <source>Import Preferences</source>
-      <translation>Importa preferenze</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3252" />
+      <source>Import Preferences</source>
+      <translation>Importa preferenze</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
       <source>I&amp;mport Preferences...</source>
       <translation>I&amp;mporta preferenze...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3261" />
       <source>Import a previously exported configuration</source>
       <translation>Importa una configurazione precedentemente esportata</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3262" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importa preferenze&lt;/b&gt;&lt;p&gt;Importa una configurazione precedentemente esportata.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
-      <source>Export Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3273" />
+      <source>Export Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3281" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3290" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3292" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
-      <source>Import a previously exported theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3300" />
+      <source>Import a previously exported theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3302" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload APIs</source>
-      <translation>Ricarica APIs</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload &amp;APIs</source>
-      <translation>Ricarica &amp;APIs</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3311" />
-      <source>Reload the API information</source>
-      <translation>Ricarica le informazioni delle API</translation>
+      <source>Reload APIs</source>
+      <translation>Ricarica APIs</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3311" />
+      <source>Reload &amp;APIs</source>
+      <translation>Ricarica &amp;APIs</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Reload the API information</source>
+      <translation>Ricarica le informazioni delle API</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ricarica APIs&lt;/b&gt;&lt;p&gt;Ricarica le informazioni delle API.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <location filename="../UI/UserInterface.py" line="3319" />
-      <source>Show external tools</source>
-      <translation>Mostra tool esterni</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Show external &amp;tools</source>
-      <translation>Mostra toll &amp;esterni</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3329" />
+      <location filename="../UI/UserInterface.py" line="3321" />
+      <source>Show external tools</source>
+      <translation>Mostra tool esterni</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3323" />
+      <source>Show external &amp;tools</source>
+      <translation>Mostra toll &amp;esterni</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3331" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>View Profiles</source>
-      <translation>Vista Profili</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3341" />
+      <source>View Profiles</source>
+      <translation>Vista Profili</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3343" />
       <source>&amp;View Profiles...</source>
       <translation>&amp;Vista profili...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Configure view profiles</source>
-      <translation>Configura i profili</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Configure view profiles</source>
+      <translation>Configura i profili</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Vista Profili&lt;/b&gt;&lt;p&gt;Configura la visualizzazione dei profili. Con questo dialogo si possono impostare la visibilità delle varie finestre per i profili predefiniti.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
-      <source>Toolbars</source>
-      <translation>Toolbars</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3362" />
+      <source>Toolbars</source>
+      <translation>Toolbars</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3364" />
       <source>Tool&amp;bars...</source>
       <translation>Tool&amp;bars...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
-      <source>Configure toolbars</source>
-      <translation>Configura toolbars</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3370" />
+      <source>Configure toolbars</source>
+      <translation>Configura toolbars</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3372" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configura le toolbars. Con questo dialogo puoi cambiare le azioni mostrate sulle varie toolbar e definire le tue.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
-      <source>Keyboard Shortcuts</source>
-      <translation>Scorciatoie da tastiera</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3383" />
+      <source>Keyboard Shortcuts</source>
+      <translation>Scorciatoie da tastiera</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>&amp;Scorciatoie da tastiera...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3389" />
-      <source>Set the keyboard shortcuts</source>
-      <translation>Imposta le scorciatoie da tastiera</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3391" />
+      <source>Set the keyboard shortcuts</source>
+      <translation>Imposta le scorciatoie da tastiera</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Imposta le scorciatoie da tastiera dell'applicazione con i valori personalizzati.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7600" />
-      <location filename="../UI/UserInterface.py" line="7581" />
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7555" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Esporta scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Esporta scorciatoie da tastiera...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Esporta le scorciatoie da tastiera</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3411" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Esporta le scorciatoie da tastiera</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3413" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Esporta scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Esporta le scorciatoie da tastiera dell'applicazione.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7619" />
-      <location filename="../UI/UserInterface.py" line="3420" />
+      <location filename="../UI/UserInterface.py" line="7593" />
+      <location filename="../UI/UserInterface.py" line="3422" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importa scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Importa scorciatoie da tastiera...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3428" />
-      <source>Import the keyboard shortcuts</source>
-      <translation>Importa le scorciatoie da tastiera</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3430" />
+      <source>Import the keyboard shortcuts</source>
+      <translation>Importa le scorciatoie da tastiera</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3432" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importa scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Importa le scorciatoie da tastiera dell'applicazione.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3440" />
-      <source>Manage SSL Certificates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3442" />
+      <source>Manage SSL Certificates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3444" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Manage the saved SSL certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3454" />
       <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3462" />
-      <source>Edit Message Filters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3464" />
+      <source>Edit Message Filters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3466" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3474" />
+      <location filename="../UI/UserInterface.py" line="3476" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <location filename="../UI/UserInterface.py" line="3487" />
-      <location filename="../UI/UserInterface.py" line="3485" />
-      <source>Clear private data</source>
-      <translation type="unfinished">Pulisci dati privati</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3489" />
+      <location filename="../UI/UserInterface.py" line="3487" />
+      <source>Clear private data</source>
+      <translation type="unfinished">Pulisci dati privati</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3506" />
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3508" />
+      <location filename="../UI/UserInterface.py" line="3507" />
       <source>Activate current editor</source>
       <translation>Attiva editor corrente</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3507" />
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3518" />
-      <location filename="../UI/UserInterface.py" line="3517" />
+      <location filename="../UI/UserInterface.py" line="3520" />
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>Show next</source>
       <translation>Mostra successivo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3519" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3530" />
-      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <source>Show previous</source>
       <translation>Mostra precedente</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3533" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3542" />
-      <location filename="../UI/UserInterface.py" line="3541" />
+      <location filename="../UI/UserInterface.py" line="3544" />
+      <location filename="../UI/UserInterface.py" line="3543" />
       <source>Switch between tabs</source>
       <translation>Cicla tra le linguette</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3543" />
+      <location filename="../UI/UserInterface.py" line="3545" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3553" />
-      <source>Plugin Infos</source>
-      <translation>Informazioni su Plugin</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3555" />
+      <source>Plugin Infos</source>
+      <translation>Informazioni su Plugin</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>&amp;Plugin Infos...</source>
       <translation>Informazioni su &amp;Plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3561" />
-      <source>Show Plugin Infos</source>
-      <translation>Mostra informazioni sui Plugin</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3563" />
+      <source>Show Plugin Infos</source>
+      <translation>Mostra informazioni sui Plugin</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3565" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Informazioni sui Plugin...&lt;/b&gt;&lt;p&gt;Apre un dialogo per mostrare le informazioni sul plugin caricati.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3581" />
-      <location filename="../UI/UserInterface.py" line="3573" />
-      <source>Install Plugins</source>
-      <translation>Installa Plugin</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3575" />
-      <source>&amp;Install Plugins...</source>
-      <translation>&amp;Installa Plugin...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <source>Install Plugins</source>
+      <translation>Installa Plugin</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>&amp;Install Plugins...</source>
+      <translation>&amp;Installa Plugin...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Installa Plugin...&lt;b&gt;&lt;p&gt;Apre un dialogo per installare o aggiornare i plugin.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3600" />
-      <location filename="../UI/UserInterface.py" line="3592" />
-      <source>Uninstall Plugin</source>
-      <translation>Disinstalla Plugin</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>Disinstalla Pl&amp;ugin...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3602" />
+      <location filename="../UI/UserInterface.py" line="3594" />
+      <source>Uninstall Plugin</source>
+      <translation>Disinstalla Plugin</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3596" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>Disinstalla Pl&amp;ugin...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Disinstalla Plugin...&lt;/b&gt;&lt;p&gt;Apre un dialogo per disinstallare un plugin.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3615" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Repository Plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3619" />
-      <source>Show Plugins available for download</source>
-      <translation>Mostra Plugin disponibili per il download</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3621" />
+      <source>Show Plugins available for download</source>
+      <translation>Mostra Plugin disponibili per il download</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3623" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Repository Plugin...&lt;/b&gt;&lt;p&gt;Apre un dialogo che mostra i plugin disponibili.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3651" />
-      <location filename="../UI/UserInterface.py" line="3650" />
+      <location filename="../UI/UserInterface.py" line="3653" />
+      <location filename="../UI/UserInterface.py" line="3652" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished">Documentazione Qt4 {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>Open Qt5 Documentation</source>
-      <translation type="unfinished">Apri documentazione su Qt4 {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3659" />
+      <source>Open Qt5 Documentation</source>
+      <translation type="unfinished">Apri documentazione su Qt4 {5 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3672" />
-      <location filename="../UI/UserInterface.py" line="3671" />
+      <location filename="../UI/UserInterface.py" line="3674" />
+      <location filename="../UI/UserInterface.py" line="3673" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Documentazione Qt4 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3678" />
-      <source>Open Qt6 Documentation</source>
-      <translation type="unfinished">Apri documentazione su Qt4 {6 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3680" />
+      <source>Open Qt6 Documentation</source>
+      <translation type="unfinished">Apri documentazione su Qt4 {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3682" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3693" />
-      <location filename="../UI/UserInterface.py" line="3692" />
+      <location filename="../UI/UserInterface.py" line="3695" />
+      <location filename="../UI/UserInterface.py" line="3694" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3699" />
-      <source>Open PyQt5 Documentation</source>
-      <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Open PyQt5 Documentation</source>
+      <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3714" />
-      <location filename="../UI/UserInterface.py" line="3713" />
+      <location filename="../UI/UserInterface.py" line="3716" />
+      <location filename="../UI/UserInterface.py" line="3715" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">Documentazione PyQt4 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3720" />
-      <source>Open PyQt6 Documentation</source>
-      <translation type="unfinished">Apri documentazione su PyQt4 {6 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3722" />
+      <source>Open PyQt6 Documentation</source>
+      <translation type="unfinished">Apri documentazione su PyQt4 {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3724" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3740" />
-      <location filename="../UI/UserInterface.py" line="3739" />
+      <location filename="../UI/UserInterface.py" line="3742" />
+      <location filename="../UI/UserInterface.py" line="3741" />
       <source>Python 3 Documentation</source>
       <translation>Documentazione Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3746" />
-      <source>Open Python 3 Documentation</source>
-      <translation>Apri documentazione Python 3</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3748" />
+      <source>Open Python 3 Documentation</source>
+      <translation>Apri documentazione Python 3</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3750" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3767" />
-      <location filename="../UI/UserInterface.py" line="3766" />
+      <location filename="../UI/UserInterface.py" line="3769" />
+      <location filename="../UI/UserInterface.py" line="3768" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3773" />
-      <source>Open eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3775" />
+      <source>Open eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3777" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3793" />
-      <location filename="../UI/UserInterface.py" line="3792" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3799" />
-      <source>Open PySide2 Documentation</source>
+      <location filename="../UI/UserInterface.py" line="3795" />
+      <location filename="../UI/UserInterface.py" line="3794" />
+      <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3801" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3819" />
-      <location filename="../UI/UserInterface.py" line="3818" />
-      <source>PySide6 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3825" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3827" />
+      <location filename="../UI/UserInterface.py" line="3803" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3863" />
+      <location filename="../UI/UserInterface.py" line="3839" />
       <source>Sessions</source>
       <translation type="unfinished">Sessioni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3944" />
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3954" />
+      <location filename="../UI/UserInterface.py" line="3930" />
       <source>Wi&amp;zards</source>
       <translation>Wi&amp;zards</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3948" />
       <source>P&amp;lugins</source>
       <translation>P&amp;lugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="3957" />
       <source>Configure...</source>
       <translation>Configura...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3990" />
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="3983" />
       <source>Select Tool Group</source>
       <translation>Seleziona Tool Group</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4018" />
+      <location filename="../UI/UserInterface.py" line="3994" />
       <source>Se&amp;ttings</source>
       <translation>Impos&amp;tazioni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4051" />
+      <location filename="../UI/UserInterface.py" line="4027" />
       <source>&amp;Window</source>
       <translation>&amp;Finestre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4060" />
+      <location filename="../UI/UserInterface.py" line="4036" />
       <source>&amp;Windows</source>
       <translation type="unfinished">&amp;Finestre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4064" />
+      <location filename="../UI/UserInterface.py" line="4040" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4068" />
+      <location filename="../UI/UserInterface.py" line="4044" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4087" />
+      <location filename="../UI/UserInterface.py" line="4063" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4106" />
+      <location filename="../UI/UserInterface.py" line="4082" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4090" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="4096" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Toolbar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4133" />
+      <location filename="../UI/UserInterface.py" line="4109" />
       <source>&amp;Help</source>
       <translation>&amp;Help</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4190" />
-      <location filename="../UI/UserInterface.py" line="4173" />
+      <location filename="../UI/UserInterface.py" line="4164" />
+      <location filename="../UI/UserInterface.py" line="4147" />
       <source>Tools</source>
       <translation>Strumenti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4192" />
-      <location filename="../UI/UserInterface.py" line="4177" />
+      <location filename="../UI/UserInterface.py" line="4166" />
+      <location filename="../UI/UserInterface.py" line="4151" />
       <source>Settings</source>
       <translation>Impostazioni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6361" />
-      <location filename="../UI/UserInterface.py" line="4193" />
-      <location filename="../UI/UserInterface.py" line="4178" />
+      <location filename="../UI/UserInterface.py" line="6335" />
+      <location filename="../UI/UserInterface.py" line="4167" />
+      <location filename="../UI/UserInterface.py" line="4152" />
       <source>Help</source>
       <translation>Aiuto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4194" />
-      <location filename="../UI/UserInterface.py" line="4179" />
+      <location filename="../UI/UserInterface.py" line="4168" />
+      <location filename="../UI/UserInterface.py" line="4153" />
       <source>Profiles</source>
       <translation>Profili</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4195" />
-      <location filename="../UI/UserInterface.py" line="4180" />
+      <location filename="../UI/UserInterface.py" line="4169" />
+      <location filename="../UI/UserInterface.py" line="4154" />
       <source>Plugins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4191" />
+      <location filename="../UI/UserInterface.py" line="4165" />
       <source>Unittest</source>
       <translation>Unittest</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4368" />
+      <location filename="../UI/UserInterface.py" line="4342" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Questa zona della barra di stato mostra il linguaggio usato dall'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4377" />
+      <location filename="../UI/UserInterface.py" line="4351" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Questa zona della barra di stato mostra l'encoding usato dall'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4386" />
+      <location filename="../UI/UserInterface.py" line="4360" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Questa zona della barra di stato mostra l'eol usato dall'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4395" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Questa zona della barra di stato mostra la possibilità di scrittura del file.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4404" />
+      <location filename="../UI/UserInterface.py" line="4378" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Questa parte della barra di stato mostra il numero di linea.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
+      <location filename="../UI/UserInterface.py" line="4387" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Questa parte della barra di stato mostra la posizione del cursore.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4427" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4501" />
-      <location filename="../UI/UserInterface.py" line="4460" />
+      <location filename="../UI/UserInterface.py" line="4475" />
+      <location filename="../UI/UserInterface.py" line="4434" />
       <source>External Tools/{0}</source>
       <translation>Tool Esterni/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4609" />
+      <location filename="../UI/UserInterface.py" line="4583" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation type="unfinished">&lt;h3&gt;Numeri di versione&lt;/h3&gt;&lt;table&gt; {2&gt;?} {2&gt;?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4679" />
+      <location filename="../UI/UserInterface.py" line="4653" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4683" />
+      <location filename="../UI/UserInterface.py" line="4657" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4739" />
+      <location filename="../UI/UserInterface.py" line="4713" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>L'indirizzo di posta o il server si posta sono vuoti. Per cortesia configura le opzioni per l'Email nel dialogo delle preferenze.</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5048" />
+      <source>Restart application</source>
+      <translation>Riavvia applicazione</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5049" />
+      <source>The application needs to be restarted. Do it now?</source>
+      <translation>L'applicazione necessita di un riavvio. Farlo ora ?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5073" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5074" />
-      <source>Restart application</source>
-      <translation>Riavvia applicazione</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5075" />
-      <source>The application needs to be restarted. Do it now?</source>
-      <translation>L'applicazione necessita di un riavvio. Farlo ora ?</translation>
+      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+
+Shall the upgrade be done now?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5098" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5099" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5100" />
-      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5124" />
-      <source>Upgrade Eric</source>
+      <source>Upgrade Eric and PyQt6</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5125" />
-      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
-
-Shall the upgrade be done now?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5150" />
-      <source>Upgrade Eric and PyQt6</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5151" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5213" />
+      <location filename="../UI/UserInterface.py" line="5187" />
       <source>&amp;Builtin Tools</source>
       <translation>Tool &amp;Builtin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5233" />
+      <location filename="../UI/UserInterface.py" line="5207" />
       <source>&amp;Plugin Tools</source>
       <translation>Informazioni sui &amp;Plugin Tools</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5210" />
+      <source>&amp;User Tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5236" />
-      <source>&amp;User Tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5262" />
       <source>Configure Tool Groups ...</source>
       <translation>Configura Tools Groups...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5266" />
+      <location filename="../UI/UserInterface.py" line="5240" />
       <source>Configure current Tool Group ...</source>
       <translation>Configura Tools Groups correnti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5305" />
-      <location filename="../UI/UserInterface.py" line="5285" />
+      <location filename="../UI/UserInterface.py" line="5279" />
+      <location filename="../UI/UserInterface.py" line="5259" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5381" />
+      <location filename="../UI/UserInterface.py" line="5355" />
       <source>&amp;Show all</source>
       <translation>Mo&amp;stra tutti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5383" />
+      <location filename="../UI/UserInterface.py" line="5357" />
       <source>&amp;Hide all</source>
       <translation>Nascondi &amp;tutti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6498" />
-      <location filename="../UI/UserInterface.py" line="6487" />
-      <location filename="../UI/UserInterface.py" line="6439" />
-      <location filename="../UI/UserInterface.py" line="6429" />
-      <location filename="../UI/UserInterface.py" line="6252" />
-      <location filename="../UI/UserInterface.py" line="6242" />
-      <location filename="../UI/UserInterface.py" line="6184" />
-      <location filename="../UI/UserInterface.py" line="6174" />
+      <location filename="../UI/UserInterface.py" line="6472" />
+      <location filename="../UI/UserInterface.py" line="6461" />
+      <location filename="../UI/UserInterface.py" line="6413" />
+      <location filename="../UI/UserInterface.py" line="6403" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6216" />
+      <location filename="../UI/UserInterface.py" line="6158" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <source>Problem</source>
       <translation>Problema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6499" />
-      <location filename="../UI/UserInterface.py" line="6488" />
-      <location filename="../UI/UserInterface.py" line="6440" />
-      <location filename="../UI/UserInterface.py" line="6430" />
-      <location filename="../UI/UserInterface.py" line="6253" />
-      <location filename="../UI/UserInterface.py" line="6243" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6175" />
+      <location filename="../UI/UserInterface.py" line="6473" />
+      <location filename="../UI/UserInterface.py" line="6462" />
+      <location filename="../UI/UserInterface.py" line="6414" />
+      <location filename="../UI/UserInterface.py" line="6404" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non esiste o ha lunghezza zero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6740" />
-      <location filename="../UI/UserInterface.py" line="6651" />
-      <location filename="../UI/UserInterface.py" line="6534" />
-      <location filename="../UI/UserInterface.py" line="6511" />
-      <location filename="../UI/UserInterface.py" line="6452" />
-      <location filename="../UI/UserInterface.py" line="6399" />
-      <location filename="../UI/UserInterface.py" line="6377" />
-      <location filename="../UI/UserInterface.py" line="6328" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6275" />
-      <location filename="../UI/UserInterface.py" line="6216" />
-      <location filename="../UI/UserInterface.py" line="6207" />
+      <location filename="../UI/UserInterface.py" line="6714" />
+      <location filename="../UI/UserInterface.py" line="6625" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6302" />
+      <location filename="../UI/UserInterface.py" line="6293" />
+      <location filename="../UI/UserInterface.py" line="6258" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6190" />
+      <location filename="../UI/UserInterface.py" line="6181" />
       <source>Process Generation Error</source>
       <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6208" />
+      <location filename="../UI/UserInterface.py" line="6182" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare Qt-Designer.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6191" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6250" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare Qt-Linguist.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6285" />
+      <location filename="../UI/UserInterface.py" line="6259" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6320" />
+      <location filename="../UI/UserInterface.py" line="6294" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare Qt-Assistant.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6303" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6362" />
+      <location filename="../UI/UserInterface.py" line="6336" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>Attualmente nessun visualizzatore personalizzato è selezionato. Per favore usa il dialogo delle preferenze per specificarne uno.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6378" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare il visualizzatore personalizzato.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6374" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare il visualizzatore di help.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6453" />
+      <location filename="../UI/UserInterface.py" line="6427" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare UI Previewer.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6512" />
+      <location filename="../UI/UserInterface.py" line="6486" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare l'anteprima delle traduzioni.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6535" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare SQL Browser.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6632" />
+      <location filename="../UI/UserInterface.py" line="6606" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6652" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6685" />
-      <location filename="../UI/UserInterface.py" line="6675" />
+      <location filename="../UI/UserInterface.py" line="6659" />
+      <location filename="../UI/UserInterface.py" line="6649" />
       <source>External Tools</source>
       <translation>Tool esterni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6676" />
+      <location filename="../UI/UserInterface.py" line="6650" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation>Nessun elemento per il tool esterno '{0}' trovato nel gruppo '{1}'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6686" />
+      <location filename="../UI/UserInterface.py" line="6660" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>Nessun gruppo '{0}' trovato.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6723" />
+      <location filename="../UI/UserInterface.py" line="6697" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Avvio processo '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6741" />
+      <location filename="../UI/UserInterface.py" line="6715" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare l'elemento degli strumenti &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6820" />
+      <location filename="../UI/UserInterface.py" line="6794" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Il processo '{0}' è terminato.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7108" />
-      <location filename="../UI/UserInterface.py" line="7046" />
-      <location filename="../UI/UserInterface.py" line="7002" />
-      <location filename="../UI/UserInterface.py" line="6928" />
-      <location filename="../UI/UserInterface.py" line="6864" />
+      <location filename="../UI/UserInterface.py" line="7082" />
+      <location filename="../UI/UserInterface.py" line="7020" />
+      <location filename="../UI/UserInterface.py" line="6976" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6838" />
       <source>Documentation Missing</source>
       <translation>Documentazione mancante</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7109" />
-      <location filename="../UI/UserInterface.py" line="7047" />
-      <location filename="../UI/UserInterface.py" line="7003" />
-      <location filename="../UI/UserInterface.py" line="6929" />
-      <location filename="../UI/UserInterface.py" line="6865" />
+      <location filename="../UI/UserInterface.py" line="7083" />
+      <location filename="../UI/UserInterface.py" line="7021" />
+      <location filename="../UI/UserInterface.py" line="6977" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6839" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'inizio della documentazione "&lt;b&gt;{0}&lt;/b&gt;" non viene trovato.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7090" />
-      <location filename="../UI/UserInterface.py" line="6972" />
+      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="6946" />
       <source>Documentation</source>
       <translation>Documentazione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6973" />
+      <location filename="../UI/UserInterface.py" line="6947" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7091" />
+      <location filename="../UI/UserInterface.py" line="7065" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7270" />
-      <location filename="../UI/UserInterface.py" line="7206" />
+      <location filename="../UI/UserInterface.py" line="7244" />
+      <location filename="../UI/UserInterface.py" line="7180" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7207" />
+      <location filename="../UI/UserInterface.py" line="7181" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7271" />
+      <location filename="../UI/UserInterface.py" line="7245" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7595" />
+      <location filename="../UI/UserInterface.py" line="7557" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7601" />
+      <location filename="../UI/UserInterface.py" line="7575" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7805" />
+      <location filename="../UI/UserInterface.py" line="7779" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7808" />
+      <location filename="../UI/UserInterface.py" line="7782" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7845" />
+      <location filename="../UI/UserInterface.py" line="7819" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7846" />
+      <location filename="../UI/UserInterface.py" line="7820" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file sessione &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7869" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7894" />
-      <location filename="../UI/UserInterface.py" line="7871" />
+      <location filename="../UI/UserInterface.py" line="7868" />
+      <location filename="../UI/UserInterface.py" line="7845" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8400" />
+      <location filename="../UI/UserInterface.py" line="8374" />
       <source>Drop Error</source>
       <translation>Errore Drop</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8401" />
+      <location filename="../UI/UserInterface.py" line="8375" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; non è un file.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8598" />
+      <location filename="../UI/UserInterface.py" line="8550" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8551" />
+      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8599" />
-      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
       <source>First time usage</source>
       <translation>Primo avvio</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8600" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8622" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished">Seleziona cartella di lavoro</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8790" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8791" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_pt.ts	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/i18n/eric7_pt.ts	Sun Apr 13 14:46:18 2025 +0200
@@ -1740,47 +1740,47 @@
   <context>
     <name>BackgroundService</name>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="168" />
+      <location filename="../Utilities/BackgroundService.py" line="169" />
       <source>{0} not configured.</source>
       <translation>{0} sem configurar.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="230" />
-      <source>Initialization of Background Service</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>Initialization of Background Service</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="232" />
       <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="244" />
-      <source>Restart background client?</source>
-      <translation>Reiniciar cliente de fundo?</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="245" />
+      <source>Restart background client?</source>
+      <translation>Reiniciar cliente de fundo?</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="246" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O cliente de fundo para &lt;b&gt;{0}&lt;/b&gt; parou devido a uma exceção. Usa-se por varios complementos tais como os diferentes verificadores.&lt;/p&gt;&lt;p&gt;Selecionar&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Sim'&lt;/b&gt; para reiniciar o cliente mas abandona o último trabalho&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Reintentar'&lt;/b&gt; para reiniciar o cliente e o último trabalho&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Não'&lt;/b&gt; para deixar o cliente apagado.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Nota: O cliente pode reiniciar-se abrindo e confirmando a caixa de diálogo de preferências ou recarregando/alterando o projeto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="274" />
+      <location filename="../Utilities/BackgroundService.py" line="275" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="515" />
+      <location filename="../Utilities/BackgroundService.py" line="516" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished">Cliente de fundo de Eric desconectou-se por motivo desconhecido.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="524" />
-      <source>Background client disconnected.</source>
-      <translation>Cliente de fundo desconectado.</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="525" />
+      <source>Background client disconnected.</source>
+      <translation>Cliente de fundo desconectado.</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="526" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation>Cliente de fundo para &lt;b&gt;{0}&lt;/b&gt; desconetou-se por um motivo desconhecido. &lt;br&gt;Deveria reiniciar-se?</translation>
     </message>
@@ -3772,7 +3772,7 @@
       <translation>Pressionar para limpar a lista de anfitriões</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="526" />
+      <location filename="../Cooperation/ChatWidget.py" line="528" />
       <location filename="../Cooperation/ChatWidget.ui" line="0" />
       <source>Clear</source>
       <translation>Limpar</translation>
@@ -3803,152 +3803,152 @@
       <translation>Mostrar o estado do servidor</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="322" />
+      <location filename="../Cooperation/ChatWidget.py" line="324" />
       <location filename="../Cooperation/ChatWidget.py" line="85" />
       <source>Start Server</source>
       <translation>Iniciar Servidor</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="153" />
+      <location filename="../Cooperation/ChatWidget.py" line="155" />
       <source>! Unknown command: {0}
 </source>
       <translation>!Commando desconhecido: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="176" />
+      <location filename="../Cooperation/ChatWidget.py" line="178" />
       <source>* {0} has joined.
 </source>
       <translation>* {0} juntou-se.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="193" />
+      <location filename="../Cooperation/ChatWidget.py" line="195" />
       <source>New User</source>
       <translation>Novo Usuário</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="194" />
+      <location filename="../Cooperation/ChatWidget.py" line="196" />
       <source>{0} has joined.</source>
       <translation>{0} juntou-se.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="217" />
+      <location filename="../Cooperation/ChatWidget.py" line="219" />
       <source>* {0} has left.
 </source>
       <translation>* {0} foi embora.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="226" />
+      <location filename="../Cooperation/ChatWidget.py" line="228" />
       <source>User Left</source>
       <translation>Usuário Foi Embora</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="227" />
+      <location filename="../Cooperation/ChatWidget.py" line="229" />
       <source>{0} has left.</source>
       <translation>{0} foi embora.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="255" />
+      <location filename="../Cooperation/ChatWidget.py" line="257" />
       <source>Message from &lt;{0}&gt;</source>
       <translation>Mensagem de &lt;{0}&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="330" />
+      <location filename="../Cooperation/ChatWidget.py" line="332" />
       <source>Stop Server</source>
       <translation>Parar Servidor</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="336" />
+      <location filename="../Cooperation/ChatWidget.py" line="338" />
       <source>! Server Error: {0}
 </source>
       <translation>!Erro do Servidor: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="347" />
+      <location filename="../Cooperation/ChatWidget.py" line="349" />
       <source>Disconnect</source>
       <translation>Desconetar</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="351" />
+      <location filename="../Cooperation/ChatWidget.py" line="353" />
       <source>Connect</source>
       <translation>Conetar</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="515" />
+      <location filename="../Cooperation/ChatWidget.py" line="517" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="519" />
+      <location filename="../Cooperation/ChatWidget.py" line="521" />
       <source>Cut all</source>
       <translation>Cortar tudo</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="522" />
+      <location filename="../Cooperation/ChatWidget.py" line="524" />
       <source>Copy all</source>
       <translation>Copiar tudo</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="530" />
+      <location filename="../Cooperation/ChatWidget.py" line="532" />
       <source>Save</source>
       <translation>Gravar</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="588" />
-      <location filename="../Cooperation/ChatWidget.py" line="573" />
+      <location filename="../Cooperation/ChatWidget.py" line="590" />
+      <location filename="../Cooperation/ChatWidget.py" line="575" />
       <source>Save Chat</source>
       <translation>Gravar Chat</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="575" />
+      <location filename="../Cooperation/ChatWidget.py" line="577" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation>Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="589" />
+      <location filename="../Cooperation/ChatWidget.py" line="591" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="604" />
+      <location filename="../Cooperation/ChatWidget.py" line="606" />
       <source>Error saving Chat</source>
       <translation>Erro ao gravar Chat</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="605" />
+      <location filename="../Cooperation/ChatWidget.py" line="607" />
       <source>&lt;p&gt;The chat contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Não se pode escrever o conteúdo do chat em &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="644" />
+      <location filename="../Cooperation/ChatWidget.py" line="646" />
       <source>Kick User</source>
       <translation>Expulsar Usuário</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="648" />
+      <location filename="../Cooperation/ChatWidget.py" line="650" />
       <source>Ban User</source>
       <translation>Banir Usuário</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="652" />
+      <location filename="../Cooperation/ChatWidget.py" line="654" />
       <source>Ban and Kick User</source>
       <translation>Banir e Expulsar Usuário</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="683" />
+      <location filename="../Cooperation/ChatWidget.py" line="685" />
       <source>* {0} has been kicked.
 </source>
       <translation>* {0} foi expulsado.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="700" />
+      <location filename="../Cooperation/ChatWidget.py" line="702" />
       <source>* {0} has been banned.
 </source>
       <translation>* {0} foi baneado.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="717" />
+      <location filename="../Cooperation/ChatWidget.py" line="719" />
       <source>* {0} has been banned and kicked.
 </source>
       <translation>* {0} foi baneado ou expulso.</translation>
@@ -4896,32 +4896,32 @@
   <context>
     <name>CodeDocumentationViewer</name>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="220" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="222" />
       <source>Code Info Provider:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="238" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="240" />
       <source>Select the code info provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="239" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="241" />
       <source>&lt;disabled&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="420" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="422" />
       <source>No documentation available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="441" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="443" />
       <source>No source code documentation provider has been registered. This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="449" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="451" />
       <source>This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
@@ -8835,10 +8835,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="608" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="505" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="467" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="455" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="604" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="501" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="463" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="451" />
       <location filename="../Project/CreateDialogCodeDialog.py" line="419" />
       <source>Code Generation</source>
       <translation>Geração de Código</translation>
@@ -8849,22 +8849,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="456" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="452" />
       <source>&lt;p&gt;No code template file available for project type "{0}".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="468" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="464" />
       <source>&lt;p&gt;Could not open the code template file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Não se pode abrir o ficheiro modelo de código "{0}"&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="506" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="502" />
       <source>&lt;p&gt;Could not open the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Não se pode abrir o ficheiro fonte "{0}".&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="609" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="605" />
       <source>&lt;p&gt;Could not write the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Não se pode escrever o ficheiro fonte "{0}".&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -9371,676 +9371,676 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="207" />
+      <location filename="../Debugger/DebugUI.py" line="210" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="234" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="237" />
       <source>Run Script</source>
       <translation>Executar Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="236" />
+      <location filename="../Debugger/DebugUI.py" line="239" />
       <source>&amp;Run Script...</source>
       <translation>&amp;Executar Script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="242" />
+      <location filename="../Debugger/DebugUI.py" line="245" />
       <source>Run the current Script</source>
       <translation>Executar o Script atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="244" />
+      <location filename="../Debugger/DebugUI.py" line="247" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Executar Script&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e executar o script fora do depurador. Poderão gravar-se primeiro as alterações que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2386" />
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="255" />
+      <location filename="../Debugger/DebugUI.py" line="2389" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="258" />
       <source>Run Project</source>
       <translation>Executar Projeto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="257" />
+      <location filename="../Debugger/DebugUI.py" line="260" />
       <source>Run &amp;Project...</source>
       <translation>Executar &amp;Projeto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="263" />
+      <location filename="../Debugger/DebugUI.py" line="266" />
       <source>Run the current Project</source>
       <translation>Executar Projeto actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="265" />
+      <location filename="../Debugger/DebugUI.py" line="268" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Executar Projeto&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e executar o projeto atual fora do depurador. Poderão gravar-se primeiro as alterações dos ficheiros do projeto que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="277" />
+      <location filename="../Debugger/DebugUI.py" line="280" />
       <source>Coverage run of Script</source>
       <translation>Execução Cobertura de Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="279" />
+      <location filename="../Debugger/DebugUI.py" line="282" />
       <source>Coverage run of Script...</source>
       <translation>Execução Cobertura de Script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="286" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Realizar execução de cobertura do Script actual</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Realizar execução de cobertura do Script actual</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="300" />
+      <location filename="../Debugger/DebugUI.py" line="303" />
       <source>Coverage run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="302" />
+      <location filename="../Debugger/DebugUI.py" line="305" />
       <source>Coverage run of Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="309" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="324" />
+      <location filename="../Debugger/DebugUI.py" line="327" />
       <source>Profile Script</source>
       <translation>Perfilar Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="326" />
+      <location filename="../Debugger/DebugUI.py" line="329" />
       <source>Profile Script...</source>
       <translation>Perfilar Script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="332" />
+      <location filename="../Debugger/DebugUI.py" line="335" />
       <source>Profile the current Script</source>
       <translation>Perfilar o Script atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="334" />
+      <location filename="../Debugger/DebugUI.py" line="337" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfilar Script&lt;/b&gt;&lt;p&gt;Define os argumentos da linha de comandos e perfila o script. Antes, poderá gravar as alterações.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="344" />
+      <location filename="../Debugger/DebugUI.py" line="347" />
       <source>Profile Project</source>
       <translation>Perfilar Projeto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="346" />
+      <location filename="../Debugger/DebugUI.py" line="349" />
       <source>Profile Project...</source>
       <translation>Perfilar Projeto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="352" />
+      <location filename="../Debugger/DebugUI.py" line="355" />
       <source>Profile the current Project</source>
       <translation>Perfilar o Projeto atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="354" />
+      <location filename="../Debugger/DebugUI.py" line="357" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfilar Projeto&lt;/b&gt;&lt;p&gt;Define os argumentos da linha de comandos e perfila o projeto atual. Poderá gravar antes os ficheiros alterados por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="365" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="368" />
       <source>Debug Script</source>
       <translation>Depurar Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="367" />
+      <location filename="../Debugger/DebugUI.py" line="370" />
       <source>&amp;Debug Script...</source>
       <translation>&amp;Depurar Script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="373" />
+      <location filename="../Debugger/DebugUI.py" line="376" />
       <source>Debug the current Script</source>
       <translation>Depurar o Script atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="375" />
+      <location filename="../Debugger/DebugUI.py" line="378" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Depurar Script&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e definir a linha atual para que seja a primeira instrução Python executável da janela do editor atual. Poderão gravar-se primeiro as alterações que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2579" />
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="387" />
+      <location filename="../Debugger/DebugUI.py" line="2582" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="390" />
       <source>Debug Project</source>
       <translation>Depurar projeto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="389" />
+      <location filename="../Debugger/DebugUI.py" line="392" />
       <source>Debug &amp;Project...</source>
       <translation>Depurar &amp;Projeto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="395" />
+      <location filename="../Debugger/DebugUI.py" line="398" />
       <source>Debug the current Project</source>
       <translation>Depurar o Projeto atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="397" />
+      <location filename="../Debugger/DebugUI.py" line="400" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Depurar Projeto&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e definir a linha atual para que seja a primeira instrução Python executável do script principal do projeto atual. Poderão gravar-se primeiro as alterações dos ficheiros do projeto que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2895" />
-      <location filename="../Debugger/DebugUI.py" line="411" />
-      <location filename="../Debugger/DebugUI.py" line="409" />
+      <location filename="../Debugger/DebugUI.py" line="2898" />
+      <location filename="../Debugger/DebugUI.py" line="414" />
+      <location filename="../Debugger/DebugUI.py" line="412" />
       <source>Restart</source>
       <translation>Reiniciar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="417" />
+      <location filename="../Debugger/DebugUI.py" line="420" />
       <source>Restart the last debugged script</source>
       <translation>Reiniciar o último script depurado</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="419" />
+      <location filename="../Debugger/DebugUI.py" line="422" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reiniciar&lt;/b&gt;&lt;p&gt;Define os argumentos da linha de comandos e define a linha atual como a primeira instrução Python executável do último script depurado. Poderão gravar-se primeiro as alterações não gravadas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="628" />
-      <location filename="../Debugger/DebugUI.py" line="433" />
-      <location filename="../Debugger/DebugUI.py" line="431" />
+      <location filename="../Debugger/DebugUI.py" line="631" />
+      <location filename="../Debugger/DebugUI.py" line="436" />
+      <location filename="../Debugger/DebugUI.py" line="434" />
       <source>Stop</source>
       <translation>Parar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="439" />
+      <location filename="../Debugger/DebugUI.py" line="442" />
       <source>Stop the running script.</source>
       <translation>Parar o script em execução.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="441" />
+      <location filename="../Debugger/DebugUI.py" line="444" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Parar&lt;/b&gt;&lt;p&gt;Parar o script em execução na instalação de retaguarda do depurador.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="452" />
+      <location filename="../Debugger/DebugUI.py" line="455" />
       <source>Continue</source>
       <translation>Continuar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="454" />
+      <location filename="../Debugger/DebugUI.py" line="457" />
       <source>&amp;Continue</source>
       <translation>&amp;Continuar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="460" />
+      <location filename="../Debugger/DebugUI.py" line="463" />
       <source>Continue running the program from the current line</source>
       <translation>Continuar a execução do programa a partir da linha atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="462" />
+      <location filename="../Debugger/DebugUI.py" line="465" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continuar a execução do programa a partir da linha atual. O programa parará quando terine ou alcance outro ponto de interrupção.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="473" />
+      <location filename="../Debugger/DebugUI.py" line="476" />
       <source>Continue to Cursor</source>
       <translation>Continuar até ao cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="475" />
+      <location filename="../Debugger/DebugUI.py" line="478" />
       <source>Continue &amp;To Cursor</source>
       <translation>Continuar a&amp;té ao cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="482" />
+      <location filename="../Debugger/DebugUI.py" line="485" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Continuar a execução do programa a partir da linha atual até à posição atual do cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="488" />
+      <location filename="../Debugger/DebugUI.py" line="491" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuar até Cursor&lt;/b&gt;&lt;p&gt;Continuar a execução do programa desde a linha atual até à posição atual do cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="498" />
+      <location filename="../Debugger/DebugUI.py" line="501" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="500" />
+      <location filename="../Debugger/DebugUI.py" line="503" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="507" />
+      <location filename="../Debugger/DebugUI.py" line="510" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="513" />
+      <location filename="../Debugger/DebugUI.py" line="516" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="524" />
+      <location filename="../Debugger/DebugUI.py" line="527" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="526" />
+      <location filename="../Debugger/DebugUI.py" line="529" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="533" />
+      <location filename="../Debugger/DebugUI.py" line="536" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="539" />
+      <location filename="../Debugger/DebugUI.py" line="542" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="553" />
+      <location filename="../Debugger/DebugUI.py" line="556" />
       <source>Single Step</source>
       <translation>Passo Único</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="555" />
+      <location filename="../Debugger/DebugUI.py" line="558" />
       <source>Sin&amp;gle Step</source>
       <translation>Passo &amp;Único</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="561" />
+      <location filename="../Debugger/DebugUI.py" line="564" />
       <source>Execute a single Python statement</source>
       <translation>Executar uma única instrução Python</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="563" />
+      <location filename="../Debugger/DebugUI.py" line="566" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Passo Único&lt;/b&gt;&lt;p&gt;Executa uma.única instrução Python. Se a instrução é um &lt;tt&gt;import&lt;tt&gt;, um construtor de classe, uma chamada de função ou método, então o controlo é devolvido ao depurador na instrução seguinte.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="575" />
+      <location filename="../Debugger/DebugUI.py" line="578" />
       <source>Step Over</source>
       <translation>Saltar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="577" />
+      <location filename="../Debugger/DebugUI.py" line="580" />
       <source>Step &amp;Over</source>
       <translation>&amp;Saltar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="584" />
+      <location filename="../Debugger/DebugUI.py" line="587" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Executar uma única instrução Python e ficar no marco atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="590" />
+      <location filename="../Debugger/DebugUI.py" line="593" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="603" />
+      <location filename="../Debugger/DebugUI.py" line="606" />
       <source>Step Out</source>
       <translation>Sair</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="605" />
+      <location filename="../Debugger/DebugUI.py" line="608" />
       <source>Step Ou&amp;t</source>
       <translation>Sai&amp;r</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="612" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Executar instruções Python até sair do marco atual</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Executar instruções Python até sair do marco atual</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="630" />
+      <location filename="../Debugger/DebugUI.py" line="633" />
       <source>&amp;Stop</source>
       <translation>&amp;Parar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="636" />
+      <location filename="../Debugger/DebugUI.py" line="639" />
       <source>Stop debugging</source>
       <translation>Parar de depurar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="638" />
+      <location filename="../Debugger/DebugUI.py" line="641" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Parar&lt;/b&gt;&lt;p&gt;Parar a sessão de depuração.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="644" />
+      <location filename="../Debugger/DebugUI.py" line="647" />
       <source>Variables Type Filter</source>
       <translation>Filtro do Tipo de Varáveis</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="645" />
+      <location filename="../Debugger/DebugUI.py" line="648" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>Filtro do Tipo de &amp;Variáveis...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="651" />
+      <location filename="../Debugger/DebugUI.py" line="654" />
       <source>Configure variables type filter</source>
       <translation>Configurar o filtro de tipo de variáveis</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="653" />
+      <location filename="../Debugger/DebugUI.py" line="656" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtro de Tipo de Variáveis&lt;/b&gt;&lt;p&gt;Configurar o filtro do tipo de variáveis. Apenas se mostrarão as variáveis que não estejam selecionadas, na janela global ou local, durante a sessão de depuração.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="664" />
+      <location filename="../Debugger/DebugUI.py" line="667" />
       <source>Exceptions Filter</source>
       <translation>Filtro de Exceções</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="665" />
+      <location filename="../Debugger/DebugUI.py" line="668" />
       <source>&amp;Exceptions Filter...</source>
       <translation>Filtro de &amp;Exceções...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="671" />
+      <location filename="../Debugger/DebugUI.py" line="674" />
       <source>Configure exceptions filter</source>
       <translation>Configurar filtro de exceções</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="673" />
+      <location filename="../Debugger/DebugUI.py" line="676" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtro de Exceções&lt;/b&gt;&lt;p&gt;Configurar o filtro de exceções. Apenas os tipos de exceções que estão listadas serão ressaltadas durante a sessão de depuração.&lt;/p&gt;&lt;p&gt;Por favor tenha em conta que todas as exceções sem tratamento serão ressaltadas independentemente da lista do filtro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="685" />
+      <location filename="../Debugger/DebugUI.py" line="688" />
       <source>Ignored Exceptions</source>
       <translation>Exceções Ignoradas</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="686" />
+      <location filename="../Debugger/DebugUI.py" line="689" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>Exceções &amp;Ignoradas...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="692" />
+      <location filename="../Debugger/DebugUI.py" line="695" />
       <source>Configure ignored exceptions</source>
       <translation>Configurar exceções ignoradas</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="694" />
+      <location filename="../Debugger/DebugUI.py" line="697" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exceções Ignoradas&lt;/b&gt;&lt;p&gt;Configura as exceções ignoradas. Apenas os tipos de exceções que não estão listadas são realçadas durante uma sessão de depuração.&lt;/p&gt;&lt;p&gt;Note-se que não se podem ignorar as exceções sem tratamento.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="716" />
-      <location filename="../Debugger/DebugUI.py" line="710" />
-      <location filename="../Debugger/DebugUI.py" line="708" />
+      <location filename="../Debugger/DebugUI.py" line="719" />
+      <location filename="../Debugger/DebugUI.py" line="713" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Toggle Breakpoint</source>
       <translation>Alternar Pontos de Interrupção</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="714" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="718" />
+      <location filename="../Debugger/DebugUI.py" line="721" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Alternar Ponto de Interrupção&lt;/b&gt;&lt;p&gt;Alterna um ponto de instrução na linha atual do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="736" />
-      <location filename="../Debugger/DebugUI.py" line="728" />
+      <location filename="../Debugger/DebugUI.py" line="739" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Edit Breakpoint</source>
       <translation>Editar o Ponto de Interrupção</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="730" />
+      <location filename="../Debugger/DebugUI.py" line="733" />
       <source>Edit Breakpoint...</source>
       <translation>Editar o Ponto de Interrupção...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="734" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="738" />
+      <location filename="../Debugger/DebugUI.py" line="741" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editar Ponto de Interrupção&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para editar as propriedades dos pontos de interrupção. Funciona na linha atual do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="756" />
-      <location filename="../Debugger/DebugUI.py" line="750" />
-      <location filename="../Debugger/DebugUI.py" line="748" />
+      <location filename="../Debugger/DebugUI.py" line="759" />
+      <location filename="../Debugger/DebugUI.py" line="753" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Next Breakpoint</source>
       <translation>Ponto de Interrupção Seguinte</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="754" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="758" />
+      <location filename="../Debugger/DebugUI.py" line="761" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ponto de Interrupção Seguinte&lt;/b&gt;&lt;p&gt;Vai ao próximo ponto de interrupção do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="775" />
-      <location filename="../Debugger/DebugUI.py" line="769" />
-      <location filename="../Debugger/DebugUI.py" line="767" />
+      <location filename="../Debugger/DebugUI.py" line="778" />
+      <location filename="../Debugger/DebugUI.py" line="772" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Previous Breakpoint</source>
       <translation>Ponto de Interrupção Anterior</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="773" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="777" />
+      <location filename="../Debugger/DebugUI.py" line="780" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ponto de Interrupção Anterior&lt;/b&gt;&lt;p&gt;Vai ao ponto de interrupção anterior do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="793" />
-      <location filename="../Debugger/DebugUI.py" line="787" />
-      <location filename="../Debugger/DebugUI.py" line="786" />
+      <location filename="../Debugger/DebugUI.py" line="796" />
+      <location filename="../Debugger/DebugUI.py" line="790" />
+      <location filename="../Debugger/DebugUI.py" line="789" />
       <source>Clear Breakpoints</source>
       <translation>Limpar Pontos de Interrupção</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="795" />
+      <location filename="../Debugger/DebugUI.py" line="798" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Limpar Pontos de Interrupção&lt;/b&gt;&lt;p&gt;Limpar pontos de interrupção dos editores todos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="819" />
+      <location filename="../Debugger/DebugUI.py" line="822" />
       <source>&amp;Debug</source>
       <translation>&amp;Depurar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="821" />
+      <location filename="../Debugger/DebugUI.py" line="824" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="823" />
+      <location filename="../Debugger/DebugUI.py" line="826" />
       <source>&amp;Breakpoints</source>
       <translation>Pontos de &amp;Interrupção</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="866" />
-      <location filename="../Debugger/DebugUI.py" line="864" />
+      <location filename="../Debugger/DebugUI.py" line="869" />
+      <location filename="../Debugger/DebugUI.py" line="867" />
       <source>Start</source>
       <translation>Iniciar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="879" />
-      <location filename="../Debugger/DebugUI.py" line="877" />
+      <location filename="../Debugger/DebugUI.py" line="882" />
+      <location filename="../Debugger/DebugUI.py" line="880" />
       <source>Debug</source>
       <translation>Depurar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1342" />
+      <location filename="../Debugger/DebugUI.py" line="1345" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1348" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1353" />
+      <location filename="../Debugger/DebugUI.py" line="1356" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1365" />
+      <location filename="../Debugger/DebugUI.py" line="1368" />
       <source>Program terminated</source>
       <translation>Programa Terminado</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1401" />
+      <location filename="../Debugger/DebugUI.py" line="1404" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>O programa a depurar tem um erro de sintaxe não especificado.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1421" />
+      <location filename="../Debugger/DebugUI.py" line="1424" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; tem um erro de sintaxe &lt;b&gt;{1}&lt;/b&gt; na linha &lt;b&gt;{2}&lt;/b&gt;, caráter &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1449" />
+      <location filename="../Debugger/DebugUI.py" line="1452" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Ocurreu uma exceção sem tratamento. Ver a janela da shell para mais detalhes.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1498" />
+      <location filename="../Debugger/DebugUI.py" line="1501" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O programa depurado provocou a exceção &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;Ficheiro: &lt;b&gt;{2}&lt;/b&gt;, Linha :&lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Interromper aqui?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1516" />
+      <location filename="../Debugger/DebugUI.py" line="1519" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1532" />
+      <location filename="../Debugger/DebugUI.py" line="1535" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation>&lt;p&gt;O programa depurado provocou a exceção &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1594" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1609" />
+      <location filename="../Debugger/DebugUI.py" line="1612" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>O programa a depurar acabou inesperadamente.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1670" />
+      <location filename="../Debugger/DebugUI.py" line="1673" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1717" />
+      <location filename="../Debugger/DebugUI.py" line="1720" />
       <source>Breakpoint Condition Error</source>
       <translation>Erro de Condição de Ponto de Interrupção</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1718" />
+      <location filename="../Debugger/DebugUI.py" line="1721" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;A condição do ponto de interrupção &lt;b&gt;{0}, {1}&lt;/b&gt;tem um erro de sintaxe.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1779" />
+      <location filename="../Debugger/DebugUI.py" line="1782" />
       <source>Watch Expression Error</source>
       <translation>Observar Erro de Expressão</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1780" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1810" />
+      <location filename="../Debugger/DebugUI.py" line="1813" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1815" />
+      <location filename="../Debugger/DebugUI.py" line="1818" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1821" />
+      <location filename="../Debugger/DebugUI.py" line="1824" />
       <source>Watch expression already exists</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1986" />
-      <location filename="../Debugger/DebugUI.py" line="1977" />
+      <location filename="../Debugger/DebugUI.py" line="1989" />
+      <location filename="../Debugger/DebugUI.py" line="1980" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1979" />
+      <location filename="../Debugger/DebugUI.py" line="1982" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2387" />
-      <location filename="../Debugger/DebugUI.py" line="2189" />
-      <location filename="../Debugger/DebugUI.py" line="1987" />
+      <location filename="../Debugger/DebugUI.py" line="2390" />
+      <location filename="../Debugger/DebugUI.py" line="2192" />
+      <location filename="../Debugger/DebugUI.py" line="1990" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>O projeto atual não tem um script principal definido. A cancelar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2188" />
-      <location filename="../Debugger/DebugUI.py" line="2179" />
+      <location filename="../Debugger/DebugUI.py" line="2191" />
+      <location filename="../Debugger/DebugUI.py" line="2182" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2181" />
+      <location filename="../Debugger/DebugUI.py" line="2184" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2580" />
+      <location filename="../Debugger/DebugUI.py" line="2583" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>O projeto atual não tem um script principal definido. Impossível depurar.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3252" />
+      <location filename="../Debugger/DebugUI.py" line="3255" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -33466,7 +33466,6 @@
   <context>
     <name>HelpDocumentationPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="64" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="60" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="56" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="52" />
@@ -33593,21 +33592,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>Enter the PySide2 documentation directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
@@ -34023,29 +34007,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Documentação de Python 3</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Documentação de Qt5</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Documentação de Qt5 {6 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Documentação de Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">Documentação do PyQt5</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Documentação de Qt5 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="453" />
@@ -34054,76 +34028,79 @@
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="454" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="455" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="512" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="514" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="513" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="701" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="700" />
       <source>Help Engine</source>
       <translation type="unfinished">Motor de Ajuda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="725" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="724" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">A procurar a Documentação...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="736" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="735" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">Gerir Documentação QtHelp</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="764" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="763" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Reindexar a Documentação</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="769" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="768" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="862" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="842" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="861" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="841" />
       <source>Clear History</source>
       <translation type="unfinished">Limpar Histórico</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="966" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="965" />
       <source>Updating search index</source>
       <translation type="unfinished">A atualizar índice de pesquisa</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1024" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1023" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrado por: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1060" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1054" />
       <source>Unfiltered</source>
       <translation type="unfinished">Sem filtrar</translation>
     </message>
+    <message>
+      <source>Qt5 Documentation</source>
+      <translation type="vanished">Documentação de Qt5</translation>
+    </message>
+    <message>
+      <source>PyQt5 Documentation</source>
+      <translation type="vanished">Documentação do PyQt5</translation>
+    </message>
   </context>
   <context>
     <name>HelpViewersPage</name>
@@ -52314,7 +52291,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="415" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="416" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="221" />
       <source>No connection to Internet.</source>
       <translation type="unfinished" />
@@ -52350,24 +52327,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="435" />
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="411" />
-      <source>Error downloading dictionary file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="436" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="412" />
+      <source>Error downloading dictionary file</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="437" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="413" />
       <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="450" />
-      <source>Error downloading dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="451" />
+      <source>Error downloading dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="452" />
       <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -54243,7 +54220,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="459" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="460" />
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
@@ -54259,25 +54236,25 @@
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="192" />
       <source>%n supported serial device(s) detected.</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="205" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="206" />
       <source>{0} - {1} ({2})</source>
       <comment>board name, description, port name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="228" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="229" />
       <source>No supported serial devices detected.</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="233" />
       <source>
 %n unknown device(s) for manual selection.</source>
       <translation type="unfinished">
@@ -54286,17 +54263,17 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="239" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="240" />
       <source>Manual Selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="250" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="251" />
       <source>WebREPL (manual)</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="270" />
       <source>
 %n WebREPL connection(s) defined.</source>
       <translation type="unfinished">
@@ -54304,39 +54281,39 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="329" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="300" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
       <source>Unknown MicroPython Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="302" />
       <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href="mailto:{1}"&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="313" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="314" />
       <source>{0} (0x{1:04x}/0x{2:04x})</source>
       <comment>description, VID, PID</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="331" />
       <source>Would you like to add them to the list of manually configured devices?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="454" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="455" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="491" />
-      <source>No device attached</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="492" />
+      <source>No device attached</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="493" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -54345,353 +54322,353 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="523" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="731" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="718" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="720" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="726" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1198" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1190" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="729" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="730" />
       <source>unknown</source>
       <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="772" />
-      <source>Run Script</source>
-      <translation type="unfinished">Executar Script</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
-      <source>There is no editor open. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
-      <source>The current editor does not contain a script. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
+      <source>Run Script</source>
+      <translation type="unfinished">Executar Script</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="774" />
+      <source>There is no editor open. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="783" />
+      <source>The current editor does not contain a script. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="792" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="827" />
-      <source>Start Chart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="828" />
+      <source>Start Chart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="829" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="843" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="844" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="860" />
-      <source>Unsaved Chart Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="861" />
+      <source>Unsaved Chart Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="862" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="909" />
-      <source>Start File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="910" />
+      <source>Start File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="911" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="930" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="931" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1017" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1018" />
       <source>Downloads</source>
       <translation type="unfinished">Descargas</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
       <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1067" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Implementation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1071" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1079" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1080" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Local Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1083" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1084" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1087" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1088" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1691" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1099" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1091" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1092" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1730" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1727" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1095" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1096" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1503" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1105" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1504" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1106" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1529" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1520" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1109" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1530" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1110" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1130" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1131" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1137" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1140" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1141" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1150" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Configure</source>
       <translation type="unfinished">Configurar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1153" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1154" />
       <source>Quit</source>
       <translation type="unfinished">Sair</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1162" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1163" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1173" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
-      <source>Device Version Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1174" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1170" />
+      <source>Device Version Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1175" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1204" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1205" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1220" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1211" />
-      <source>Device Implementation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
-      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
+      <source>Device Implementation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1213" />
+      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1296" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1297" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1304" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1305" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1320" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1321" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1332" />
-      <source>Local Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1333" />
+      <source>Local Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1334" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1374" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1357" />
-      <source>Date and Time</source>
-      <translation type="unfinished">Data e Hora</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
-      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1375" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
+      <source>Date and Time</source>
+      <translation type="unfinished">Data e Hora</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1359" />
+      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1376" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1399" />
-      <source>Error handling device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1400" />
+      <source>Error handling device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1401" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1442" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1443" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1468" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1469" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Ficheiros Python (*.py);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1478" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1479" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1488" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1489" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1522" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1613" />
-      <source>Add Unknown Devices</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1614" />
+      <source>Add Unknown Devices</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1664" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1665" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1716" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1717" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -54699,17 +54676,17 @@
   <context>
     <name>MicroPythonWindow</name>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="81" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="83" />
       <source>MicroPython / CircuitPython Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Open Browser</source>
       <translation type="unfinished">Abrir Navegador</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Could not start a web browser</source>
       <translation type="unfinished">Não se pôde iniciar um navegador web</translation>
     </message>
@@ -59894,164 +59871,164 @@
   <context>
     <name>Pip</name>
     <message>
-      <location filename="../PipInterface/Pip.py" line="157" />
+      <location filename="../PipInterface/Pip.py" line="161" />
       <source>python exited with an error ({0}).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="166" />
+      <location filename="../PipInterface/Pip.py" line="170" />
       <source>python did not finish within 30 seconds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="168" />
+      <location filename="../PipInterface/Pip.py" line="172" />
       <source>python could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="229" />
+      <location filename="../PipInterface/Pip.py" line="233" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="254" />
+      <location filename="../PipInterface/Pip.py" line="258" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="255" />
+      <location filename="../PipInterface/Pip.py" line="259" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="308" />
+      <location filename="../PipInterface/Pip.py" line="312" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="355" />
+      <location filename="../PipInterface/Pip.py" line="359" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="487" />
-      <location filename="../PipInterface/Pip.py" line="469" />
+      <location filename="../PipInterface/Pip.py" line="491" />
+      <location filename="../PipInterface/Pip.py" line="473" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="470" />
+      <location filename="../PipInterface/Pip.py" line="474" />
       <source>There are no packages except 'eric-ide' or 'PyQt6' left for upgrade.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="533" />
+      <location filename="../PipInterface/Pip.py" line="537" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="564" />
+      <location filename="../PipInterface/Pip.py" line="568" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="586" />
+      <location filename="../PipInterface/Pip.py" line="590" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="621" />
-      <location filename="../PipInterface/Pip.py" line="611" />
+      <location filename="../PipInterface/Pip.py" line="625" />
+      <location filename="../PipInterface/Pip.py" line="615" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="612" />
+      <location filename="../PipInterface/Pip.py" line="753" />
+      <location filename="../PipInterface/Pip.py" line="616" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="622" />
+      <location filename="../PipInterface/Pip.py" line="626" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="642" />
+      <location filename="../PipInterface/Pip.py" line="646" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="776" />
-      <location filename="../PipInterface/Pip.py" line="702" />
-      <location filename="../PipInterface/Pip.py" line="672" />
-      <location filename="../PipInterface/Pip.py" line="663" />
+      <location filename="../PipInterface/Pip.py" line="780" />
+      <location filename="../PipInterface/Pip.py" line="706" />
+      <location filename="../PipInterface/Pip.py" line="676" />
+      <location filename="../PipInterface/Pip.py" line="667" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
-      <location filename="../PipInterface/Pip.py" line="703" />
-      <location filename="../PipInterface/Pip.py" line="664" />
+      <location filename="../PipInterface/Pip.py" line="781" />
+      <location filename="../PipInterface/Pip.py" line="707" />
+      <location filename="../PipInterface/Pip.py" line="668" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="720" />
+      <location filename="../PipInterface/Pip.py" line="724" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="759" />
-      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="763" />
+      <location filename="../PipInterface/Pip.py" line="752" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="760" />
+      <location filename="../PipInterface/Pip.py" line="764" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="787" />
+      <location filename="../PipInterface/Pip.py" line="791" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1198" />
+      <location filename="../PipInterface/Pip.py" line="1203" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1224" />
-      <location filename="../PipInterface/Pip.py" line="1215" />
+      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1220" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1216" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1248" />
-      <location filename="../PipInterface/Pip.py" line="1241" />
+      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1246" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1242" />
+      <location filename="../PipInterface/Pip.py" line="1247" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1273" />
-      <location filename="../PipInterface/Pip.py" line="1265" />
+      <location filename="../PipInterface/Pip.py" line="1278" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1266" />
+      <location filename="../PipInterface/Pip.py" line="1271" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -60971,205 +60948,205 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="737" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="731" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
       <source>Cleanup Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="733" />
       <source>The environment cleanup was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="739" />
       <source>Some leftover package directories could not been removed. Delete them manually.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="834" />
-      <source>Search PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="835" />
+      <source>Search PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="836" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="854" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="855" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="856" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="857" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="860" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="862" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="863" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="869" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="870" />
       <source>Install</source>
       <translation type="unfinished">Instalar</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1048" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="871" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1049" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="872" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="874" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="875" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="877" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="878" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="884" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="885" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="886" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="887" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="889" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="890" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="892" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="893" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="896" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="897" />
       <source>Install from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="900" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="901" />
       <source>Uninstall from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="905" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="906" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="912" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="913" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="914" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="915" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="917" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="918" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="920" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="921" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="923" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="924" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="940" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="941" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="944" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="945" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="948" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="949" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="952" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="953" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="959" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="960" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="962" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="963" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="967" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="968" />
       <source>Configure...</source>
       <translation type="unfinished">Configurar...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1211" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1198" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1187" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1212" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1199" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1188" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1213" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1200" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1189" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1421" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1422" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1442" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1443" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1445" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1446" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1585" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1560" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1586" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1561" />
       <source>unknown</source>
       <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1582" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1583" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
@@ -61196,7 +61173,7 @@
   <context>
     <name>PipPackagesWindow</name>
     <message>
-      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <location filename="../PipInterface/PipPackagesWindow.py" line="60" />
       <source>Manage Packages</source>
       <translation type="unfinished" />
     </message>
@@ -61717,52 +61694,52 @@
   <context>
     <name>PluginManager</name>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="230" />
+      <location filename="../PluginManager/PluginManager.py" line="232" />
       <source>Could not create a package for {0}.</source>
       <translation>Não se pôde criar o pacote para {0}.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="262" />
+      <location filename="../PluginManager/PluginManager.py" line="264" />
       <source>The internal plugin directory &lt;b&gt;{0}&lt;/b&gt; does not exits.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="439" />
+      <location filename="../PluginManager/PluginManager.py" line="441" />
       <source>Module is missing the 'autoactivate' attribute.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="450" />
+      <location filename="../PluginManager/PluginManager.py" line="452" />
       <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="478" />
+      <location filename="../PluginManager/PluginManager.py" line="480" />
       <source>Module failed to load. Error: {0}</source>
       <translation>Falho na carga de módulo. Erro: {0}</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="661" />
+      <location filename="../PluginManager/PluginManager.py" line="663" />
       <source>Incompatible plugin activation method.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1269" />
+      <location filename="../PluginManager/PluginManager.py" line="1271" />
       <source>Plugin Manager Error</source>
       <translation>Erro do Gestor de Complementos</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1270" />
+      <location filename="../PluginManager/PluginManager.py" line="1272" />
       <source>&lt;p&gt;The plugin download directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Please configure it via the configuration dialog.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1358" />
+      <location filename="../PluginManager/PluginManager.py" line="1360" />
       <source>Error downloading file</source>
       <translation>Erro ao descarregar ficheiro</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1359" />
+      <location filename="../PluginManager/PluginManager.py" line="1361" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -62647,18 +62624,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1911" />
+      <location filename="../Preferences/__init__.py" line="1891" />
       <source>Export Preferences</source>
       <translation>Exportar Preferências</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1940" />
-      <location filename="../Preferences/__init__.py" line="1913" />
+      <location filename="../Preferences/__init__.py" line="1920" />
+      <location filename="../Preferences/__init__.py" line="1893" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Ficheiro de Propriedades (*.ini);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1938" />
+      <location filename="../Preferences/__init__.py" line="1918" />
       <source>Import Preferences</source>
       <translation>Importar Preferências</translation>
     </message>
@@ -63186,113 +63163,98 @@
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="204" />
-      <source>Translation Extractor (Python, PySide2)</source>
+      <source>Translation Extractor (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="213" />
-      <source>Forms Compiler (Python, PySide2)</source>
+      <source>Forms Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="222" />
-      <source>Resource Compiler (Python, PySide2)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="232" />
-      <source>Translation Extractor (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="241" />
-      <source>Forms Compiler (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="250" />
       <source>Resource Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="265" />
+      <location filename="../Preferences/ProgramsDialog.py" line="237" />
       <source>conda Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="275" />
+      <location filename="../Preferences/ProgramsDialog.py" line="247" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="527" />
-      <location filename="../Preferences/ProgramsDialog.py" line="524" />
-      <location filename="../Preferences/ProgramsDialog.py" line="508" />
-      <location filename="../Preferences/ProgramsDialog.py" line="378" />
-      <location filename="../Preferences/ProgramsDialog.py" line="311" />
-      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <location filename="../Preferences/ProgramsDialog.py" line="499" />
+      <location filename="../Preferences/ProgramsDialog.py" line="496" />
+      <location filename="../Preferences/ProgramsDialog.py" line="480" />
+      <location filename="../Preferences/ProgramsDialog.py" line="350" />
+      <location filename="../Preferences/ProgramsDialog.py" line="283" />
+      <location filename="../Preferences/ProgramsDialog.py" line="266" />
       <source>(unknown)</source>
       <translation>(desconhecido)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="298" />
+      <location filename="../Preferences/ProgramsDialog.py" line="270" />
       <source>Spell Checker - PyEnchant</source>
       <translation>Corretor Ortográfico - PyEnchant</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="315" />
+      <location filename="../Preferences/ProgramsDialog.py" line="287" />
       <source>Source Highlighter - Pygments</source>
       <translation>Realçador de Fonte - Pygments</translation>
     </message>
     <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <source>MicroPython - MPY Cross Compiler</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="301" />
+      <source>MicroPython - ESP Tool</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="312" />
+      <source>MicroPython - PyBoard Flasher</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ProgramsDialog.py" line="322" />
-      <source>MicroPython - MPY Cross Compiler</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="329" />
-      <source>MicroPython - ESP Tool</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="340" />
-      <source>MicroPython - PyBoard Flasher</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="350" />
       <source>MicroPython - STLink Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="360" />
+      <location filename="../Preferences/ProgramsDialog.py" line="332" />
       <source>MicroPython - STLink Flasher</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="382" />
+      <location filename="../Preferences/ProgramsDialog.py" line="354" />
       <source>Code Assistant - Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="462" />
+      <location filename="../Preferences/ProgramsDialog.py" line="434" />
       <source>(not configured)</source>
       <translation>(não configurado)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="497" />
+      <location filename="../Preferences/ProgramsDialog.py" line="469" />
       <source>(module not found)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="530" />
+      <location filename="../Preferences/ProgramsDialog.py" line="502" />
       <source>(not executable)</source>
       <translation>(não executável)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="576" />
-      <location filename="../Preferences/ProgramsDialog.py" line="544" />
-      <location filename="../Preferences/ProgramsDialog.py" line="542" />
+      <location filename="../Preferences/ProgramsDialog.py" line="548" />
+      <location filename="../Preferences/ProgramsDialog.py" line="516" />
+      <location filename="../Preferences/ProgramsDialog.py" line="514" />
       <source>(not found)</source>
       <translation>(não encontrado)</translation>
     </message>
@@ -63351,379 +63313,369 @@
     </message>
     <message>
       <location filename="../Project/Project.py" line="362" />
-      <source>PySide2 GUI</source>
+      <source>PySide6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="363" />
-      <source>PySide2 Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="367" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="466" />
-      <location filename="../Project/Project.py" line="454" />
-      <location filename="../Project/Project.py" line="443" />
+      <location filename="../Project/Project.py" line="461" />
+      <location filename="../Project/Project.py" line="449" />
+      <location filename="../Project/Project.py" line="438" />
       <source>Registering Project Type</source>
       <translation>A registar Tipo de Projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="444" />
+      <location filename="../Project/Project.py" line="439" />
       <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="455" />
+      <location filename="../Project/Project.py" line="450" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O tipo de Projeto &lt;b&gt;{0}&lt;/b&gt; já está registado com a Linguagem de Programação &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="467" />
+      <location filename="../Project/Project.py" line="462" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O tipo de Projeto &lt;b&gt;{0}&lt;/b&gt; já está registado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="772" />
+      <location filename="../Project/Project.py" line="767" />
       <source>All Files (*)</source>
       <translation type="unfinished">Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1321" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1579" />
-      <location filename="../Project/Project.py" line="1553" />
-      <location filename="../Project/Project.py" line="1517" />
-      <location filename="../Project/Project.py" line="1435" />
-      <location filename="../Project/Project.py" line="1396" />
-      <location filename="../Project/Project.py" line="1371" />
-      <location filename="../Project/Project.py" line="1334" />
+      <location filename="../Project/Project.py" line="1567" />
+      <location filename="../Project/Project.py" line="1541" />
+      <location filename="../Project/Project.py" line="1505" />
+      <location filename="../Project/Project.py" line="1423" />
+      <location filename="../Project/Project.py" line="1384" />
+      <location filename="../Project/Project.py" line="1359" />
+      <location filename="../Project/Project.py" line="1322" />
       <source>Please save the project first.</source>
       <translation>Guarde primeiro o projeto por favor.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1370" />
+      <location filename="../Project/Project.py" line="1358" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1412" />
-      <location filename="../Project/Project.py" line="1395" />
+      <location filename="../Project/Project.py" line="1400" />
+      <location filename="../Project/Project.py" line="1383" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1402" />
+      <location filename="../Project/Project.py" line="1390" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1421" />
+      <location filename="../Project/Project.py" line="1409" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1422" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1516" />
+      <location filename="../Project/Project.py" line="1504" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1552" />
+      <location filename="../Project/Project.py" line="1540" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1595" />
-      <location filename="../Project/Project.py" line="1578" />
+      <location filename="../Project/Project.py" line="1583" />
+      <location filename="../Project/Project.py" line="1566" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1585" />
+      <location filename="../Project/Project.py" line="1573" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1604" />
+      <location filename="../Project/Project.py" line="1592" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1777" />
+      <location filename="../Project/Project.py" line="1765" />
       <source>Add Language</source>
       <translation>Adicionar Idioma</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1778" />
+      <location filename="../Project/Project.py" line="1766" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Primeiro tem que especificar um padrão de tradução.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1919" />
+      <location filename="../Project/Project.py" line="1905" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1946" />
-      <location filename="../Project/Project.py" line="1920" />
+      <location filename="../Project/Project.py" line="1932" />
+      <location filename="../Project/Project.py" line="1906" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1945" />
+      <location filename="../Project/Project.py" line="1931" />
       <source>Delete translation</source>
       <translation>Apagar a Tradução</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2098" />
-      <location filename="../Project/Project.py" line="2081" />
+      <location filename="../Project/Project.py" line="2084" />
+      <location filename="../Project/Project.py" line="2067" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2200" />
-      <location filename="../Project/Project.py" line="2082" />
+      <location filename="../Project/Project.py" line="2186" />
+      <location filename="../Project/Project.py" line="2068" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. &lt;/p&gt;&lt;p&gt;Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2099" />
+      <location filename="../Project/Project.py" line="2085" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2097" />
       <source>Add file</source>
       <translation>Adicionar ficheiro</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2296" />
-      <location filename="../Project/Project.py" line="2112" />
+      <location filename="../Project/Project.py" line="2282" />
+      <location filename="../Project/Project.py" line="2098" />
       <source>The target directory must not be empty.</source>
       <translation>O diretório de destino não pode estar vazio.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2172" />
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2185" />
+      <location filename="../Project/Project.py" line="2158" />
+      <location filename="../Project/Project.py" line="2138" />
       <source>Add Directory</source>
       <translation type="unfinished">Adicionar Diretório</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2153" />
+      <location filename="../Project/Project.py" line="2139" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2173" />
+      <location filename="../Project/Project.py" line="2159" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2307" />
-      <location filename="../Project/Project.py" line="2295" />
+      <location filename="../Project/Project.py" line="2293" />
+      <location filename="../Project/Project.py" line="2281" />
       <source>Add directory</source>
       <translation>Adicionar diretório</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2308" />
+      <location filename="../Project/Project.py" line="2294" />
       <source>The source directory must not be empty.</source>
       <translation>O diretório fonte não pode estar vazio.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2422" />
-      <location filename="../Project/Project.py" line="2404" />
-      <location filename="../Project/Project.py" line="2388" />
-      <location filename="../Project/Project.py" line="2381" />
+      <location filename="../Project/Project.py" line="2408" />
+      <location filename="../Project/Project.py" line="2390" />
+      <location filename="../Project/Project.py" line="2374" />
+      <location filename="../Project/Project.py" line="2367" />
       <source>Rename File</source>
       <translation>Renomear Ficheiro</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8089" />
-      <location filename="../Project/Project.py" line="3909" />
-      <location filename="../Project/Project.py" line="2405" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2423" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2690" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2691" />
-      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2719" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2720" />
-      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2853" />
-      <source>Create project directory</source>
-      <translation>Criar diretório de projeto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2854" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;O diretorio do projeto &lt;b&gt;{0}&lt;/b&gt; não se pôde criar.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3682" />
-      <location filename="../Project/Project.py" line="2954" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3683" />
-      <location filename="../Project/Project.py" line="2955" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2995" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2996" />
-      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3463" />
-      <location filename="../Project/Project.py" line="3020" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3464" />
-      <location filename="../Project/Project.py" line="3021" />
-      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3712" />
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3144" />
-      <location filename="../Project/Project.py" line="3112" />
-      <location filename="../Project/Project.py" line="3094" />
-      <location filename="../Project/Project.py" line="3069" />
-      <location filename="../Project/Project.py" line="3031" />
-      <source>New Project</source>
-      <translation>Projeto Novo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3032" />
-      <source>Add existing files to the project?</source>
-      <translation>Adicionar os ficheiros existentes ao projeto?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3713" />
-      <location filename="../Project/Project.py" line="3070" />
-      <source>Select Version Control System</source>
-      <translation>Selecionar o Sistema de Control de Versão</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3174" />
-      <location filename="../Project/Project.py" line="3095" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>Quer editar as opções de commandos VCS?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3113" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Deve adicionar-se o ficheiro de projeto ao repositório?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3150" />
-      <location filename="../Project/Project.py" line="3139" />
-      <source>None</source>
-      <translation>Nenhum</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3145" />
-      <source>Select version control system for the project</source>
-      <translation>Selecionar o sistema de control de versão para o projeto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3356" />
-      <source>Translation Pattern</source>
-      <translation>Padrão de Tradução</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3357" />
-      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
-      <translation>Introduzir o padrão para os ficheiros de tradução (usar '%language%' em lugar do código de idioma):</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3661" />
-      <source>Open Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="8075" />
-      <location filename="../Project/Project.py" line="8069" />
-      <location filename="../Project/Project.py" line="8059" />
-      <location filename="../Project/Project.py" line="3894" />
-      <location filename="../Project/Project.py" line="3884" />
-      <location filename="../Project/Project.py" line="3663" />
+      <location filename="../Project/Project.py" line="3895" />
+      <location filename="../Project/Project.py" line="2391" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2409" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2676" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2677" />
+      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2705" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2706" />
+      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2839" />
+      <source>Create project directory</source>
+      <translation>Criar diretório de projeto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2840" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;O diretorio do projeto &lt;b&gt;{0}&lt;/b&gt; não se pôde criar.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3668" />
+      <location filename="../Project/Project.py" line="2940" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3669" />
+      <location filename="../Project/Project.py" line="2941" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2981" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2982" />
+      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3449" />
+      <location filename="../Project/Project.py" line="3006" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3450" />
+      <location filename="../Project/Project.py" line="3007" />
+      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3698" />
+      <location filename="../Project/Project.py" line="3159" />
+      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3098" />
+      <location filename="../Project/Project.py" line="3080" />
+      <location filename="../Project/Project.py" line="3055" />
+      <location filename="../Project/Project.py" line="3017" />
+      <source>New Project</source>
+      <translation>Projeto Novo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3018" />
+      <source>Add existing files to the project?</source>
+      <translation>Adicionar os ficheiros existentes ao projeto?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3699" />
+      <location filename="../Project/Project.py" line="3056" />
+      <source>Select Version Control System</source>
+      <translation>Selecionar o Sistema de Control de Versão</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3160" />
+      <location filename="../Project/Project.py" line="3081" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>Quer editar as opções de commandos VCS?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3099" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Deve adicionar-se o ficheiro de projeto ao repositório?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3125" />
+      <source>None</source>
+      <translation>Nenhum</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3131" />
+      <source>Select version control system for the project</source>
+      <translation>Selecionar o sistema de control de versão para o projeto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3342" />
+      <source>Translation Pattern</source>
+      <translation>Padrão de Tradução</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3343" />
+      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
+      <translation>Introduzir o padrão para os ficheiros de tradução (usar '%language%' em lugar do código de idioma):</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3647" />
+      <source>Open Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8061" />
+      <location filename="../Project/Project.py" line="8055" />
+      <location filename="../Project/Project.py" line="8045" />
+      <location filename="../Project/Project.py" line="3880" />
+      <location filename="../Project/Project.py" line="3870" />
+      <location filename="../Project/Project.py" line="3649" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="3892" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3878" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3947" />
+      <location filename="../Project/Project.py" line="3933" />
       <source>Close Project</source>
       <translation>Fechar Projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3948" />
+      <location filename="../Project/Project.py" line="3934" />
       <source>The current project has unsaved changes.</source>
       <translation>O projeto atual tem alterações por gravar.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4134" />
+      <location filename="../Project/Project.py" line="4098" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4149" />
-      <location filename="../Project/Project.py" line="4113" />
+      <location filename="../Project/Project.py" line="4135" />
+      <location filename="../Project/Project.py" line="4099" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>O projeto tem um ficheiro com erros de síntaxe.</numerusform>
@@ -63731,1268 +63683,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4793" />
       <source>New project</source>
       <translation>Projeto novo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4809" />
+      <location filename="../Project/Project.py" line="4795" />
       <source>&amp;New...</source>
       <translation>&amp;Novo...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4801" />
+      <source>Generate a new project</source>
+      <translation>Criar um projeto novo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4803" />
+      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Novo...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para introduzir a informação para um projeto novo.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4813" />
+      <source>Open project</source>
+      <translation>Abrir projeto</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4815" />
-      <source>Generate a new project</source>
-      <translation>Criar um projeto novo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4817" />
-      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Novo...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para introduzir a informação para um projeto novo.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4827" />
-      <source>Open project</source>
-      <translation>Abrir projeto</translation>
+      <source>&amp;Open...</source>
+      <translation>&amp;Abrir...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4821" />
+      <source>Open an existing project</source>
+      <translation>Abrir um projeto existente</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4823" />
+      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Abrir...&lt;/b&gt;&lt;p&gt;Isto abre um projeto existente.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4829" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Abrir...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4835" />
-      <source>Open an existing project</source>
-      <translation>Abrir um projeto existente</translation>
+      <source>Open remote project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4831" />
+      <source>Open (Remote)...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4837" />
-      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Abrir...&lt;/b&gt;&lt;p&gt;Isto abre um projeto existente.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4843" />
-      <source>Open remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4845" />
-      <source>Open (Remote)...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4853" />
+      <location filename="../Project/Project.py" line="4839" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4862" />
+      <location filename="../Project/Project.py" line="4848" />
       <source>Reload project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4850" />
+      <source>Re&amp;load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4856" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4858" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4864" />
-      <source>Re&amp;load</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4870" />
-      <source>Reload the current project</source>
-      <translation type="unfinished" />
+      <source>Close project</source>
+      <translation>Fechar projeto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4866" />
+      <source>&amp;Close</source>
+      <translation>&amp;Fechar</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4872" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4878" />
-      <source>Close project</source>
-      <translation>Fechar projeto</translation>
+      <source>Close the current project</source>
+      <translation>Fechar o projeto atual</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4874" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Fechar&lt;/b&gt;&lt;p&gt;Fecha o projeto atual&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4880" />
-      <source>&amp;Close</source>
-      <translation>&amp;Fechar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4886" />
-      <source>Close the current project</source>
-      <translation>Fechar o projeto atual</translation>
+      <source>Save project</source>
+      <translation>Gravar projeto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5177" />
+      <location filename="../Project/Project.py" line="4882" />
+      <source>&amp;Save</source>
+      <translation>&amp;Gravar</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4888" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Fechar&lt;/b&gt;&lt;p&gt;Fecha o projeto atual&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4894" />
-      <source>Save project</source>
-      <translation>Gravar projeto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5191" />
-      <location filename="../Project/Project.py" line="4896" />
-      <source>&amp;Save</source>
-      <translation>&amp;Gravar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Gravar o projeto actual</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4890" />
+      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Gravar&lt;/b&gt;&lt;p&gt;Guarda o projeto atual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
+      <source>Save project as</source>
+      <translation>Gravar projeto como</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4898" />
+      <source>Save &amp;as...</source>
+      <translation>Gravar &amp;como...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4904" />
-      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Gravar&lt;/b&gt;&lt;p&gt;Guarda o projeto atual.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4910" />
-      <source>Save project as</source>
-      <translation>Gravar projeto como</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4912" />
-      <source>Save &amp;as...</source>
-      <translation>Gravar &amp;como...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation>Gravar o projeto atual para um ficheiro novo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4920" />
+      <location filename="../Project/Project.py" line="4906" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gravar como&lt;/b&gt;&lt;p&gt;Guarda o projeto atual para um ficheiro novo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4929" />
+      <location filename="../Project/Project.py" line="4915" />
       <source>Save project as (Remote)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4931" />
+      <location filename="../Project/Project.py" line="4917" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4938" />
+      <location filename="../Project/Project.py" line="4924" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4927" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4957" />
+      <location filename="../Project/Project.py" line="4943" />
       <source>Add files to project</source>
       <translation>Adicionar ficheiros ao projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4959" />
+      <location filename="../Project/Project.py" line="4945" />
       <source>Add &amp;files...</source>
       <translation>Adicionar &amp;ficheiros...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4965" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>Add files to the current project</source>
       <translation>Adicionar ficheiros ao projeto atual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4967" />
+      <location filename="../Project/Project.py" line="4953" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Adicionar ficheiros...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para adicionar ficheiros ao projeto atual. O lugar para adicionar determina-se pela extensão de ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4978" />
+      <location filename="../Project/Project.py" line="4964" />
       <source>Add directory to project</source>
       <translation>Adicionar diretório ao projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4980" />
+      <location filename="../Project/Project.py" line="4966" />
       <source>Add directory...</source>
       <translation>Adicionar diretório...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4987" />
+      <location filename="../Project/Project.py" line="4973" />
       <source>Add a directory to the current project</source>
       <translation>Adicionar um diretório ao projeto atual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4990" />
+      <location filename="../Project/Project.py" line="4976" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Adicionar diretório&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para adicionar um diretório ao projeto atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5000" />
+      <location filename="../Project/Project.py" line="4986" />
       <source>Add translation to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5002" />
+      <location filename="../Project/Project.py" line="4988" />
       <source>Add &amp;translation...</source>
       <translation>Adicionar &amp;tradução...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4995" />
+      <source>Add a translation to the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4998" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5008" />
+      <source>Search new files</source>
+      <translation>Procurar ficheiros novos</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5009" />
-      <source>Add a translation to the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5012" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5022" />
-      <source>Search new files</source>
-      <translation>Procurar ficheiros novos</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>&amp;Procurar ficheiros novos...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5015" />
+      <source>Search new files in the project directory.</source>
+      <translation>Procurar ficheiros novos no diretório do projeto.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5017" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5027" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5028" />
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5029" />
-      <source>Search new files in the project directory.</source>
-      <translation>Procurar ficheiros novos no diretório do projeto.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5031" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5042" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5048" />
+      <location filename="../Project/Project.py" line="5034" />
       <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5050" />
+      <location filename="../Project/Project.py" line="5036" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5059" />
+      <location filename="../Project/Project.py" line="5045" />
       <source>Project properties</source>
       <translation>Propriedades do projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5061" />
+      <location filename="../Project/Project.py" line="5047" />
       <source>&amp;Properties...</source>
       <translation>&amp;Propriedades...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5067" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Show the project properties</source>
       <translation>Mostrar as propriedades do projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5069" />
+      <location filename="../Project/Project.py" line="5055" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5078" />
+      <location filename="../Project/Project.py" line="5064" />
       <source>User project properties</source>
       <translation>Propriedades de projecto do usuário</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5080" />
+      <location filename="../Project/Project.py" line="5066" />
       <source>&amp;User Properties...</source>
       <translation>Propriedades de &amp;Usuário...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5073" />
+      <source>Show the user specific project properties</source>
+      <translation>Mostrar as propriedades do projeto específicas do usuário</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5076" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5086" />
+      <source>Filetype Associations</source>
+      <translation>Associações de Tipos de Ficheiros</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5087" />
-      <source>Show the user specific project properties</source>
-      <translation>Mostrar as propriedades do projeto específicas do usuário</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5090" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5100" />
-      <source>Filetype Associations</source>
-      <translation>Associações de Tipos de Ficheiros</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation>Associações de Tipos de Ficheiros...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5108" />
+      <location filename="../Project/Project.py" line="5094" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5097" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5110" />
+      <source>Lexer Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5111" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5124" />
-      <source>Lexer Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5132" />
+      <location filename="../Project/Project.py" line="5118" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5135" />
+      <location filename="../Project/Project.py" line="5121" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5153" />
+      <location filename="../Project/Project.py" line="5139" />
       <source>Debugger Properties</source>
       <translation>Propriedades do Depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5154" />
+      <location filename="../Project/Project.py" line="5140" />
       <source>Debugger &amp;Properties...</source>
       <translation>&amp;Propriedades do Depurador...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5160" />
+      <location filename="../Project/Project.py" line="5146" />
       <source>Show the debugger properties</source>
       <translation>Mostrar as propriedades do depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5162" />
+      <location filename="../Project/Project.py" line="5148" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5158" />
       <source>Load</source>
       <translation>Carregar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5173" />
+      <location filename="../Project/Project.py" line="5159" />
       <source>&amp;Load</source>
       <translation>&amp;Carregar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5179" />
+      <location filename="../Project/Project.py" line="5165" />
       <source>Load the debugger properties</source>
       <translation>Carregar propriedades do depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5181" />
+      <location filename="../Project/Project.py" line="5167" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
+      <location filename="../Project/Project.py" line="5176" />
       <source>Save</source>
       <translation>Gravar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5197" />
+      <location filename="../Project/Project.py" line="5183" />
       <source>Save the debugger properties</source>
       <translation>Gravar propriedades do depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5199" />
+      <location filename="../Project/Project.py" line="5185" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5208" />
+      <location filename="../Project/Project.py" line="5194" />
       <source>Delete</source>
       <translation>Apagar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5209" />
+      <location filename="../Project/Project.py" line="5195" />
       <source>&amp;Delete</source>
       <translation>&amp;Apagar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5215" />
+      <location filename="../Project/Project.py" line="5201" />
       <source>Delete the debugger properties</source>
       <translation>Apagar as propriedades do depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5217" />
+      <location filename="../Project/Project.py" line="5203" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5227" />
+      <location filename="../Project/Project.py" line="5213" />
       <source>Reset</source>
       <translation>Reinicializar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5228" />
+      <location filename="../Project/Project.py" line="5214" />
       <source>&amp;Reset</source>
       <translation>&amp;Reinicializar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5234" />
+      <location filename="../Project/Project.py" line="5220" />
       <source>Reset the debugger properties</source>
       <translation>Reinicializar as propriedades do depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5236" />
+      <location filename="../Project/Project.py" line="5222" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5252" />
-      <location filename="../Project/Project.py" line="5251" />
+      <location filename="../Project/Project.py" line="5238" />
+      <location filename="../Project/Project.py" line="5237" />
       <source>Load session</source>
       <translation>Carregar sessão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5258" />
+      <location filename="../Project/Project.py" line="5244" />
       <source>Load the projects session file.</source>
       <translation>Carregar o ficheiro de sessão do projeto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5260" />
+      <location filename="../Project/Project.py" line="5246" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5276" />
-      <location filename="../Project/Project.py" line="5275" />
+      <location filename="../Project/Project.py" line="5262" />
+      <location filename="../Project/Project.py" line="5261" />
       <source>Save session</source>
       <translation>Guargar sessão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5282" />
+      <location filename="../Project/Project.py" line="5268" />
       <source>Save the projects session file.</source>
       <translation>Gravar ficheiro de sessão do projeto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5284" />
+      <location filename="../Project/Project.py" line="5270" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5300" />
-      <location filename="../Project/Project.py" line="5299" />
+      <location filename="../Project/Project.py" line="5286" />
+      <location filename="../Project/Project.py" line="5285" />
       <source>Delete session</source>
       <translation>Apagar sessão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5306" />
+      <location filename="../Project/Project.py" line="5292" />
       <source>Delete the projects session file.</source>
       <translation>Apagar o ficheiro de sessão do projeto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5308" />
+      <location filename="../Project/Project.py" line="5294" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5323" />
+      <location filename="../Project/Project.py" line="5309" />
       <source>Code Metrics</source>
       <translation type="unfinished">Métricas de Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5324" />
+      <location filename="../Project/Project.py" line="5310" />
       <source>&amp;Code Metrics...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5317" />
+      <source>Show some code metrics for the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5320" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5330" />
+      <source>Python Code Coverage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5331" />
-      <source>Show some code metrics for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5334" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5344" />
-      <source>Python Code Coverage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5338" />
+      <source>Show code coverage information for the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5341" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6775" />
+      <location filename="../Project/Project.py" line="6762" />
+      <location filename="../Project/Project.py" line="5351" />
+      <source>Profile Data</source>
+      <translation type="unfinished">Dados de Perfil</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5352" />
-      <source>Show code coverage information for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5355" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6789" />
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="5365" />
-      <source>Profile Data</source>
-      <translation type="unfinished">Dados de Perfil</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5373" />
+      <location filename="../Project/Project.py" line="5359" />
       <source>Show profiling data for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5376" />
+      <location filename="../Project/Project.py" line="5362" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="6827" />
+      <location filename="../Project/Project.py" line="5377" />
       <source>Application Diagram</source>
       <translation>Diagrama da Aplicação</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5392" />
+      <location filename="../Project/Project.py" line="5378" />
       <source>&amp;Application Diagram...</source>
       <translation>Diagrama da &amp;Aplicação...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5399" />
+      <location filename="../Project/Project.py" line="5385" />
       <source>Show a diagram of the project.</source>
       <translation>Mostrar o diagrama do projeto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5402" />
+      <location filename="../Project/Project.py" line="5388" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diagrama da Aplicação...&lt;/b&gt;&lt;p&gt;Mostra um diagrama do projeto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5411" />
+      <location filename="../Project/Project.py" line="5397" />
       <source>Load Diagram</source>
       <translation>Carregar Diagrama</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5412" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Load Diagram...</source>
       <translation>&amp;Carregar Diagrama...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5418" />
+      <location filename="../Project/Project.py" line="5404" />
       <source>Load a diagram from file.</source>
       <translation>Carregar um diagrama desde um ficheiro.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5420" />
+      <location filename="../Project/Project.py" line="5406" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Carregar Diagrama...&lt;/b&gt;&lt;p&gt;Carga um diagrama desde um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
-      <location filename="../Project/Project.py" line="6954" />
-      <location filename="../Project/Project.py" line="5435" />
+      <location filename="../Project/Project.py" line="6995" />
+      <location filename="../Project/Project.py" line="6940" />
+      <location filename="../Project/Project.py" line="5421" />
       <source>Create Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5437" />
+      <location filename="../Project/Project.py" line="5423" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5444" />
+      <location filename="../Project/Project.py" line="5430" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="5433" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7080" />
-      <location filename="../Project/Project.py" line="5458" />
+      <location filename="../Project/Project.py" line="7066" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5460" />
+      <location filename="../Project/Project.py" line="5446" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5452" />
+      <source>Create eric plugin archive files.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5454" />
+      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5466" />
-      <source>Create eric plugin archive files.</source>
+      <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5468" />
-      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5480" />
-      <source>Create Plugin Archives (Snapshot)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5489" />
+      <location filename="../Project/Project.py" line="5475" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5492" />
+      <location filename="../Project/Project.py" line="5478" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7536" />
-      <location filename="../Project/Project.py" line="7507" />
-      <location filename="../Project/Project.py" line="7461" />
-      <location filename="../Project/Project.py" line="7413" />
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="5497" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5512" />
+      <location filename="../Project/Project.py" line="5498" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5518" />
+      <location filename="../Project/Project.py" line="5504" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5520" />
+      <location filename="../Project/Project.py" line="5506" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7513" />
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="7499" />
+      <location filename="../Project/Project.py" line="5516" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5531" />
+      <location filename="../Project/Project.py" line="5517" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5524" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5541" />
+      <location filename="../Project/Project.py" line="5527" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5559" />
+      <location filename="../Project/Project.py" line="5545" />
       <source>Create SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5560" />
+      <location filename="../Project/Project.py" line="5546" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5553" />
+      <source>Create a SBOM file of the project dependencies.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5556" />
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5567" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5570" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5581" />
       <source>Clear Byte Code Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5582" />
+      <location filename="../Project/Project.py" line="5568" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5589" />
+      <location filename="../Project/Project.py" line="5575" />
       <source>Clear the byte code caches of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5592" />
+      <location filename="../Project/Project.py" line="5578" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5608" />
+      <location filename="../Project/Project.py" line="5594" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5609" />
+      <location filename="../Project/Project.py" line="5595" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5601" />
+      <source>Show some information about 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5603" />
+      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5615" />
-      <source>Show some information about 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5617" />
-      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5629" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5630" />
+      <location filename="../Project/Project.py" line="5616" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5637" />
+      <location filename="../Project/Project.py" line="5623" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5640" />
+      <location filename="../Project/Project.py" line="5626" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5652" />
+      <location filename="../Project/Project.py" line="5638" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5653" />
+      <location filename="../Project/Project.py" line="5639" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5660" />
+      <location filename="../Project/Project.py" line="5646" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5651" />
+      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5664" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5665" />
-      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <source>Code Formatting &amp;Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5672" />
+      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5678" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5679" />
-      <source>Code Formatting &amp;Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5686" />
-      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5792" />
       <location filename="../Project/Project.py" line="5692" />
-      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <location filename="../Project/Project.py" line="5807" />
-      <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5706" />
-      <location filename="../Project/Project.py" line="5705" />
+      <location filename="../Project/Project.py" line="5691" />
       <source>Configure</source>
       <translation type="unfinished">Configurar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5713" />
+      <location filename="../Project/Project.py" line="5699" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5718" />
+      <location filename="../Project/Project.py" line="5704" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5734" />
+      <location filename="../Project/Project.py" line="5720" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5735" />
+      <location filename="../Project/Project.py" line="5721" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5741" />
+      <location filename="../Project/Project.py" line="5727" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5743" />
+      <location filename="../Project/Project.py" line="5729" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5756" />
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5763" />
+      <location filename="../Project/Project.py" line="5749" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5752" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5766" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5780" />
-      <location filename="../Project/Project.py" line="5779" />
+      <location filename="../Project/Project.py" line="5765" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5787" />
+      <location filename="../Project/Project.py" line="5773" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5814" />
+      <location filename="../Project/Project.py" line="5800" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5820" />
+      <location filename="../Project/Project.py" line="5806" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5836" />
+      <location filename="../Project/Project.py" line="5822" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5823" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5830" />
+      <source>Install the project into the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5833" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5844" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5851" />
+      <source>Configure the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5854" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5864" />
+      <source>Upgrade</source>
+      <translation type="unfinished">Atualizar</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5865" />
-      <source>Configure the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5868" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5878" />
-      <source>Upgrade</source>
-      <translation type="unfinished">Atualizar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5871" />
+      <source>Upgrade the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5873" />
+      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5885" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5887" />
-      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5900" />
+      <location filename="../Project/Project.py" line="5886" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5906" />
+      <location filename="../Project/Project.py" line="5892" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5908" />
+      <location filename="../Project/Project.py" line="5894" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5926" />
+      <source>&amp;Project</source>
+      <translation>&amp;Projeto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5927" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Abrir Projetos &amp;Recentes</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5929" />
+      <source>Session</source>
+      <translation>Sessão</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5930" />
+      <source>Debugger</source>
+      <translation>Depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5931" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5933" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5934" />
+      <source>&amp;Version Control</source>
+      <translation>Contro&amp;l de Versão</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5938" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Verificar</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5940" />
-      <source>&amp;Project</source>
-      <translation>&amp;Projeto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5941" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Abrir Projetos &amp;Recentes</translation>
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5942" />
+      <source>Sho&amp;w</source>
+      <translation>&amp;Mostrar</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Session</source>
-      <translation>Sessão</translation>
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagramas</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
-      <source>Debugger</source>
-      <translation>Depurador</translation>
+      <source>Pac&amp;kagers</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
+      <source>Source &amp;Documentation</source>
+      <translation>&amp;Documentação Fonte</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Project-T&amp;ools</source>
+      <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
-      <source>&amp;Version Control</source>
-      <translation>Contro&amp;l de Versão</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5952" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Verificar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5954" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5956" />
-      <source>Sho&amp;w</source>
-      <translation>&amp;Mostrar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5957" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagramas</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5958" />
-      <source>Pac&amp;kagers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5959" />
-      <source>Source &amp;Documentation</source>
-      <translation>&amp;Documentação Fonte</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5961" />
-      <source>Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6124" />
-      <location filename="../Project/Project.py" line="6122" />
+      <location filename="../Project/Project.py" line="6110" />
+      <location filename="../Project/Project.py" line="6108" />
       <source>Project</source>
       <translation>Projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6206" />
+      <location filename="../Project/Project.py" line="6192" />
       <source>&amp;Clear</source>
       <translation>&amp;Limpar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6403" />
+      <location filename="../Project/Project.py" line="6389" />
       <source>Search New Files</source>
       <translation>Procurar Ficheiros Novos</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6404" />
+      <location filename="../Project/Project.py" line="6390" />
       <source>There were no new files found to be added.</source>
       <translation>Não se encontraram ficheiros novos para adicionar.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6565" />
-      <location filename="../Project/Project.py" line="6552" />
+      <location filename="../Project/Project.py" line="6551" />
+      <location filename="../Project/Project.py" line="6538" />
       <source>Version Control System</source>
       <translation>Sistema de Control de Versão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6553" />
+      <location filename="../Project/Project.py" line="6539" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6566" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="6709" />
+      <source>Coverage Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6763" />
+      <location filename="../Project/Project.py" line="6710" />
+      <source>There is no main script defined for the current project. Aborting</source>
+      <translation>O projeto atual não tem um script principal definido. A cancelar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6722" />
+      <source>Code Coverage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="6723" />
-      <source>Coverage Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6777" />
-      <location filename="../Project/Project.py" line="6724" />
-      <source>There is no main script defined for the current project. Aborting</source>
-      <translation>O projeto atual não tem um script principal definido. A cancelar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6736" />
-      <source>Code Coverage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6790" />
+      <location filename="../Project/Project.py" line="6776" />
       <source>Please select a profile file</source>
       <translation>Escolha um ficheiro de perfil por favor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6842" />
+      <location filename="../Project/Project.py" line="6828" />
       <source>Include module names?</source>
       <translation>Incluir nomes de módulos?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6955" />
+      <location filename="../Project/Project.py" line="6941" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7010" />
+      <location filename="../Project/Project.py" line="6996" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7321" />
-      <location filename="../Project/Project.py" line="7277" />
-      <location filename="../Project/Project.py" line="7227" />
-      <location filename="../Project/Project.py" line="7216" />
-      <location filename="../Project/Project.py" line="7198" />
-      <location filename="../Project/Project.py" line="7151" />
-      <location filename="../Project/Project.py" line="7121" />
-      <location filename="../Project/Project.py" line="7093" />
-      <location filename="../Project/Project.py" line="7063" />
-      <location filename="../Project/Project.py" line="7048" />
-      <location filename="../Project/Project.py" line="7031" />
+      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7137" />
+      <location filename="../Project/Project.py" line="7107" />
+      <location filename="../Project/Project.py" line="7079" />
+      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7034" />
+      <location filename="../Project/Project.py" line="7017" />
       <source>Create Plugin Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7032" />
+      <location filename="../Project/Project.py" line="7018" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>O projeto atual não tem um script principal definido. A cancelar...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7035" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7064" />
+      <location filename="../Project/Project.py" line="7050" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7072" />
+      <location filename="../Project/Project.py" line="7058" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7073" />
+      <location filename="../Project/Project.py" line="7059" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7076" />
+      <location filename="../Project/Project.py" line="7062" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7094" />
+      <location filename="../Project/Project.py" line="7080" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde ler. &lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7122" />
+      <location filename="../Project/Project.py" line="7108" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7152" />
+      <location filename="../Project/Project.py" line="7138" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7199" />
+      <location filename="../Project/Project.py" line="7185" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7217" />
+      <location filename="../Project/Project.py" line="7203" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7228" />
+      <location filename="../Project/Project.py" line="7214" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7278" />
+      <location filename="../Project/Project.py" line="7264" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7322" />
+      <location filename="../Project/Project.py" line="7308" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7414" />
+      <location filename="../Project/Project.py" line="7400" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7462" />
+      <location filename="../Project/Project.py" line="7448" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7508" />
+      <location filename="../Project/Project.py" line="7494" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7516" />
+      <location filename="../Project/Project.py" line="7502" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
+      <location filename="../Project/Project.py" line="7507" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7537" />
+      <location filename="../Project/Project.py" line="7523" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7975" />
+      <location filename="../Project/Project.py" line="7961" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7976" />
+      <location filename="../Project/Project.py" line="7962" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8057" />
+      <location filename="../Project/Project.py" line="8043" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8088" />
-      <location filename="../Project/Project.py" line="8073" />
+      <location filename="../Project/Project.py" line="8074" />
+      <location filename="../Project/Project.py" line="8059" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65241,9 +65193,9 @@
   <context>
     <name>ProjectFormsBrowser</name>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1141" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1092" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1055" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1131" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
       <location filename="../Project/ProjectFormsBrowser.py" line="142" />
       <location filename="../Project/ProjectFormsBrowser.py" line="77" />
       <source>Forms</source>
@@ -65516,102 +65468,102 @@
       <translation>Compilar formulários</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="701" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="732" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="719" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="700" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="683" />
       <source>New Form</source>
       <translation>Novo Formulário</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="685" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
       <source>Select a form type:</source>
       <translation>Selecionar o tipo de form:</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="703" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="702" />
       <source>Qt User-Interface Files (*.ui);;All Files (*)</source>
       <translation>Ficheiros de Interface de Usuário Qt (*.ui);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="721" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
       <source>The file already exists! Overwrite it?</source>
       <translation>O ficheiro já existe. Sobreescrever?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="734" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
       <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro do novo formulário &lt;b&gt;{0}&lt;/b&gt; não pôde ser criado.&lt;br&gt;Problema: {1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectFormsBrowser.py" line="759" />
+      <source>Delete forms</source>
+      <translation>Apagar formulários</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFormsBrowser.py" line="760" />
-      <source>Delete forms</source>
-      <translation>Apagar formulários</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="761" />
       <source>Do you really want to delete these forms from the project?</source>
       <translation>Tem a certeza de que quer apagar estes formulários do projeto?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="893" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="882" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="875" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="888" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="877" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="870" />
       <source>Form Compilation</source>
       <translation>Compilação de Formulários</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="876" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="871" />
       <source>The compilation of the form file was successful.</source>
       <translation>A compilação do form teve êxito.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="883" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="878" />
       <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Falhou a compilação do ficheiro do formulário.&lt;/p&gt;&lt;p&gt;Razão: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="894" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="889" />
       <source>The compilation of the form file failed.</source>
       <translation>A compilação do ficheiro do form falhou.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="986" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="977" />
       <source>Process Generation Error</source>
       <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="987" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="978" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1074" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1037" />
       <source>Compiling forms...</source>
       <translation>A compilar formulários...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1134" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1084" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1047" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1075" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1038" />
       <source>Abort</source>
       <translation>Terminar</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1137" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1087" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1050" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1127" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1078" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1041" />
       <source>%v/%m Forms</source>
       <translation>%v/%m Formulários</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1133" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1123" />
       <source>Determining changed forms...</source>
       <translation>A determinar formulários alterados...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1163" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1153" />
       <source>Compiling changed forms...</source>
       <translation>A compilar formulários alterados...</translation>
     </message>
@@ -66063,9 +66015,9 @@
   <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="956" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="880" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="844" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="940" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="864" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="828" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="87" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="68" />
       <source>Resources</source>
@@ -66092,219 +66044,219 @@
       <translation type="unfinished">Navegador de Recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="165" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="163" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="150" />
       <source>Compile resource</source>
       <translation>Compilar recurso</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="396" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="385" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="344" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="333" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="247" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="235" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="172" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="154" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="384" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="373" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="334" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="323" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="241" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="229" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="170" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
       <source>Compile all resources</source>
       <translation>Compilar todos os recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="389" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="337" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="296" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="239" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="158" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="377" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="327" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="288" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="233" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="156" />
       <source>Configure rcc Compiler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="308" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="300" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="179" />
       <source>Open</source>
       <translation>Abrir</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
       <source>Rename file</source>
       <translation>Renomear ficheiro</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="349" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="310" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="339" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="302" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
       <source>Remove from project</source>
       <translation>Retirar do projeto</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="351" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="187" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="341" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="304" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
       <source>Delete</source>
       <translation>Apagar</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="345" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="249" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="236" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="200" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="195" />
+      <source>New resource...</source>
+      <translation>Novo recurso...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="390" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="346" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="254" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
+      <source>Add resources...</source>
+      <translation>Adicionar recursos...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="393" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="348" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="257" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="206" />
+      <source>Add resources directory...</source>
+      <translation>Adicionar diretório de recursos...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="353" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="211" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectResourcesBrowser.py" line="355" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="255" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="242" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="199" />
-      <source>New resource...</source>
-      <translation>Novo recurso...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="402" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="356" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="260" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="208" />
-      <source>Add resources...</source>
-      <translation>Adicionar recursos...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="405" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="358" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="210" />
-      <source>Add resources directory...</source>
-      <translation>Adicionar diretório de recursos...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="363" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="269" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="365" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="217" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="213" />
       <source>Copy Path to Clipboard</source>
       <translation>Copiar Rota à Área de Transferência</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="410" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="367" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="315" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="272" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="219" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="398" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="357" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="307" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="266" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
       <source>Expand all directories</source>
       <translation>Expandir os diretórios todos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="413" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="369" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="317" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="274" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="220" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="401" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="359" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="309" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="268" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="216" />
       <source>Collapse all directories</source>
       <translation>Colapsar os diretórios todos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="416" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="372" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="320" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="277" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="222" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="404" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="362" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="271" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="218" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="303" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="292" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="295" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="284" />
       <source>Compile resources</source>
       <translation>Compilar recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="595" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="574" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="555" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="583" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="562" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="543" />
       <source>New Resource</source>
       <translation>Novo Recurso</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="557" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="545" />
       <source>Qt Resource Files (*.qrc)</source>
       <translation>Ficheiro de Recursos Qt (*.qrc)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="575" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="563" />
       <source>The file already exists! Overwrite it?</source>
       <translation>O ficheiro já existe. Sobreescrever?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="596" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="584" />
       <source>&lt;p&gt;The new resource file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;O novo ficheiro de recursos &lt;b&gt;{0}&lt;/b&gt; não se pode criar.&lt;br&gt;Problema: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="622" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="610" />
       <source>Delete resources</source>
       <translation>Apagar recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="623" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="611" />
       <source>Do you really want to delete these resources from the project?</source>
       <translation>Tem a certeza de que quer apagar estes recursos do projeto?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="717" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="708" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="701" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="705" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="696" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="689" />
       <source>Resource Compilation</source>
       <translation>Compilação de Recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="702" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="690" />
       <source>The compilation of the resource file was successful.</source>
       <translation>A compilação do recurso teve êxito.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="709" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="697" />
       <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;A compilação do ficheiro de recurso falhou.&lt;/p&gt;&lt;p&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="718" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="706" />
       <source>The compilation of the resource file failed.</source>
       <translation>A compilação do ficheiro de recurso falhou.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="805" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="789" />
       <source>Process Generation Error</source>
       <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="806" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="790" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="871" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="835" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="855" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="819" />
       <source>Compiling resources...</source>
       <translation>A compilar recursos...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="949" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="872" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="836" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="933" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="856" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="820" />
       <source>Abort</source>
       <translation>Cancelar</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="952" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="875" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="839" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="936" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="859" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="823" />
       <source>%v/%m Resources</source>
       <translation>%v/%m Recursos</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="948" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="932" />
       <source>Determining changed resources...</source>
       <translation>A determinar recursos alterados...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="986" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="970" />
       <source>Compiling changed resources...</source>
       <translation>A compilar recursos alterados...</translation>
     </message>
@@ -66840,250 +66792,250 @@
       <translation type="unfinished">Navegador de Traduções</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="514" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="456" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="296" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="238" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="213" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="182" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="508" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="236" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="180" />
       <source>Open in Editor</source>
       <translation>Abrir no Editor</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="255" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="253" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation</source>
       <translation>Gerar tradução</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="193" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="263" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="191" />
       <source>Generate translation (with obsolete)</source>
       <translation>Gerar tradução (com obsoleto)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="580" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="551" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="274" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="199" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="572" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="543" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="378" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="272" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="197" />
       <source>Generate all translations</source>
       <translation>Gerar traduções todas</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="581" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="281" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
+      <source>Generate all translations (with obsolete)</source>
+      <translation>Gerar traduções todas (com obsoleto)</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="446" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="207" />
+      <source>Open in Qt-Linguist</source>
+      <translation>Abrir em Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="301" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <source>Release translation</source>
+      <translation>Liberar tradução</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="589" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="391" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="283" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
-      <source>Generate all translations (with obsolete)</source>
-      <translation>Gerar traduções todas (com obsoleto)</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="452" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
-      <source>Open in Qt-Linguist</source>
-      <translation>Abrir em Qt-Linguist</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
-      <source>Release translation</source>
-      <translation>Liberar tradução</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="597" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="560" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="399" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="363" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="552" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="395" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="359" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Release all translations</source>
       <translation>Liberar traduções todas</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="226" />
       <source>Preview translation</source>
       <translation>Pré visualizar tradução</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="368" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="232" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="557" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="364" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
       <source>Preview all translations</source>
       <translation>Previsualizar traduções todas</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="481" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="374" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="246" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="475" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="370" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="244" />
       <source>Extract messages</source>
       <translation>Extrair mensagens</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="291" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="289" />
       <source>Open</source>
       <translation>Abrir</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="319" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Remove from project</source>
       <translation>Tirar do projeto</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="595" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="526" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="320" />
+      <source>Delete</source>
+      <translation>Apagar</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="600" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="402" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="324" />
+      <source>New translation...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="603" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="532" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="322" />
-      <source>Delete</source>
-      <translation>Apagar</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="608" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="406" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="326" />
-      <source>New translation...</source>
-      <translation type="unfinished" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="327" />
+      <source>Add translation files...</source>
+      <translation>Adicionar ficheiros de tradução...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="607" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="609" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Copiar Rota à Área de Transferência</translation>
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="611" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="329" />
-      <source>Add translation files...</source>
-      <translation>Adicionar ficheiros de tradução...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="615" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="413" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="617" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Copiar Rota à Área de Transferência</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="619" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="535" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="416" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="338" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="490" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="440" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="484" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
       <source>Generate translations</source>
       <translation>Gerar traduções</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="500" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="445" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
       <source>Generate translations (with obsolete)</source>
       <translation>Gerar traduções (com obsoleto)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="515" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="455" />
       <source>Release translations</source>
       <translation>Liberar traduções</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
       <source>Preview translations</source>
       <translation>Antever traduções</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="882" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="866" />
       <source>Delete translation files</source>
       <translation>Apagar ficheiros de tradução</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="883" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="867" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation>Tem a certeza de que quer apagar estes ficheiros de tradução do projeto?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1582" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1051" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1011" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1560" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1035" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="995" />
       <source>Write temporary project file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1583" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1307" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1012" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1561" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1287" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="996" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Não há ficheiros de tradução (*.ts) selecionados.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1052" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1036" />
       <source>&lt;p&gt;The temporary project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1306" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1189" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1177" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1286" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1173" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1161" />
       <source>Translation file generation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1178" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1162" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1184" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1168" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1190" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1174" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1612" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1360" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1590" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1388" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1340" />
       <source>Process Generation Error</source>
       <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1361" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1389" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1341" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1497" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1479" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1477" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1459" />
       <source>Translation file release</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1480" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1460" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1498" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1478" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1613" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1591" />
       <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -69604,38 +69556,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="214" />
+      <location filename="../UI/PythonAstViewer.py" line="216" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="224" />
+      <location filename="../UI/PythonAstViewer.py" line="226" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="230" />
+      <location filename="../UI/PythonAstViewer.py" line="232" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="248" />
+      <location filename="../UI/PythonAstViewer.py" line="250" />
       <source>Module</source>
       <translation type="unfinished">Módulo</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="280" />
+      <location filename="../UI/PythonAstViewer.py" line="282" />
       <source>{0}: {1}</source>
       <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="297" />
-      <location filename="../UI/PythonAstViewer.py" line="287" />
+      <location filename="../UI/PythonAstViewer.py" line="299" />
+      <location filename="../UI/PythonAstViewer.py" line="289" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="304" />
+      <location filename="../UI/PythonAstViewer.py" line="306" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -71737,7 +71689,7 @@
   <context>
     <name>QtPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="154" />
+      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="139" />
       <source>Sample: {0}designer{1}</source>
       <translation type="unfinished" />
     </message>
@@ -71781,7 +71733,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Tools Directory:</source>
       <translation type="unfinished" />
     </message>
@@ -71866,7 +71817,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Virtual Environment:</source>
       <translation type="unfinished" />
     </message>
@@ -71874,7 +71824,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Select the virtual environment to be used</source>
       <translation type="unfinished" />
     </message>
@@ -71882,7 +71831,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to open the virtual environment manager dialog</source>
       <translation type="unfinished" />
     </message>
@@ -71890,7 +71838,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to refresh the list of vitual environments</source>
       <translation type="unfinished" />
     </message>
@@ -71919,7 +71866,6 @@
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Generate imports relative to '.'</source>
       <translation type="unfinished" />
     </message>
@@ -71952,26 +71898,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>pyside2-uic Options</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>PySide6</source>
       <translation type="unfinished" />
     </message>
@@ -87803,64 +87729,64 @@
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="575" />
+      <location filename="../Templates/TemplateViewer.py" line="577" />
       <source>Remove Template</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="576" />
+      <location filename="../Templates/TemplateViewer.py" line="578" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="604" />
+      <location filename="../Templates/TemplateViewer.py" line="606" />
       <source>Import Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="621" />
-      <location filename="../Templates/TemplateViewer.py" line="606" />
+      <location filename="../Templates/TemplateViewer.py" line="623" />
+      <location filename="../Templates/TemplateViewer.py" line="608" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
-      <location filename="../Templates/TemplateViewer.py" line="619" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
+      <location filename="../Templates/TemplateViewer.py" line="621" />
       <source>Export Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="654" />
+      <location filename="../Templates/TemplateViewer.py" line="656" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="655" />
+      <location filename="../Templates/TemplateViewer.py" line="657" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="675" />
+      <location filename="../Templates/TemplateViewer.py" line="677" />
       <source>Template Help</source>
       <translation type="unfinished">Ajuda de Modelo</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="676" />
+      <location filename="../Templates/TemplateViewer.py" line="678" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="938" />
+      <location filename="../Templates/TemplateViewer.py" line="940" />
       <source>Edit Template Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="939" />
+      <location filename="../Templates/TemplateViewer.py" line="941" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -91318,2586 +91244,2570 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="263" />
+      <location filename="../UI/UserInterface.py" line="265" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="319" />
+      <location filename="../UI/UserInterface.py" line="321" />
       <source>Initializing Plugin Manager...</source>
       <translation>A iniciar Gestor de Complementos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="327" />
+      <location filename="../UI/UserInterface.py" line="329" />
       <source>Generating Main User Interface...</source>
       <translation>A criar Interface Principal de Usuário...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="386" />
       <location filename="../UI/UserInterface.py" line="384" />
-      <location filename="../UI/UserInterface.py" line="382" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="593" />
+      <location filename="../UI/UserInterface.py" line="595" />
       <source>Initializing Tools...</source>
       <translation>A iniciar Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="605" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Registering Objects...</source>
       <translation>A registar Objetos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="640" />
+      <location filename="../UI/UserInterface.py" line="642" />
       <source>Initializing Actions...</source>
       <translation>A iniciar Ações...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="643" />
+      <location filename="../UI/UserInterface.py" line="645" />
       <source>Initializing Menus...</source>
       <translation>A iniciar Menús...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="648" />
       <source>Initializing Toolbars...</source>
       <translation>A iniciar Barras de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Statusbar...</source>
       <translation>A iniciar Barra de Estado...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="676" />
       <location filename="../UI/UserInterface.py" line="674" />
-      <location filename="../UI/UserInterface.py" line="672" />
       <source>Initializing Single Application Server...</source>
       <translation>A iniciar Servidor de Aplicação Única...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="683" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Activating Plugins...</source>
       <translation>A ativar Complementos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="688" />
+      <location filename="../UI/UserInterface.py" line="690" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="692" />
+      <location filename="../UI/UserInterface.py" line="694" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
+      <location filename="../UI/UserInterface.py" line="705" />
       <source>Restoring Toolbarmanager...</source>
       <translation>A restaurar Gestor da Barra de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="714" />
       <source>Setting View Profile...</source>
       <translation>A definir Perfil de Vista...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="726" />
+      <location filename="../UI/UserInterface.py" line="728" />
       <source>Reading Tasks...</source>
       <translation>A Ler Tarefas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="732" />
+      <location filename="../UI/UserInterface.py" line="734" />
       <source>Reading Templates...</source>
       <translation>A ler Modelos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="738" />
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation>A iniciar Depurador...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2212" />
-      <location filename="../UI/UserInterface.py" line="1099" />
+      <location filename="../UI/UserInterface.py" line="2214" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Left Toolbox</source>
       <translation>Caixa de Ferramentas Esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2258" />
-      <location filename="../UI/UserInterface.py" line="1109" />
+      <location filename="../UI/UserInterface.py" line="2260" />
+      <location filename="../UI/UserInterface.py" line="1111" />
       <source>Horizontal Toolbox</source>
       <translation>Caixa de Ferramentas Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2235" />
-      <location filename="../UI/UserInterface.py" line="1120" />
+      <location filename="../UI/UserInterface.py" line="2237" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Right Toolbox</source>
       <translation>Caixa de Ferramentas Direita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2054" />
-      <location filename="../UI/UserInterface.py" line="1316" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1132" />
       <source>Multiproject-Viewer</source>
       <translation>Visor de Multiprojeto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2032" />
-      <location filename="../UI/UserInterface.py" line="1322" />
-      <location filename="../UI/UserInterface.py" line="1136" />
+      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="1324" />
+      <location filename="../UI/UserInterface.py" line="1138" />
       <source>Project-Viewer</source>
       <translation>Visor de Projeto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2594" />
-      <location filename="../UI/UserInterface.py" line="2593" />
-      <location filename="../UI/UserInterface.py" line="1329" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="2596" />
+      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="1331" />
+      <location filename="../UI/UserInterface.py" line="1145" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
-      <location filename="../UI/UserInterface.py" line="2616" />
-      <location filename="../UI/UserInterface.py" line="1336" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2619" />
+      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="1338" />
+      <location filename="../UI/UserInterface.py" line="1152" />
       <source>Find File</source>
       <translation type="unfinished">Encontrar Ficheiro</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1156" />
+      <location filename="../UI/UserInterface.py" line="1344" />
+      <location filename="../UI/UserInterface.py" line="1158" />
       <source>VCS Status</source>
       <translation type="unfinished">Estado VCS</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2187" />
-      <location filename="../UI/UserInterface.py" line="1349" />
-      <location filename="../UI/UserInterface.py" line="1163" />
+      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="1351" />
+      <location filename="../UI/UserInterface.py" line="1165" />
       <source>Template-Viewer</source>
       <translation>Visor de Modelos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2120" />
-      <location filename="../UI/UserInterface.py" line="1356" />
-      <location filename="../UI/UserInterface.py" line="1170" />
+      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="1358" />
+      <location filename="../UI/UserInterface.py" line="1172" />
       <source>File-Browser</source>
       <translation>Navegador de Ficheiros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1177" />
+      <location filename="../UI/UserInterface.py" line="1365" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Symbols</source>
       <translation>Símbolos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2076" />
-      <location filename="../UI/UserInterface.py" line="1385" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1187" />
+      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="1387" />
+      <location filename="../UI/UserInterface.py" line="1381" />
+      <location filename="../UI/UserInterface.py" line="1189" />
       <source>Debug-Viewer</source>
       <translation>Visor de Depuração</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <location filename="../UI/UserInterface.py" line="2447" />
-      <location filename="../UI/UserInterface.py" line="1392" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="1394" />
+      <location filename="../UI/UserInterface.py" line="1196" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2663" />
-      <location filename="../UI/UserInterface.py" line="2662" />
-      <location filename="../UI/UserInterface.py" line="1399" />
-      <location filename="../UI/UserInterface.py" line="1201" />
+      <location filename="../UI/UserInterface.py" line="2665" />
+      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="1401" />
+      <location filename="../UI/UserInterface.py" line="1203" />
       <source>Help Viewer</source>
       <translation type="unfinished">Visor de Ajuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3611" />
-      <location filename="../UI/UserInterface.py" line="2543" />
-      <location filename="../UI/UserInterface.py" line="2542" />
-      <location filename="../UI/UserInterface.py" line="1405" />
-      <location filename="../UI/UserInterface.py" line="1207" />
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1209" />
       <source>Plugin Repository</source>
       <translation>Repositório de Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
-      <location filename="../UI/UserInterface.py" line="2566" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1213" />
+      <location filename="../UI/UserInterface.py" line="2569" />
+      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2475" />
-      <location filename="../UI/UserInterface.py" line="2474" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1220" />
+      <location filename="../UI/UserInterface.py" line="2477" />
+      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2497" />
-      <location filename="../UI/UserInterface.py" line="2496" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1225" />
+      <location filename="../UI/UserInterface.py" line="2499" />
+      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="1427" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1232" />
+      <location filename="../UI/UserInterface.py" line="1434" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>Cooperation</source>
       <translation>Colaboração</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2375" />
-      <location filename="../UI/UserInterface.py" line="1436" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1239" />
       <source>IRC</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
-      <location filename="../UI/UserInterface.py" line="2518" />
-      <location filename="../UI/UserInterface.py" line="1442" />
-      <location filename="../UI/UserInterface.py" line="1244" />
+      <location filename="../UI/UserInterface.py" line="2521" />
+      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2098" />
-      <location filename="../UI/UserInterface.py" line="1450" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1254" />
       <source>Shell</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <location filename="../UI/UserInterface.py" line="1456" />
-      <location filename="../UI/UserInterface.py" line="1256" />
+      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
       <source>Task-Viewer</source>
       <translation>Visor de Tarefas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2142" />
-      <location filename="../UI/UserInterface.py" line="1462" />
-      <location filename="../UI/UserInterface.py" line="1260" />
+      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="1464" />
+      <location filename="../UI/UserInterface.py" line="1262" />
       <source>Log-Viewer</source>
       <translation>Visor de Registos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1469" />
-      <location filename="../UI/UserInterface.py" line="1267" />
+      <location filename="../UI/UserInterface.py" line="1471" />
+      <location filename="../UI/UserInterface.py" line="1269" />
       <source>Numbers</source>
       <translation>Números</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1844" />
+      <location filename="../UI/UserInterface.py" line="1846" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - Modo Passivo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <location filename="../UI/UserInterface.py" line="1847" />
+      <location filename="../UI/UserInterface.py" line="1855" />
+      <location filename="../UI/UserInterface.py" line="1849" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} - {1} - Modo Passivo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
+      <location filename="../UI/UserInterface.py" line="1861" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} - {1} - {2} - Modo Passivo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1885" />
-      <source>Quit</source>
-      <translation>Sair</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1887" />
+      <source>Quit</source>
+      <translation>Sair</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1889" />
       <source>&amp;Quit</source>
       <translation>Sai&amp;r</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1888" />
+      <location filename="../UI/UserInterface.py" line="1890" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Quit the IDE</source>
-      <translation>Sair do IDE</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1895" />
+      <source>Quit the IDE</source>
+      <translation>Sair do IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1897" />
       <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sair do IDE&lt;/b&gt;&lt;p&gt;Isto sai do IDE. Pode gravar antes as alterações. Qualquer programa Python que esteja a ser depurado será parado e as preferências serão escritas no disco.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1911" />
       <location filename="../UI/UserInterface.py" line="1909" />
-      <location filename="../UI/UserInterface.py" line="1907" />
       <source>Restart</source>
       <translation type="unfinished">Reiniciar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1910" />
+      <location filename="../UI/UserInterface.py" line="1912" />
       <source>Ctrl+Shift+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1915" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1917" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1919" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <location filename="../UI/UserInterface.py" line="1928" />
-      <source>Save session</source>
-      <translation>Guargar sessão</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1937" />
+      <location filename="../UI/UserInterface.py" line="1930" />
+      <source>Save session</source>
+      <translation>Guargar sessão</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1931" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7892" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <location filename="../UI/UserInterface.py" line="1947" />
+      <location filename="../UI/UserInterface.py" line="7866" />
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1949" />
       <source>Load session</source>
       <translation type="unfinished">Carregar sessão</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
+      <location filename="../UI/UserInterface.py" line="1950" />
       <source>Load session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1958" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1966" />
-      <source>New Window</source>
-      <translation>Nova Janela</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1968" />
+      <source>New Window</source>
+      <translation>Nova Janela</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1970" />
       <source>New &amp;Window</source>
       <translation>Nova &amp;Janela</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1969" />
+      <location filename="../UI/UserInterface.py" line="1971" />
       <source>Ctrl+Shift+N</source>
       <comment>File|New Window</comment>
       <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1974" />
+      <location filename="../UI/UserInterface.py" line="1976" />
       <source>Open a new eric instance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1976" />
+      <location filename="../UI/UserInterface.py" line="1978" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1992" />
       <location filename="../UI/UserInterface.py" line="1990" />
-      <location filename="../UI/UserInterface.py" line="1988" />
       <source>Edit Profile</source>
       <translation>Perfil de Edição</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1997" />
-      <source>Activate the edit view profile</source>
-      <translation>Ativar o perfil de vista de edição</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Activate the edit view profile</source>
+      <translation>Ativar o perfil de vista de edição</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2001" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfil de Edição&lt;/b&gt;&lt;p&gt;Activa o "Perfil da Vista de Edição". As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo "Configuração de Vista do Perfil"&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2014" />
       <location filename="../UI/UserInterface.py" line="2012" />
-      <location filename="../UI/UserInterface.py" line="2010" />
       <source>Debug Profile</source>
       <translation>Perfil de Depuração</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2019" />
-      <source>Activate the debug view profile</source>
-      <translation>Ativar o perfile de vista de depuração</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Activate the debug view profile</source>
+      <translation>Ativar o perfile de vista de depuração</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfil de Depuração&lt;/b&gt;&lt;p&gt;Activa o "Perfile da Vista de Depuração". As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo "Configuração de Vista do Perfil"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2033" />
+      <location filename="../UI/UserInterface.py" line="2035" />
       <source>&amp;Project-Viewer</source>
       <translation>Visor de &amp;Projeto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="2036" />
       <source>Alt+Shift+P</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2040" />
+      <location filename="../UI/UserInterface.py" line="2042" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2043" />
+      <location filename="../UI/UserInterface.py" line="2045" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2055" />
+      <location filename="../UI/UserInterface.py" line="2057" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>Visor de &amp;Multiprojeto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="2058" />
       <source>Alt+Shift+M</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2062" />
+      <location filename="../UI/UserInterface.py" line="2064" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2065" />
+      <location filename="../UI/UserInterface.py" line="2067" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2077" />
+      <location filename="../UI/UserInterface.py" line="2079" />
       <source>&amp;Debug-Viewer</source>
       <translation>Visor de &amp;Depuração</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="2080" />
       <source>Alt+Shift+D</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2084" />
+      <location filename="../UI/UserInterface.py" line="2086" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2087" />
+      <location filename="../UI/UserInterface.py" line="2089" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2099" />
+      <location filename="../UI/UserInterface.py" line="2101" />
       <source>&amp;Shell</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="2102" />
       <source>Alt+Shift+S</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2106" />
+      <location filename="../UI/UserInterface.py" line="2108" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2109" />
+      <location filename="../UI/UserInterface.py" line="2111" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2121" />
+      <location filename="../UI/UserInterface.py" line="2123" />
       <source>&amp;File-Browser</source>
       <translation>Navegador de &amp;Ficheiros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="2124" />
       <source>Alt+Shift+F</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2128" />
+      <location filename="../UI/UserInterface.py" line="2130" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2131" />
+      <location filename="../UI/UserInterface.py" line="2133" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2143" />
+      <location filename="../UI/UserInterface.py" line="2145" />
       <source>Lo&amp;g-Viewer</source>
       <translation>Visor de Re&amp;gistos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="2146" />
       <source>Alt+Shift+G</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2150" />
+      <location filename="../UI/UserInterface.py" line="2152" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="2155" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2165" />
+      <location filename="../UI/UserInterface.py" line="2167" />
       <source>&amp;Task-Viewer</source>
       <translation>Visor de &amp;Tarefas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="2168" />
       <source>Alt+Shift+T</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2174" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation>Muda o enfoque de entrada à janela do Visor de Tarefas.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2190" />
       <source>Templ&amp;ate-Viewer</source>
       <translation>Visor de Mod&amp;elos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="2191" />
       <source>Alt+Shift+A</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2197" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation>Muda o enfoque de entrada à janela do Visor de Modelos.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2198" />
+      <location filename="../UI/UserInterface.py" line="2200" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2213" />
+      <location filename="../UI/UserInterface.py" line="2215" />
       <source>&amp;Left Toolbox</source>
       <translation>Caixa de Ferramentas &amp;Esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2220" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2222" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2236" />
+      <location filename="../UI/UserInterface.py" line="2238" />
       <source>&amp;Right Toolbox</source>
       <translation>Caixa de Ferramentas Di&amp;reita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2243" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2245" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2259" />
+      <location filename="../UI/UserInterface.py" line="2261" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Caixa de Ferramentas &amp;Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2266" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation>Alternar a janela de Caixa de Ferramentas Horizontal</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2268" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation>Alternar a janela de Caixa de Ferramentas Horizontal</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2281" />
+      <location filename="../UI/UserInterface.py" line="2283" />
       <source>Left Sidebar</source>
       <translation>Barra Esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2282" />
+      <location filename="../UI/UserInterface.py" line="2284" />
       <source>&amp;Left Sidebar</source>
       <translation>Barra Lateral &amp;Esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2289" />
-      <source>Toggle the left sidebar window</source>
-      <translation>Alternar a janela da barra lateral esquerda</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2291" />
+      <source>Toggle the left sidebar window</source>
+      <translation>Alternar a janela da barra lateral esquerda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2304" />
+      <location filename="../UI/UserInterface.py" line="2306" />
       <source>Right Sidebar</source>
       <translation>Barra Direita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2305" />
+      <location filename="../UI/UserInterface.py" line="2307" />
       <source>&amp;Right Sidebar</source>
       <translation>Barra Lateral Di&amp;reita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2312" />
-      <source>Toggle the right sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2314" />
+      <source>Toggle the right sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2329" />
       <source>Bottom Sidebar</source>
       <translation>Barra Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2328" />
+      <location filename="../UI/UserInterface.py" line="2330" />
       <source>&amp;Bottom Sidebar</source>
       <translation>Barra Lateral &amp;Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation>Alternar janela da barra lateral inferior</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2337" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation>Alternar janela da barra lateral inferior</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Alternar janela da barra lateral inferior&lt;/b&gt;&lt;p&gt;Mostra a janela da barra lateral inferior se está escondida. Esconde-a se está visível.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2350" />
-      <source>Cooperation-Viewer</source>
-      <translation>Visor de Colaboração</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2351" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation>Visor de C&amp;olaboração</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2352" />
+      <source>Cooperation-Viewer</source>
+      <translation>Visor de Colaboração</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2353" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation>Visor de C&amp;olaboração</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2354" />
       <source>Alt+Shift+O</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
+      <location filename="../UI/UserInterface.py" line="2360" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2361" />
+      <location filename="../UI/UserInterface.py" line="2363" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ativar Visor de Colaboração&lt;/b&gt;&lt;p&gt;Muda o enfoque de entrada para a janela do Visualizador de Colaboração.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2376" />
+      <location filename="../UI/UserInterface.py" line="2378" />
       <source>&amp;IRC</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="2379" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2383" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2386" />
+      <location filename="../UI/UserInterface.py" line="2388" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2397" />
-      <source>Symbols-Viewer</source>
-      <translation>Visor de Símbolos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2398" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>V&amp;isor de Símbolos</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2399" />
+      <source>Symbols-Viewer</source>
+      <translation>Visor de Símbolos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2400" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>V&amp;isor de Símbolos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2401" />
       <source>Alt+Shift+Y</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2407" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2408" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2422" />
-      <source>Numbers-Viewer</source>
-      <translation>Visor de Números</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2423" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>Visor de Nú&amp;meros</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2424" />
+      <source>Numbers-Viewer</source>
+      <translation>Visor de Números</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation>Visor de Nú&amp;meros</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2426" />
       <source>Alt+Shift+B</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
+      <location filename="../UI/UserInterface.py" line="2432" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2433" />
+      <location filename="../UI/UserInterface.py" line="2435" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="2451" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2455" />
+      <location filename="../UI/UserInterface.py" line="2457" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2460" />
+      <location filename="../UI/UserInterface.py" line="2462" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="2478" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2482" />
+      <location filename="../UI/UserInterface.py" line="2484" />
       <source>Switch the input focus to the PyPI Package Management window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2487" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="2500" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2504" />
+      <location filename="../UI/UserInterface.py" line="2506" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="2522" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2528" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2529" />
+      <location filename="../UI/UserInterface.py" line="2531" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="2546" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2552" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2553" />
+      <location filename="../UI/UserInterface.py" line="2555" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="2570" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2574" />
+      <location filename="../UI/UserInterface.py" line="2576" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2579" />
+      <location filename="../UI/UserInterface.py" line="2581" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="2597" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2603" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="2620" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2626" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2641" />
-      <location filename="../UI/UserInterface.py" line="2640" />
+      <location filename="../UI/UserInterface.py" line="2643" />
+      <location filename="../UI/UserInterface.py" line="2642" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2642" />
+      <location filename="../UI/UserInterface.py" line="2644" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2648" />
+      <location filename="../UI/UserInterface.py" line="2650" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2653" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="2666" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
+      <location filename="../UI/UserInterface.py" line="2672" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2673" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2686" />
-      <source>What's This?</source>
-      <translation>O que é Isto?</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2688" />
+      <source>What's This?</source>
+      <translation>O que é Isto?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2690" />
       <source>&amp;What's This?</source>
       <translation>O &amp;que é Isto?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2689" />
+      <location filename="../UI/UserInterface.py" line="2691" />
       <source>Shift+F1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>Context sensitive help</source>
-      <translation type="unfinished">Ajuda sensível ao contexto</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2696" />
+      <source>Context sensitive help</source>
+      <translation type="unfinished">Ajuda sensível ao contexto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Mostrar ajuda sensível a contexto&lt;/b&gt;&lt;p&gt;No modo 'Que é Isto?' o cursor do rato mostra uma flecha com um ponto de  interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2709" />
-      <source>Helpviewer</source>
-      <translation>Visor de Ajuda</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2711" />
+      <source>Helpviewer</source>
+      <translation>Visor de Ajuda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2713" />
       <source>&amp;Helpviewer...</source>
       <translation>Visor de &amp;Ajuda...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2714" />
       <source>F1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2717" />
-      <source>Open the helpviewer window</source>
-      <translation>Abrir a janela do visor de ajuda</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2719" />
+      <source>Open the helpviewer window</source>
+      <translation>Abrir a janela do visor de ajuda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2739" />
+      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Versions</source>
       <translation>Mostrar Versões</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2740" />
+      <location filename="../UI/UserInterface.py" line="2742" />
       <source>Show &amp;Versions</source>
       <translation>Mostrar &amp;Versões</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <source>Display version information</source>
-      <translation>Mostrar a informação da versão</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2748" />
+      <source>Display version information</source>
+      <translation>Mostrar a informação da versão</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2754" />
+      <location filename="../UI/UserInterface.py" line="2756" />
       <source>Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2757" />
       <source>&amp;Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2764" />
       <source>Copy version information to the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2765" />
+      <location filename="../UI/UserInterface.py" line="2767" />
       <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2781" />
-      <location filename="../UI/UserInterface.py" line="2774" />
-      <source>Show Error Log</source>
-      <translation>Mostrar Registo de Erros</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Show Error &amp;Log...</source>
-      <translation>Mostrar &amp;Registo de Erros...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2783" />
+      <location filename="../UI/UserInterface.py" line="2776" />
+      <source>Show Error Log</source>
+      <translation>Mostrar Registo de Erros</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2777" />
+      <source>Show Error &amp;Log...</source>
+      <translation>Mostrar &amp;Registo de Erros...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2785" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
+      <location filename="../UI/UserInterface.py" line="2794" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2795" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
-      <source>Show Installation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Show Installation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4738" />
-      <location filename="../UI/UserInterface.py" line="2811" />
+      <location filename="../UI/UserInterface.py" line="4712" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>Report Bug</source>
       <translation>Reportar Falho</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2811" />
-      <source>Report &amp;Bug...</source>
-      <translation>Reportar &amp;Falho...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2813" />
-      <source>Report a bug</source>
-      <translation>Reportar um falho</translation>
+      <source>Report &amp;Bug...</source>
+      <translation>Reportar &amp;Falho...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2815" />
+      <source>Report a bug</source>
+      <translation>Reportar um falho</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reportar Falho...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para reportar um falho.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2821" />
+      <location filename="../UI/UserInterface.py" line="2823" />
       <source>Request Feature</source>
       <translation>Solicitar Característica</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2824" />
       <source>Request &amp;Feature...</source>
       <translation>Solicitar Ca&amp;racterística...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2828" />
-      <source>Send a feature request</source>
-      <translation>Enviar uma solicitude de característica</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2830" />
+      <source>Send a feature request</source>
+      <translation>Enviar uma solicitude de característica</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Solicitar Característica...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para enviar uma solicitude de característica.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4174" />
-      <location filename="../UI/UserInterface.py" line="2841" />
-      <source>Testing</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../UI/UserInterface.py" line="4148" />
       <location filename="../UI/UserInterface.py" line="2843" />
+      <source>Testing</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2845" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2849" />
-      <source>Start the testing dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2851" />
+      <source>Start the testing dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
-      <source>Restart Last Test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2864" />
+      <source>Restart Last Test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2866" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2870" />
-      <source>Restarts the last test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2872" />
+      <source>Restarts the last test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2882" />
-      <source>Rerun Failed Tests</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2884" />
+      <source>Rerun Failed Tests</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2886" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
+      <location filename="../UI/UserInterface.py" line="2896" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2906" />
+      <source>Test Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2908" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2914" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2916" />
       <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2923" />
+      <source>Test Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2925" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Run tests of the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2931" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2933" />
       <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
-      <source>Qt-Designer</source>
-      <translation />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2942" />
+      <source>Qt-Designer</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2944" />
       <source>Qt-&amp;Designer...</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start Qt-Designer</source>
-      <translation>Iniciar Qt-Designer</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2950" />
+      <source>Start Qt-Designer</source>
+      <translation>Iniciar Qt-Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2959" />
-      <source>Qt-Linguist</source>
-      <translation />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2961" />
+      <source>Qt-Linguist</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2963" />
       <source>Qt-&amp;Linguist...</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2967" />
-      <source>Start Qt-Linguist</source>
-      <translation>Iniciar Qt-Linguist</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2969" />
+      <source>Start Qt-Linguist</source>
+      <translation>Iniciar Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2971" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>UI Previewer</source>
-      <translation>Antevisor de UI</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2979" />
+      <source>UI Previewer</source>
+      <translation>Antevisor de UI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
       <source>&amp;UI Previewer...</source>
       <translation>Antevisor &amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
-      <source>Start the UI Previewer</source>
-      <translation>Iniciar Antevisor de UI</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2987" />
+      <source>Start the UI Previewer</source>
+      <translation>Iniciar Antevisor de UI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Antevisor de UI&lt;/b&gt;&lt;p&gt;Inicia o Antevisor de UI.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2993" />
-      <source>Translations Previewer</source>
-      <translation>Antevisor de Traduções</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2995" />
+      <source>Translations Previewer</source>
+      <translation>Antevisor de Traduções</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2997" />
       <source>&amp;Translations Previewer...</source>
       <translation>Antevisor de &amp;Traduções...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <source>Start the Translations Previewer</source>
-      <translation>Iniciar Antevisor de Traduções</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3003" />
+      <source>Start the Translations Previewer</source>
+      <translation>Iniciar Antevisor de Traduções</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3005" />
       <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3012" />
-      <source>Compare Files</source>
-      <translation>Comparar Ficheiros</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3014" />
+      <source>Compare Files</source>
+      <translation>Comparar Ficheiros</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3016" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Comparar Ficheiros...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
-      <location filename="../UI/UserInterface.py" line="3020" />
-      <source>Compare two files</source>
-      <translation>Comparar dois ficheiros</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
-      <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3031" />
-      <source>Compare Files side by side</source>
-      <translation>Comparar Ficheiros lado-a-lado</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3033" />
-      <source>Compare &amp;Files side by side...</source>
-      <translation>Comparar &amp;Ficheiros lado-a-lado...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3022" />
+      <source>Compare two files</source>
+      <translation>Comparar dois ficheiros</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3024" />
+      <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3033" />
+      <source>Compare Files side by side</source>
+      <translation>Comparar Ficheiros lado-a-lado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3035" />
+      <source>Compare &amp;Files side by side...</source>
+      <translation>Comparar &amp;Ficheiros lado-a-lado...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3043" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>SQL Browser</source>
-      <translation>Navegador SQL</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3053" />
+      <source>SQL Browser</source>
+      <translation>Navegador SQL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3055" />
       <source>SQL &amp;Browser...</source>
       <translation>Navegador S&amp;QL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>Browse a SQL database</source>
-      <translation>Navegar numa base de dados SQL</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3061" />
+      <source>Browse a SQL database</source>
+      <translation>Navegar numa base de dados SQL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Navegador SQL&lt;/b&gt;&lt;p&gt;Navegar numa base de dados SQL.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3075" />
-      <location filename="../UI/UserInterface.py" line="3067" />
-      <source>Mini Editor</source>
-      <translation>Mini Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini &amp;Editor...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <location filename="../UI/UserInterface.py" line="3069" />
+      <source>Mini Editor</source>
+      <translation>Mini Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3071" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini &amp;Editor...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3079" />
       <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo com um editor simplificado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3086" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3088" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3090" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3094" />
-      <source>Start the eric Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>Start the eric Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3106" />
-      <source>eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3108" />
+      <source>eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3110" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3114" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3116" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3118" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3126" />
-      <source>FIDO2 Security Key Management</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3128" />
+      <source>FIDO2 Security Key Management</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3130" />
       <source>FIDO2 Security Key Management...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3135" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>Start the FIDO2 Security Key Management tool</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
+      <location filename="../UI/UserInterface.py" line="3140" />
       <source>&lt;b&gt;FIDO2 Security Key Management&lt;/b&gt;&lt;p&gt;Start a tool to manage FIDO2 securit y keys.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Icon Editor</source>
-      <translation>Editor de Ícones</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3151" />
+      <source>Icon Editor</source>
+      <translation>Editor de Ícones</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3153" />
       <source>&amp;Icon Editor...</source>
       <translation>Editor de &amp;Ícones...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
-      <source>Start the eric Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3159" />
+      <source>Start the eric Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3161" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6631" />
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="6605" />
+      <location filename="../UI/UserInterface.py" line="3173" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3173" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <source>Take snapshots of a screen region</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3181" />
+      <source>Take snapshots of a screen region</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3193" />
+      <source>eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>eric PDF &amp;Viewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3199" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3201" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
-      <source>Preferences</source>
-      <translation>Preferências</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3212" />
+      <source>Preferences</source>
+      <translation>Preferências</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Preferências...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Set the prefered configuration</source>
-      <translation>Definir a configuração desejada</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3220" />
+      <source>Set the prefered configuration</source>
+      <translation>Definir a configuração desejada</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3222" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Preferências&lt;/b&gt;&lt;p&gt;Define os elementos de configuração da aplicação com os valores desejados.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Export Preferences</source>
-      <translation>Exportar Preferências</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3233" />
+      <source>Export Preferences</source>
+      <translation>Exportar Preferências</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;xportar Preferências...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
-      <source>Export the current configuration</source>
-      <translation>Exportar a configuração atual</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3241" />
+      <source>Export the current configuration</source>
+      <translation>Exportar a configuração atual</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exportar Preferências&lt;/b&gt;&lt;p&gt;Exporta a configuração atual a um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
-      <source>Import Preferences</source>
-      <translation>Importar Preferências</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3252" />
+      <source>Import Preferences</source>
+      <translation>Importar Preferências</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
       <source>I&amp;mport Preferences...</source>
       <translation>&amp;Importar Preferências...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3261" />
       <source>Import a previously exported configuration</source>
       <translation>Importar uma configuração exportada antes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3262" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importar Preferências&lt;/b&gt;&lt;p&gt;Importa uma configuração anteriormente exportada.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
-      <source>Export Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3273" />
+      <source>Export Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3281" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3290" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3292" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
-      <source>Import a previously exported theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3300" />
+      <source>Import a previously exported theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3302" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload APIs</source>
-      <translation>Recarregar APIs</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload &amp;APIs</source>
-      <translation>Recarregar &amp;APIs</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3311" />
-      <source>Reload the API information</source>
-      <translation>Recarregar a informação de API</translation>
+      <source>Reload APIs</source>
+      <translation>Recarregar APIs</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3311" />
+      <source>Reload &amp;APIs</source>
+      <translation>Recarregar &amp;APIs</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Reload the API information</source>
+      <translation>Recarregar a informação de API</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <location filename="../UI/UserInterface.py" line="3319" />
-      <source>Show external tools</source>
-      <translation>Mostrar ferramentas externas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Show external &amp;tools</source>
-      <translation>Mostrar &amp;ferramentas externas</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3329" />
+      <location filename="../UI/UserInterface.py" line="3321" />
+      <source>Show external tools</source>
+      <translation>Mostrar ferramentas externas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3323" />
+      <source>Show external &amp;tools</source>
+      <translation>Mostrar &amp;ferramentas externas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3331" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>View Profiles</source>
-      <translation>Perfiles de Vista</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3341" />
+      <source>View Profiles</source>
+      <translation>Perfiles de Vista</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3343" />
       <source>&amp;View Profiles...</source>
       <translation>Perfiles de &amp;Vista...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Configure view profiles</source>
-      <translation>Configurar perfiles de vista</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Configure view profiles</source>
+      <translation>Configurar perfiles de vista</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfiles de Vista&lt;/b&gt;&lt;p&gt;Configurar os perfiles de vista. Com esta caixa de diálogo pode definir a visibilidade de várias janelas para os perfiles de vista predefinidos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
-      <source>Toolbars</source>
-      <translation>Barras de Ferramentas</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3362" />
+      <source>Toolbars</source>
+      <translation>Barras de Ferramentas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3364" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Barras de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
-      <source>Configure toolbars</source>
-      <translation>Configurar as barras de ferramentas</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3370" />
+      <source>Configure toolbars</source>
+      <translation>Configurar as barras de ferramentas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3372" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
-      <source>Keyboard Shortcuts</source>
-      <translation>Atalhos de Teclado</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3383" />
+      <source>Keyboard Shortcuts</source>
+      <translation>Atalhos de Teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Atalho&amp;s de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3389" />
-      <source>Set the keyboard shortcuts</source>
-      <translation>Definir os atalhos de teclado</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3391" />
+      <source>Set the keyboard shortcuts</source>
+      <translation>Definir os atalhos de teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7600" />
-      <location filename="../UI/UserInterface.py" line="7581" />
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7555" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportar Atalhos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Exportar Atalhos de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Exportar os Atalhos de Teclado</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3411" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Exportar os Atalhos de Teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3413" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7619" />
-      <location filename="../UI/UserInterface.py" line="3420" />
+      <location filename="../UI/UserInterface.py" line="7593" />
+      <location filename="../UI/UserInterface.py" line="3422" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importar Atalhos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Importar Atalhos de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3428" />
-      <source>Import the keyboard shortcuts</source>
-      <translation>Importar os atalhos de teclado</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3430" />
+      <source>Import the keyboard shortcuts</source>
+      <translation>Importar os atalhos de teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3432" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3440" />
-      <source>Manage SSL Certificates</source>
-      <translation>Gestionar Certificados SSL</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3442" />
+      <source>Manage SSL Certificates</source>
+      <translation>Gestionar Certificados SSL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3444" />
       <source>Manage SSL Certificates...</source>
       <translation>Gestionar Certificados SSL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Manage the saved SSL certificates</source>
       <translation>Gestionar certificados SSL gravados</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3454" />
       <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3462" />
-      <source>Edit Message Filters</source>
-      <translation>Editar Filtros de Mensagens</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3464" />
+      <source>Edit Message Filters</source>
+      <translation>Editar Filtros de Mensagens</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3466" />
       <source>Edit Message Filters...</source>
       <translation>Editar Filtros de Mensagens...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3474" />
+      <location filename="../UI/UserInterface.py" line="3476" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <location filename="../UI/UserInterface.py" line="3487" />
-      <location filename="../UI/UserInterface.py" line="3485" />
-      <source>Clear private data</source>
-      <translation type="unfinished">Limpar dados privados</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3489" />
+      <location filename="../UI/UserInterface.py" line="3487" />
+      <source>Clear private data</source>
+      <translation type="unfinished">Limpar dados privados</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3506" />
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3508" />
+      <location filename="../UI/UserInterface.py" line="3507" />
       <source>Activate current editor</source>
       <translation>Ativar o editor atual</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3507" />
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Alt+Shift+E</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3518" />
-      <location filename="../UI/UserInterface.py" line="3517" />
+      <location filename="../UI/UserInterface.py" line="3520" />
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>Show next</source>
       <translation>Mostrar próximo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3519" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Ctrl+Alt+Tab</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3530" />
-      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <source>Show previous</source>
       <translation>Mostrar anterior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3533" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3542" />
-      <location filename="../UI/UserInterface.py" line="3541" />
+      <location filename="../UI/UserInterface.py" line="3544" />
+      <location filename="../UI/UserInterface.py" line="3543" />
       <source>Switch between tabs</source>
       <translation>Mudar entre separadores</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3543" />
+      <location filename="../UI/UserInterface.py" line="3545" />
       <source>Ctrl+1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3553" />
-      <source>Plugin Infos</source>
-      <translation>Informação dos Complementos</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3555" />
+      <source>Plugin Infos</source>
+      <translation>Informação dos Complementos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>&amp;Plugin Infos...</source>
       <translation>Informação dos &amp;Complementos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3561" />
-      <source>Show Plugin Infos</source>
-      <translation>Mostrar Informação dos Complementos</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3563" />
+      <source>Show Plugin Infos</source>
+      <translation>Mostrar Informação dos Complementos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3565" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Informação dos Complementos...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo que mostra alguma informação sobre os complementos carregados.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3581" />
-      <location filename="../UI/UserInterface.py" line="3573" />
-      <source>Install Plugins</source>
-      <translation>Instalar Complementos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3575" />
-      <source>&amp;Install Plugins...</source>
-      <translation>&amp;Instalar Complementos...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <source>Install Plugins</source>
+      <translation>Instalar Complementos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>&amp;Install Plugins...</source>
+      <translation>&amp;Instalar Complementos...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Instalar Complementos...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para instalar ou atualizar complementos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3600" />
-      <location filename="../UI/UserInterface.py" line="3592" />
-      <source>Uninstall Plugin</source>
-      <translation>Desinstalar Complemento</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>&amp;Desinstalar Complemento...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3602" />
+      <location filename="../UI/UserInterface.py" line="3594" />
+      <source>Uninstall Plugin</source>
+      <translation>Desinstalar Complemento</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3596" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>&amp;Desinstalar Complemento...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Desinstalar Complemento...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para desinstalar um complemento.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3615" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Repositório de Complementos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3619" />
-      <source>Show Plugins available for download</source>
-      <translation>Mostrar Complementos disponíveis para descarregar</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3621" />
+      <source>Show Plugins available for download</source>
+      <translation>Mostrar Complementos disponíveis para descarregar</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3623" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Repositório de Complementos...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo que mostra a lista de complementos disponíveis em Internet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3651" />
-      <location filename="../UI/UserInterface.py" line="3650" />
+      <location filename="../UI/UserInterface.py" line="3653" />
+      <location filename="../UI/UserInterface.py" line="3652" />
       <source>Qt5 Documentation</source>
       <translation>Documentação de Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>Open Qt5 Documentation</source>
-      <translation>Abrir a Documentação de Qt5</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3659" />
+      <source>Open Qt5 Documentation</source>
+      <translation>Abrir a Documentação de Qt5</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3672" />
-      <location filename="../UI/UserInterface.py" line="3671" />
+      <location filename="../UI/UserInterface.py" line="3674" />
+      <location filename="../UI/UserInterface.py" line="3673" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Documentação de Qt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3678" />
-      <source>Open Qt6 Documentation</source>
-      <translation type="unfinished">Abrir a Documentação de Qt5 {6 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3680" />
+      <source>Open Qt6 Documentation</source>
+      <translation type="unfinished">Abrir a Documentação de Qt5 {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3682" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3693" />
-      <location filename="../UI/UserInterface.py" line="3692" />
+      <location filename="../UI/UserInterface.py" line="3695" />
+      <location filename="../UI/UserInterface.py" line="3694" />
       <source>PyQt5 Documentation</source>
       <translation>Documentação do PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3699" />
-      <source>Open PyQt5 Documentation</source>
-      <translation>Abrir a Documentação de PyQt5</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Open PyQt5 Documentation</source>
+      <translation>Abrir a Documentação de PyQt5</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3714" />
-      <location filename="../UI/UserInterface.py" line="3713" />
+      <location filename="../UI/UserInterface.py" line="3716" />
+      <location filename="../UI/UserInterface.py" line="3715" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">Documentação do PyQt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3720" />
-      <source>Open PyQt6 Documentation</source>
-      <translation type="unfinished">Abrir a Documentação de PyQt5 {6 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3722" />
+      <source>Open PyQt6 Documentation</source>
+      <translation type="unfinished">Abrir a Documentação de PyQt5 {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3724" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3740" />
-      <location filename="../UI/UserInterface.py" line="3739" />
+      <location filename="../UI/UserInterface.py" line="3742" />
+      <location filename="../UI/UserInterface.py" line="3741" />
       <source>Python 3 Documentation</source>
       <translation>Documentação de Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3746" />
-      <source>Open Python 3 Documentation</source>
-      <translation>Abrir a Documentação de Python 3</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3748" />
+      <source>Open Python 3 Documentation</source>
+      <translation>Abrir a Documentação de Python 3</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3750" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3767" />
-      <location filename="../UI/UserInterface.py" line="3766" />
+      <location filename="../UI/UserInterface.py" line="3769" />
+      <location filename="../UI/UserInterface.py" line="3768" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3773" />
-      <source>Open eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3775" />
+      <source>Open eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3777" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3793" />
-      <location filename="../UI/UserInterface.py" line="3792" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3799" />
-      <source>Open PySide2 Documentation</source>
+      <location filename="../UI/UserInterface.py" line="3795" />
+      <location filename="../UI/UserInterface.py" line="3794" />
+      <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3801" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3819" />
-      <location filename="../UI/UserInterface.py" line="3818" />
-      <source>PySide6 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3825" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3827" />
+      <location filename="../UI/UserInterface.py" line="3803" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3863" />
+      <location filename="../UI/UserInterface.py" line="3839" />
       <source>Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3944" />
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>E&amp;xtras</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3954" />
+      <location filename="../UI/UserInterface.py" line="3930" />
       <source>Wi&amp;zards</source>
       <translation>A&amp;ssistentes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3948" />
       <source>P&amp;lugins</source>
       <translation>Comp&amp;lementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="3957" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3990" />
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="3983" />
       <source>Select Tool Group</source>
       <translation>Selecionar Grupo de Ferramentas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4018" />
+      <location filename="../UI/UserInterface.py" line="3994" />
       <source>Se&amp;ttings</source>
       <translation>Definiçõe&amp;s</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4051" />
+      <location filename="../UI/UserInterface.py" line="4027" />
       <source>&amp;Window</source>
       <translation>&amp;Janela</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4060" />
+      <location filename="../UI/UserInterface.py" line="4036" />
       <source>&amp;Windows</source>
       <translation>&amp;Janelas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4064" />
+      <location filename="../UI/UserInterface.py" line="4040" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4068" />
+      <location filename="../UI/UserInterface.py" line="4044" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4087" />
+      <location filename="../UI/UserInterface.py" line="4063" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4106" />
+      <location filename="../UI/UserInterface.py" line="4082" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4090" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="4096" />
       <source>&amp;Toolbars</source>
       <translation>Barras de Ferramen&amp;tas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4133" />
+      <location filename="../UI/UserInterface.py" line="4109" />
       <source>&amp;Help</source>
       <translation>&amp;Ajuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4190" />
-      <location filename="../UI/UserInterface.py" line="4173" />
+      <location filename="../UI/UserInterface.py" line="4164" />
+      <location filename="../UI/UserInterface.py" line="4147" />
       <source>Tools</source>
       <translation>Ferramentas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4192" />
-      <location filename="../UI/UserInterface.py" line="4177" />
+      <location filename="../UI/UserInterface.py" line="4166" />
+      <location filename="../UI/UserInterface.py" line="4151" />
       <source>Settings</source>
       <translation>Definições</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6361" />
-      <location filename="../UI/UserInterface.py" line="4193" />
-      <location filename="../UI/UserInterface.py" line="4178" />
+      <location filename="../UI/UserInterface.py" line="6335" />
+      <location filename="../UI/UserInterface.py" line="4167" />
+      <location filename="../UI/UserInterface.py" line="4152" />
       <source>Help</source>
       <translation>Ajuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4194" />
-      <location filename="../UI/UserInterface.py" line="4179" />
+      <location filename="../UI/UserInterface.py" line="4168" />
+      <location filename="../UI/UserInterface.py" line="4153" />
       <source>Profiles</source>
       <translation>Perfiles</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4195" />
-      <location filename="../UI/UserInterface.py" line="4180" />
+      <location filename="../UI/UserInterface.py" line="4169" />
+      <location filename="../UI/UserInterface.py" line="4154" />
       <source>Plugins</source>
       <translation>Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4191" />
+      <location filename="../UI/UserInterface.py" line="4165" />
       <source>Unittest</source>
       <translation>Teste Unitário</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4368" />
+      <location filename="../UI/UserInterface.py" line="4342" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4377" />
+      <location filename="../UI/UserInterface.py" line="4351" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4386" />
+      <location filename="../UI/UserInterface.py" line="4360" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4395" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4404" />
+      <location filename="../UI/UserInterface.py" line="4378" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
+      <location filename="../UI/UserInterface.py" line="4387" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4427" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4501" />
-      <location filename="../UI/UserInterface.py" line="4460" />
+      <location filename="../UI/UserInterface.py" line="4475" />
+      <location filename="../UI/UserInterface.py" line="4434" />
       <source>External Tools/{0}</source>
       <translation>Ferramentas Externas/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4609" />
+      <location filename="../UI/UserInterface.py" line="4583" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation type="unfinished">&lt;h3&gt;Números de Versão&lt;/h3&gt;&lt;table&gt; {2&gt;?} {2&gt;?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4679" />
+      <location filename="../UI/UserInterface.py" line="4653" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4683" />
+      <location filename="../UI/UserInterface.py" line="4657" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4739" />
+      <location filename="../UI/UserInterface.py" line="4713" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>A direção do correio eletrónico ou a direção do servidor de correio está vazia. Por favor configure as Definiçães de Correio Eletrónico na Caixa de Diálogo de Preferências.</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5048" />
+      <source>Restart application</source>
+      <translation>Reiniciar a aplicação</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5049" />
+      <source>The application needs to be restarted. Do it now?</source>
+      <translation>A aplicação necessita ser reiniciada. Reiniciar agora?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5073" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5074" />
-      <source>Restart application</source>
-      <translation>Reiniciar a aplicação</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5075" />
-      <source>The application needs to be restarted. Do it now?</source>
-      <translation>A aplicação necessita ser reiniciada. Reiniciar agora?</translation>
+      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+
+Shall the upgrade be done now?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5098" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5099" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5100" />
-      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5124" />
-      <source>Upgrade Eric</source>
+      <source>Upgrade Eric and PyQt6</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5125" />
-      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
-
-Shall the upgrade be done now?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5150" />
-      <source>Upgrade Eric and PyQt6</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5151" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5213" />
+      <location filename="../UI/UserInterface.py" line="5187" />
       <source>&amp;Builtin Tools</source>
       <translation>Ferramentas &amp;Internas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5233" />
+      <location filename="../UI/UserInterface.py" line="5207" />
       <source>&amp;Plugin Tools</source>
       <translation>Ferramentas dos &amp;Complementos</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5210" />
+      <source>&amp;User Tools</source>
+      <translation>Ferramentas de &amp;Utilizador</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5236" />
-      <source>&amp;User Tools</source>
-      <translation>Ferramentas de &amp;Utilizador</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5262" />
       <source>Configure Tool Groups ...</source>
       <translation>Configurar Grupos de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5266" />
+      <location filename="../UI/UserInterface.py" line="5240" />
       <source>Configure current Tool Group ...</source>
       <translation>Configurar o atual Grupo de Ferramentas ...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5305" />
-      <location filename="../UI/UserInterface.py" line="5285" />
+      <location filename="../UI/UserInterface.py" line="5279" />
+      <location filename="../UI/UserInterface.py" line="5259" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5381" />
+      <location filename="../UI/UserInterface.py" line="5355" />
       <source>&amp;Show all</source>
       <translation>&amp;Mostrar tudo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5383" />
+      <location filename="../UI/UserInterface.py" line="5357" />
       <source>&amp;Hide all</source>
       <translation>&amp;Esconder tudo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6498" />
-      <location filename="../UI/UserInterface.py" line="6487" />
-      <location filename="../UI/UserInterface.py" line="6439" />
-      <location filename="../UI/UserInterface.py" line="6429" />
-      <location filename="../UI/UserInterface.py" line="6252" />
-      <location filename="../UI/UserInterface.py" line="6242" />
-      <location filename="../UI/UserInterface.py" line="6184" />
-      <location filename="../UI/UserInterface.py" line="6174" />
+      <location filename="../UI/UserInterface.py" line="6472" />
+      <location filename="../UI/UserInterface.py" line="6461" />
+      <location filename="../UI/UserInterface.py" line="6413" />
+      <location filename="../UI/UserInterface.py" line="6403" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6216" />
+      <location filename="../UI/UserInterface.py" line="6158" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <source>Problem</source>
       <translation>Problema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6499" />
-      <location filename="../UI/UserInterface.py" line="6488" />
-      <location filename="../UI/UserInterface.py" line="6440" />
-      <location filename="../UI/UserInterface.py" line="6430" />
-      <location filename="../UI/UserInterface.py" line="6253" />
-      <location filename="../UI/UserInterface.py" line="6243" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6175" />
+      <location filename="../UI/UserInterface.py" line="6473" />
+      <location filename="../UI/UserInterface.py" line="6462" />
+      <location filename="../UI/UserInterface.py" line="6414" />
+      <location filename="../UI/UserInterface.py" line="6404" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6740" />
-      <location filename="../UI/UserInterface.py" line="6651" />
-      <location filename="../UI/UserInterface.py" line="6534" />
-      <location filename="../UI/UserInterface.py" line="6511" />
-      <location filename="../UI/UserInterface.py" line="6452" />
-      <location filename="../UI/UserInterface.py" line="6399" />
-      <location filename="../UI/UserInterface.py" line="6377" />
-      <location filename="../UI/UserInterface.py" line="6328" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6275" />
-      <location filename="../UI/UserInterface.py" line="6216" />
-      <location filename="../UI/UserInterface.py" line="6207" />
+      <location filename="../UI/UserInterface.py" line="6714" />
+      <location filename="../UI/UserInterface.py" line="6625" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6302" />
+      <location filename="../UI/UserInterface.py" line="6293" />
+      <location filename="../UI/UserInterface.py" line="6258" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6190" />
+      <location filename="../UI/UserInterface.py" line="6181" />
       <source>Process Generation Error</source>
       <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6208" />
+      <location filename="../UI/UserInterface.py" line="6182" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6191" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6250" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6285" />
+      <location filename="../UI/UserInterface.py" line="6259" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6320" />
+      <location filename="../UI/UserInterface.py" line="6294" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6303" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6362" />
+      <location filename="../UI/UserInterface.py" line="6336" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>Não há nenhum visor personalizado selecionado. Por favor use a caixa de diálogo das preferências para escolher um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6378" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6374" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6453" />
+      <location filename="../UI/UserInterface.py" line="6427" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6512" />
+      <location filename="../UI/UserInterface.py" line="6486" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6535" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6632" />
+      <location filename="../UI/UserInterface.py" line="6606" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6652" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6685" />
-      <location filename="../UI/UserInterface.py" line="6675" />
+      <location filename="../UI/UserInterface.py" line="6659" />
+      <location filename="../UI/UserInterface.py" line="6649" />
       <source>External Tools</source>
       <translation>Ferramentas Externas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6676" />
+      <location filename="../UI/UserInterface.py" line="6650" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6686" />
+      <location filename="../UI/UserInterface.py" line="6660" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6723" />
+      <location filename="../UI/UserInterface.py" line="6697" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>A iniciar processo '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6741" />
+      <location filename="../UI/UserInterface.py" line="6715" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6820" />
+      <location filename="../UI/UserInterface.py" line="6794" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Processo '{0}' saiu.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7108" />
-      <location filename="../UI/UserInterface.py" line="7046" />
-      <location filename="../UI/UserInterface.py" line="7002" />
-      <location filename="../UI/UserInterface.py" line="6928" />
-      <location filename="../UI/UserInterface.py" line="6864" />
+      <location filename="../UI/UserInterface.py" line="7082" />
+      <location filename="../UI/UserInterface.py" line="7020" />
+      <location filename="../UI/UserInterface.py" line="6976" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6838" />
       <source>Documentation Missing</source>
       <translation>Falta a Documentação</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7109" />
-      <location filename="../UI/UserInterface.py" line="7047" />
-      <location filename="../UI/UserInterface.py" line="7003" />
-      <location filename="../UI/UserInterface.py" line="6929" />
-      <location filename="../UI/UserInterface.py" line="6865" />
+      <location filename="../UI/UserInterface.py" line="7083" />
+      <location filename="../UI/UserInterface.py" line="7021" />
+      <location filename="../UI/UserInterface.py" line="6977" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6839" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7090" />
-      <location filename="../UI/UserInterface.py" line="6972" />
+      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="6946" />
       <source>Documentation</source>
       <translation>Documentação</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6973" />
+      <location filename="../UI/UserInterface.py" line="6947" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7091" />
+      <location filename="../UI/UserInterface.py" line="7065" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7270" />
-      <location filename="../UI/UserInterface.py" line="7206" />
+      <location filename="../UI/UserInterface.py" line="7244" />
+      <location filename="../UI/UserInterface.py" line="7180" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7207" />
+      <location filename="../UI/UserInterface.py" line="7181" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7271" />
+      <location filename="../UI/UserInterface.py" line="7245" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Open Browser</source>
       <translation>Abrir Navegador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Could not start a web browser</source>
       <translation>Não se pôde iniciar um navegador web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7595" />
+      <location filename="../UI/UserInterface.py" line="7557" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7601" />
+      <location filename="../UI/UserInterface.py" line="7575" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7805" />
+      <location filename="../UI/UserInterface.py" line="7779" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7808" />
+      <location filename="../UI/UserInterface.py" line="7782" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7845" />
+      <location filename="../UI/UserInterface.py" line="7819" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7846" />
+      <location filename="../UI/UserInterface.py" line="7820" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7869" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7894" />
-      <location filename="../UI/UserInterface.py" line="7871" />
+      <location filename="../UI/UserInterface.py" line="7868" />
+      <location filename="../UI/UserInterface.py" line="7845" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8400" />
+      <location filename="../UI/UserInterface.py" line="8374" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8401" />
+      <location filename="../UI/UserInterface.py" line="8375" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; não é um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8598" />
+      <location filename="../UI/UserInterface.py" line="8550" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8551" />
+      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8599" />
-      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
       <source>First time usage</source>
       <translation>Usado a primeira vez</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8600" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8622" />
       <source>Select Workspace Directory</source>
       <translation>Selecionar o Diretório de Trabalho</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8790" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8791" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_ru.ts	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/i18n/eric7_ru.ts	Sun Apr 13 14:46:18 2025 +0200
@@ -1703,47 +1703,47 @@
   <context>
     <name>BackgroundService</name>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="168" />
+      <location filename="../Utilities/BackgroundService.py" line="169" />
       <source>{0} not configured.</source>
       <translation>{0} не сконфигурирован.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="230" />
-      <source>Initialization of Background Service</source>
-      <translation>Инициализация фоновой службы</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>Initialization of Background Service</source>
+      <translation>Инициализация фоновой службы</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="232" />
       <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Инициализация фоновой службы &lt;b&gt;{0}&lt;/b&gt; не удалась.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="244" />
-      <source>Restart background client?</source>
-      <translation>Перезапустить клиента в фоновом режиме?</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="245" />
+      <source>Restart background client?</source>
+      <translation>Перезапустить клиента в фоновом режиме?</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="246" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Фоновый клиент &lt;b&gt;{0}&lt;/b&gt; прекратил выполнение из-за ошибки. Этот клиент необходим для работы различных чекеров.&lt;/p&gt;&lt;p&gt;Выберите &lt;ul&gt;&lt;li&gt;&lt;b&gt;'Да'&lt;/b&gt; чтобы перезапустить его и отменить последнее задание &lt;/li&gt;&lt;li&gt;&lt;b&gt;'Повторить'&lt;/b&gt; чтобы перезапустить его и последнее задание &lt;/li&gt;&lt;li&gt;&lt;b&gt;'Нет'&lt;/b&gt; чтобы не перезапускать клиента.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Заметьте: Клиента можно перезапустить, открыв и сохранив диалог предпочтений или закрыв и снова открыв текущий проект.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="274" />
+      <location filename="../Utilities/BackgroundService.py" line="275" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation>Ошибка фонового клиента остановила сервис.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="515" />
+      <location filename="../Utilities/BackgroundService.py" line="516" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation>Фоновый клиент Eric'а прервал соединение по неизвестной причине.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="524" />
-      <source>Background client disconnected.</source>
-      <translation>Соединение фонового клиента прервано.</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="525" />
+      <source>Background client disconnected.</source>
+      <translation>Соединение фонового клиента прервано.</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="526" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation>Соединение фонового клиента &lt;b&gt;{0}&lt;/b&gt; прервано по неизвестной причине.&lt;br&gt;Перезапустить клиента?</translation>
     </message>
@@ -3739,7 +3739,7 @@
       <translation>Очистить список хостов</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="526" />
+      <location filename="../Cooperation/ChatWidget.py" line="528" />
       <location filename="../Cooperation/ChatWidget.ui" line="0" />
       <source>Clear</source>
       <translation>Очистить</translation>
@@ -3770,156 +3770,156 @@
       <translation>Отображение статуса сервера</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="322" />
+      <location filename="../Cooperation/ChatWidget.py" line="324" />
       <location filename="../Cooperation/ChatWidget.py" line="85" />
       <source>Start Server</source>
       <translation>Запустить сервер</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="153" />
+      <location filename="../Cooperation/ChatWidget.py" line="155" />
       <source>! Unknown command: {0}
 </source>
       <translation>! Неизвестная команда: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="176" />
+      <location filename="../Cooperation/ChatWidget.py" line="178" />
       <source>* {0} has joined.
 </source>
       <translation>* {0} присоединился.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="193" />
+      <location filename="../Cooperation/ChatWidget.py" line="195" />
       <source>New User</source>
       <translation>Новый пользователь</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="194" />
+      <location filename="../Cooperation/ChatWidget.py" line="196" />
       <source>{0} has joined.</source>
       <translation>{0} присоединился.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="217" />
+      <location filename="../Cooperation/ChatWidget.py" line="219" />
       <source>* {0} has left.
 </source>
       <translation>* {0} отсоединился.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="226" />
+      <location filename="../Cooperation/ChatWidget.py" line="228" />
       <source>User Left</source>
       <translation>Пользователь вышел</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="227" />
+      <location filename="../Cooperation/ChatWidget.py" line="229" />
       <source>{0} has left.</source>
       <translation>{0} отсоединился.</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="255" />
+      <location filename="../Cooperation/ChatWidget.py" line="257" />
       <source>Message from &lt;{0}&gt;</source>
       <translation>Сообщение от &lt;{0}&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="330" />
+      <location filename="../Cooperation/ChatWidget.py" line="332" />
       <source>Stop Server</source>
       <translation>Остановить сервер</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="336" />
+      <location filename="../Cooperation/ChatWidget.py" line="338" />
       <source>! Server Error: {0}
 </source>
       <translation>! Ошибка сервера: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="347" />
+      <location filename="../Cooperation/ChatWidget.py" line="349" />
       <source>Disconnect</source>
       <translation>Отсоединиться</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="351" />
+      <location filename="../Cooperation/ChatWidget.py" line="353" />
       <source>Connect</source>
       <translation>Соединиться</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="515" />
+      <location filename="../Cooperation/ChatWidget.py" line="517" />
       <source>Copy</source>
       <translation>Копировать</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="519" />
+      <location filename="../Cooperation/ChatWidget.py" line="521" />
       <source>Cut all</source>
       <translation>Вырезать всё</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="522" />
+      <location filename="../Cooperation/ChatWidget.py" line="524" />
       <source>Copy all</source>
       <translation>Копировать всё</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="530" />
+      <location filename="../Cooperation/ChatWidget.py" line="532" />
       <source>Save</source>
       <translation>Сохранить</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="588" />
-      <location filename="../Cooperation/ChatWidget.py" line="573" />
+      <location filename="../Cooperation/ChatWidget.py" line="590" />
+      <location filename="../Cooperation/ChatWidget.py" line="575" />
       <source>Save Chat</source>
       <translation>Сохранить содержание</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="575" />
+      <location filename="../Cooperation/ChatWidget.py" line="577" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation>Файлы текстовые (*.txt);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="589" />
+      <location filename="../Cooperation/ChatWidget.py" line="591" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="604" />
+      <location filename="../Cooperation/ChatWidget.py" line="606" />
       <source>Error saving Chat</source>
       <translation>Ошибка при сохранении содержания</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="605" />
+      <location filename="../Cooperation/ChatWidget.py" line="607" />
       <source>&lt;p&gt;The chat contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно записать содержание в файл &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="644" />
+      <location filename="../Cooperation/ChatWidget.py" line="646" />
       <source>Kick User</source>
       <translation>Отключить пользователя</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="648" />
+      <location filename="../Cooperation/ChatWidget.py" line="650" />
       <source>Ban User</source>
       <translation>Запретить пользователя</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="652" />
+      <location filename="../Cooperation/ChatWidget.py" line="654" />
       <source>Ban and Kick User</source>
       <translation>Запретить и отключить пользователя</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="683" />
+      <location filename="../Cooperation/ChatWidget.py" line="685" />
       <source>* {0} has been kicked.
 </source>
       <translation>* {0} отключён.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="700" />
+      <location filename="../Cooperation/ChatWidget.py" line="702" />
       <source>* {0} has been banned.
 </source>
       <translation>* {0} запрещён.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="717" />
+      <location filename="../Cooperation/ChatWidget.py" line="719" />
       <source>* {0} has been banned and kicked.
 </source>
       <translation>* {0} запрещён и отключен.
@@ -4872,32 +4872,32 @@
   <context>
     <name>CodeDocumentationViewer</name>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="220" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="222" />
       <source>Code Info Provider:</source>
       <translation>Источник инфо для кода:</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="238" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="240" />
       <source>Select the code info provider</source>
       <translation>Выберите источник инфо для кода</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="239" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="241" />
       <source>&lt;disabled&gt;</source>
       <translation>&lt;disabled&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="420" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="422" />
       <source>No documentation available</source>
       <translation>Документация недоступна</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="441" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="443" />
       <source>No source code documentation provider has been registered. This function has been disabled.</source>
       <translation>Поставщик документации для исходного кода не зарегистрирован. Эта функция отключена.</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="449" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="451" />
       <source>This function has been disabled.</source>
       <translation>Эта функция отключена.</translation>
     </message>
@@ -8826,10 +8826,10 @@
       <translation>&lt;p&gt;Не удалось обновить список слотов, так как были получены неверные данные.&lt;/p&gt;&lt;p&gt;Ошибка: {0}&lt;/p&gt;&lt;p&gt;Данные: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="608" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="505" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="467" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="455" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="604" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="501" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="463" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="451" />
       <location filename="../Project/CreateDialogCodeDialog.py" line="419" />
       <source>Code Generation</source>
       <translation>Генерация кода</translation>
@@ -8840,22 +8840,22 @@
       <translation>&lt;p&gt;Генерация кода для языка проекта "{0}" не поддерживается.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="456" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="452" />
       <source>&lt;p&gt;No code template file available for project type "{0}".&lt;/p&gt;</source>
       <translation>&lt;p&gt;Нет доступного файла с кодом шаблона для типа проекта "{0}".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="468" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="464" />
       <source>&lt;p&gt;Could not open the code template file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно открыть файл с шаблоном кода &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="506" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="502" />
       <source>&lt;p&gt;Could not open the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно открыть файл с исходными текстами &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="609" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="605" />
       <source>&lt;p&gt;Could not write the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно записать файл с исходными текстами &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
     </message>
@@ -9363,695 +9363,695 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="207" />
+      <location filename="../Debugger/DebugUI.py" line="210" />
       <source>Notification</source>
       <translation>Уведомление</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="234" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="237" />
       <source>Run Script</source>
       <translation>Выполнить сценарий</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="236" />
+      <location filename="../Debugger/DebugUI.py" line="239" />
       <source>&amp;Run Script...</source>
       <translation>&amp;Выполнить сценарий...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="242" />
+      <location filename="../Debugger/DebugUI.py" line="245" />
       <source>Run the current Script</source>
       <translation>Выполнить текущий сценарий</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="244" />
+      <location filename="../Debugger/DebugUI.py" line="247" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Выполнить сценарий&lt;/b&gt;
 &lt;p&gt;Установка аргументов командной строки и запуск сценария вне отладчика. Если файл имеет несохранённые изменения, он может быть сохранен первым.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2386" />
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="255" />
+      <location filename="../Debugger/DebugUI.py" line="2389" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="258" />
       <source>Run Project</source>
       <translation>Выполнить проект</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="257" />
+      <location filename="../Debugger/DebugUI.py" line="260" />
       <source>Run &amp;Project...</source>
       <translation>Выполнить &amp;проект...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="263" />
+      <location filename="../Debugger/DebugUI.py" line="266" />
       <source>Run the current Project</source>
       <translation>Выполнить текущий проект</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="265" />
+      <location filename="../Debugger/DebugUI.py" line="268" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Выполнить проект&lt;/b&gt;
 &lt;p&gt;Задание аргументов командной строки и запуск проекта без отладки. Если файлы проекта не были сохранены, изменения можно предварительно сохранить.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="277" />
+      <location filename="../Debugger/DebugUI.py" line="280" />
       <source>Coverage run of Script</source>
       <translation>Прогон покрытия сценария</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="279" />
+      <location filename="../Debugger/DebugUI.py" line="282" />
       <source>Coverage run of Script...</source>
       <translation>Покрытие сценария...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="286" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Выполнить прогон покрытия текущего сценария</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Выполнить прогон покрытия текущего сценария</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Прогон покрытия сценария&lt;/b&gt;
 &lt;p&gt;Установка аргументов командной строки и запуск сценария под управлением инструмента анализа покрытия. Если файл имеет несохранённые изменения, он может быть сохранен первым.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="300" />
+      <location filename="../Debugger/DebugUI.py" line="303" />
       <source>Coverage run of Project</source>
       <translation>Прогон покрытия проекта</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="302" />
+      <location filename="../Debugger/DebugUI.py" line="305" />
       <source>Coverage run of Project...</source>
       <translation>Покрытие проекта...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="309" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>Выполнить прогон покрытия текущего проекта</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>Выполнить прогон покрытия текущего проекта</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Прогон покрытия проекта&lt;/b&gt;
 &lt;p&gt;Задание аргументов командной строки и запуск текущего проекта под управлением инструмента анализа покрытия. Если файл имеет несохранённые изменения, он может быть сохранен первым.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="324" />
+      <location filename="../Debugger/DebugUI.py" line="327" />
       <source>Profile Script</source>
       <translation>Профилировать сценарий</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="326" />
+      <location filename="../Debugger/DebugUI.py" line="329" />
       <source>Profile Script...</source>
       <translation>Профилировать сценарий...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="332" />
+      <location filename="../Debugger/DebugUI.py" line="335" />
       <source>Profile the current Script</source>
       <translation>Профилировать текущий сценарий</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="334" />
+      <location filename="../Debugger/DebugUI.py" line="337" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Профилировать сценарий&lt;/b&gt;
 &lt;p&gt;Установка аргументов командной строки и запуск профилирования сценария. Если файл имеет несохранённые изменения, он может быть сохранен первым.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="344" />
+      <location filename="../Debugger/DebugUI.py" line="347" />
       <source>Profile Project</source>
       <translation>Профилировать проект</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="346" />
+      <location filename="../Debugger/DebugUI.py" line="349" />
       <source>Profile Project...</source>
       <translation>Профилировать проект...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="352" />
+      <location filename="../Debugger/DebugUI.py" line="355" />
       <source>Profile the current Project</source>
       <translation>Профилировать текущий проект</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="354" />
+      <location filename="../Debugger/DebugUI.py" line="357" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Профилировать проект&lt;/b&gt;
 &lt;p&gt;Задание аргументов и запуск проекта на профилирование. Если файлы проекта не были сохранены, изменения можно предварительно сохранить.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="365" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="368" />
       <source>Debug Script</source>
       <translation>Отладить сценарий</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="367" />
+      <location filename="../Debugger/DebugUI.py" line="370" />
       <source>&amp;Debug Script...</source>
       <translation>&amp;Отладить сценарий...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="373" />
+      <location filename="../Debugger/DebugUI.py" line="376" />
       <source>Debug the current Script</source>
       <translation>Отладить текущий сценарий</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="375" />
+      <location filename="../Debugger/DebugUI.py" line="378" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Отладить сценарий&lt;/b&gt;
 &lt;p&gt;Установка аргументов командной строки и задание текущей строки в качестве первой исполняемой инструкции Python текущего окна редактора. Если файл имеет несохранённые изменения, он может быть сохранен первым.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2579" />
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="387" />
+      <location filename="../Debugger/DebugUI.py" line="2582" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="390" />
       <source>Debug Project</source>
       <translation>Отладить проект</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="389" />
+      <location filename="../Debugger/DebugUI.py" line="392" />
       <source>Debug &amp;Project...</source>
       <translation>&amp;Отладить проект...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="395" />
+      <location filename="../Debugger/DebugUI.py" line="398" />
       <source>Debug the current Project</source>
       <translation>Отладить текущий проект</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="397" />
+      <location filename="../Debugger/DebugUI.py" line="400" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Отладить проект&lt;/b&gt;
 &lt;p&gt;Установка аргументов командной строки и задание текущей строки как первой исполняемой инструкции Python главного сценария текущего проекта. Если файлы проекта содержат несохраненные изменения, они могут быть сохранены первыми.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2895" />
-      <location filename="../Debugger/DebugUI.py" line="411" />
-      <location filename="../Debugger/DebugUI.py" line="409" />
+      <location filename="../Debugger/DebugUI.py" line="2898" />
+      <location filename="../Debugger/DebugUI.py" line="414" />
+      <location filename="../Debugger/DebugUI.py" line="412" />
       <source>Restart</source>
       <translation>Повторный запуск</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="417" />
+      <location filename="../Debugger/DebugUI.py" line="420" />
       <source>Restart the last debugged script</source>
       <translation>Перезапустить последний отлаживаемый сценарий</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="419" />
+      <location filename="../Debugger/DebugUI.py" line="422" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Перезапуск&lt;/b&gt;&lt;p&gt;Установка аргументов командной строки и задание текущей строки как первой исполняемой инструкции последнего отлаживаемого сценария. Если есть несохраненные изменения, они могут быть сохранены первыми.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="628" />
-      <location filename="../Debugger/DebugUI.py" line="433" />
-      <location filename="../Debugger/DebugUI.py" line="431" />
+      <location filename="../Debugger/DebugUI.py" line="631" />
+      <location filename="../Debugger/DebugUI.py" line="436" />
+      <location filename="../Debugger/DebugUI.py" line="434" />
       <source>Stop</source>
       <translation>Остановить</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="439" />
+      <location filename="../Debugger/DebugUI.py" line="442" />
       <source>Stop the running script.</source>
       <translation>Остановить выполняющийся сценарий.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="441" />
+      <location filename="../Debugger/DebugUI.py" line="444" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Остановка&lt;/b&gt;&lt;p&gt;Остановка выполнения программы в отладчике.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="452" />
+      <location filename="../Debugger/DebugUI.py" line="455" />
       <source>Continue</source>
       <translation>Продолжить</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="454" />
+      <location filename="../Debugger/DebugUI.py" line="457" />
       <source>&amp;Continue</source>
       <translation>П&amp;родолжить</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="460" />
+      <location filename="../Debugger/DebugUI.py" line="463" />
       <source>Continue running the program from the current line</source>
       <translation>Продолжить выполнение программы с текущей точки</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="462" />
+      <location filename="../Debugger/DebugUI.py" line="465" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Продолжить&lt;/b&gt;
 &lt;p&gt;Продолжить выполнение программы с текущей точки. Программа остановится при завершении или по достижении точки останова.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="473" />
+      <location filename="../Debugger/DebugUI.py" line="476" />
       <source>Continue to Cursor</source>
       <translation>Продолжить до курсора</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="475" />
+      <location filename="../Debugger/DebugUI.py" line="478" />
       <source>Continue &amp;To Cursor</source>
       <translation>Продолжить &amp;до курсора</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="482" />
+      <location filename="../Debugger/DebugUI.py" line="485" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Продолжить выполнение программы до строки, в которой находится курсор</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="488" />
+      <location filename="../Debugger/DebugUI.py" line="491" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Продолжить до курсора&lt;/b&gt;&lt;p&gt;Продолжить выполнение программы до строки, в которой находится курсор.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="498" />
+      <location filename="../Debugger/DebugUI.py" line="501" />
       <source>Continue Until</source>
       <translation>Продолжить до</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="500" />
+      <location filename="../Debugger/DebugUI.py" line="503" />
       <source>Continue &amp;Until</source>
       <translation>Продолжить &amp;до</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="507" />
+      <location filename="../Debugger/DebugUI.py" line="510" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation>Продолжить выполнение программы от текущей строки до текущей позиции курсора или до выхода из текущего кадра</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="513" />
+      <location filename="../Debugger/DebugUI.py" line="516" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Продолжить до&lt;/b&gt;&lt;p&gt;Продолжает выполнение программы от текущей строки до позиции курсора выше текущей строки или до выхода из текущего кадра.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="524" />
+      <location filename="../Debugger/DebugUI.py" line="527" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation>Переместить указатель инструкции на курсор</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="526" />
+      <location filename="../Debugger/DebugUI.py" line="529" />
       <source>&amp;Jump To Cursor</source>
       <translation>&amp;Перейти к курсору</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="533" />
+      <location filename="../Debugger/DebugUI.py" line="536" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation>Пропуск кода от текущей строки до текущей позиции курсора</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="539" />
+      <location filename="../Debugger/DebugUI.py" line="542" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Переместить указатель инструкции к курсору&lt;/b&gt;&lt;p&gt;Перемещение указателя внутренней инструкции Python к текущей позиции курсора без выполнения промежуточного кода между ними.&lt;/p&gt;&lt;p&gt;При этом невозможно выйти из функции или перейти в блок кода, например в цикл. В таких случаях в журнал выводится сообщение об ошибке.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="553" />
+      <location filename="../Debugger/DebugUI.py" line="556" />
       <source>Single Step</source>
       <translation>Одиночный шаг</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="555" />
+      <location filename="../Debugger/DebugUI.py" line="558" />
       <source>Sin&amp;gle Step</source>
       <translation>&amp;Одиночный шаг</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="561" />
+      <location filename="../Debugger/DebugUI.py" line="564" />
       <source>Execute a single Python statement</source>
       <translation>Выполнить одну инструкцию Python</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="563" />
+      <location filename="../Debugger/DebugUI.py" line="566" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Одиночный шаг&lt;/b&gt;
 &lt;p&gt;Выполнение одной инструкции Python. Если инструкция является командой &lt;tt&gt;import&lt;/tt&gt;, конструктором класса, вызовом метода или функции, то управление возвращается отладчику в следующем выражении.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="575" />
+      <location filename="../Debugger/DebugUI.py" line="578" />
       <source>Step Over</source>
       <translation>Следующая строка</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="577" />
+      <location filename="../Debugger/DebugUI.py" line="580" />
       <source>Step &amp;Over</source>
       <translation>С&amp;ледующая строка</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="584" />
+      <location filename="../Debugger/DebugUI.py" line="587" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Выполнить одну инструкцию Python, оставаясь в текущем кадре</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="590" />
+      <location filename="../Debugger/DebugUI.py" line="593" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Следующая строка&lt;/b&gt;
 &lt;p&gt;Выполнение одной инструкции Python, оставаясь в текущем кадре. Если инструкция является командой &lt;tt&gt;import&lt;/tt&gt;, конструктором класса, или вызовом метода или функции, то управление возвращается отладчику после выполнения инструкции.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="603" />
+      <location filename="../Debugger/DebugUI.py" line="606" />
       <source>Step Out</source>
       <translation>Возврат</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="605" />
+      <location filename="../Debugger/DebugUI.py" line="608" />
       <source>Step Ou&amp;t</source>
       <translation>&amp;Возврат</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="612" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Выполнять инструкции Python до выхода из текущего кадра</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Выполнять инструкции Python до выхода из текущего кадра</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Возврат&lt;/b&gt;&lt;p&gt;Выполнение инструкций Python до выхода из текущего кадра. Если инструкции находятся внутри инструкции &lt;tt&gt;import&lt;/tt&gt;, конструкторе класса, или вызове функции или метода, то управление будет возвращено отладчику после выхода из текущего кадра.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="630" />
+      <location filename="../Debugger/DebugUI.py" line="633" />
       <source>&amp;Stop</source>
       <translation>&amp;Остановить</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="636" />
+      <location filename="../Debugger/DebugUI.py" line="639" />
       <source>Stop debugging</source>
       <translation>Остановить отладку</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="638" />
+      <location filename="../Debugger/DebugUI.py" line="641" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Стоп&lt;/b&gt;
 &lt;p&gt;Остановить текущий отладочный сеанс.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="644" />
+      <location filename="../Debugger/DebugUI.py" line="647" />
       <source>Variables Type Filter</source>
       <translation>Фильтр типа переменных</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="645" />
+      <location filename="../Debugger/DebugUI.py" line="648" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>Фильтр &amp;типа переменных...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="651" />
+      <location filename="../Debugger/DebugUI.py" line="654" />
       <source>Configure variables type filter</source>
       <translation>Настройка фильтра типа переменных</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="653" />
+      <location filename="../Debugger/DebugUI.py" line="656" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Фильтр типа переменных&lt;/b&gt;&lt;p&gt;Настройте фильтр типов переменных. Во время сеанса отладки в окне глобальных или локальных переменных отображаются только типы переменных, которые не выбраны.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="664" />
+      <location filename="../Debugger/DebugUI.py" line="667" />
       <source>Exceptions Filter</source>
       <translation>Фильтр исключений</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="665" />
+      <location filename="../Debugger/DebugUI.py" line="668" />
       <source>&amp;Exceptions Filter...</source>
       <translation>Фильтр &amp;исключений...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="671" />
+      <location filename="../Debugger/DebugUI.py" line="674" />
       <source>Configure exceptions filter</source>
       <translation>Настройка фильтра исключений</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="673" />
+      <location filename="../Debugger/DebugUI.py" line="676" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Фильтр исключений&lt;/b&gt;
 &lt;p&gt;Настроить фильтр исключений. В течение отладочного сеанс перехватываются только исключения, выделенные в списке.&lt;/p&gt;
 &lt;p&gt;Стоит заметить, что все необработанные исключения перехватываются независимо от настроек фильтра.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="685" />
+      <location filename="../Debugger/DebugUI.py" line="688" />
       <source>Ignored Exceptions</source>
       <translation>Игнорированные исключения</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="686" />
+      <location filename="../Debugger/DebugUI.py" line="689" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>&amp;Игнорированные исключения...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="692" />
+      <location filename="../Debugger/DebugUI.py" line="695" />
       <source>Configure ignored exceptions</source>
       <translation>Настройка игнорированных исключений</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="694" />
+      <location filename="../Debugger/DebugUI.py" line="697" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Игнорируемые исключения&lt;/b&gt;&lt;p&gt;Настройте игнорируемые исключения. Во время сеанса отладки выделяются только те типы исключений, которые не указаны в списке.&lt;/p&gt;&lt;p&gt;Пожалуйста, обратите внимание, что необработанные исключения нельзя игнорировать.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="716" />
-      <location filename="../Debugger/DebugUI.py" line="710" />
-      <location filename="../Debugger/DebugUI.py" line="708" />
+      <location filename="../Debugger/DebugUI.py" line="719" />
+      <location filename="../Debugger/DebugUI.py" line="713" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Toggle Breakpoint</source>
       <translation>Поставить/Убрать точку останова</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="714" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="718" />
+      <location filename="../Debugger/DebugUI.py" line="721" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Поставить/убрать точку останова&lt;/b&gt;
 &lt;p&gt;Поставить/убрать точку останова в текущей строке текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="736" />
-      <location filename="../Debugger/DebugUI.py" line="728" />
+      <location filename="../Debugger/DebugUI.py" line="739" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Edit Breakpoint</source>
       <translation>Редактировать точку останова</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="730" />
+      <location filename="../Debugger/DebugUI.py" line="733" />
       <source>Edit Breakpoint...</source>
       <translation>Редактировать точку останова...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="734" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="738" />
+      <location filename="../Debugger/DebugUI.py" line="741" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Редактировать точку останова&lt;/b&gt;
 &lt;p&gt;Открыть диалог со свойствами точки останова. Работает в текущей строке текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="756" />
-      <location filename="../Debugger/DebugUI.py" line="750" />
-      <location filename="../Debugger/DebugUI.py" line="748" />
+      <location filename="../Debugger/DebugUI.py" line="759" />
+      <location filename="../Debugger/DebugUI.py" line="753" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Next Breakpoint</source>
       <translation>Следующая точка останова</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="754" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="758" />
+      <location filename="../Debugger/DebugUI.py" line="761" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Следующая точка останова&lt;/b&gt;
 &lt;p&gt;Переход к следующей точке останова в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="775" />
-      <location filename="../Debugger/DebugUI.py" line="769" />
-      <location filename="../Debugger/DebugUI.py" line="767" />
+      <location filename="../Debugger/DebugUI.py" line="778" />
+      <location filename="../Debugger/DebugUI.py" line="772" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Previous Breakpoint</source>
       <translation>Предыдущая точка останова</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="773" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="777" />
+      <location filename="../Debugger/DebugUI.py" line="780" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Предыдущая точка останова&lt;/b&gt;
 &lt;p&gt;Переход к предыдущей точке останова в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="793" />
-      <location filename="../Debugger/DebugUI.py" line="787" />
-      <location filename="../Debugger/DebugUI.py" line="786" />
+      <location filename="../Debugger/DebugUI.py" line="796" />
+      <location filename="../Debugger/DebugUI.py" line="790" />
+      <location filename="../Debugger/DebugUI.py" line="789" />
       <source>Clear Breakpoints</source>
       <translation>Убрать точки останова</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="795" />
+      <location filename="../Debugger/DebugUI.py" line="798" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Убрать точки останова&lt;/b&gt;&lt;p&gt;Убрать точки останова во всех редакторах.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="819" />
+      <location filename="../Debugger/DebugUI.py" line="822" />
       <source>&amp;Debug</source>
       <translation>О&amp;тладка</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="821" />
+      <location filename="../Debugger/DebugUI.py" line="824" />
       <source>Sta&amp;rt</source>
       <translation>З&amp;апуск</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="823" />
+      <location filename="../Debugger/DebugUI.py" line="826" />
       <source>&amp;Breakpoints</source>
       <translation>&amp;Точки останова</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="866" />
-      <location filename="../Debugger/DebugUI.py" line="864" />
+      <location filename="../Debugger/DebugUI.py" line="869" />
+      <location filename="../Debugger/DebugUI.py" line="867" />
       <source>Start</source>
       <translation>Запуск</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="879" />
-      <location filename="../Debugger/DebugUI.py" line="877" />
+      <location filename="../Debugger/DebugUI.py" line="882" />
+      <location filename="../Debugger/DebugUI.py" line="880" />
       <source>Debug</source>
       <translation>Отладка</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1342" />
+      <location filename="../Debugger/DebugUI.py" line="1345" />
       <source>Message: {0}</source>
       <translation>Сообщение: {0}</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1348" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Программа завершилась со статусом выхода {0}.&lt;/p&gt;{1}</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1353" />
+      <location filename="../Debugger/DebugUI.py" line="1356" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; завершился со статусом выхода {1}.&lt;/p&gt;{2}</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1365" />
+      <location filename="../Debugger/DebugUI.py" line="1368" />
       <source>Program terminated</source>
       <translation>Программа завершилась</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1401" />
+      <location filename="../Debugger/DebugUI.py" line="1404" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>Отлаживаемая программа содержит неопределенную синтаксическую ошибку.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1421" />
+      <location filename="../Debugger/DebugUI.py" line="1424" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; содержит синтактическую ошибку &lt;b&gt;{1}&lt;/b&gt; в строке &lt;b&gt;{2}&lt;/b&gt;, позиция &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1449" />
+      <location filename="../Debugger/DebugUI.py" line="1452" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Выброшено исключение, которое не было обработано программой.
 Более точная информация в окне консоли.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1498" />
+      <location filename="../Debugger/DebugUI.py" line="1501" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Отлаживаемая программа выдала исключение &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;Файл: &lt;b&gt;{2}&lt;/b&gt;, Строка: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Прервать выполнение в этом месте?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1516" />
+      <location filename="../Debugger/DebugUI.py" line="1519" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Отлаживаемая программа вызвала исключение &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;Файл: &lt;b&gt;{2}&lt;/b&gt;, Строка: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1532" />
+      <location filename="../Debugger/DebugUI.py" line="1535" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation>&lt;p&gt;Отлаживаемая программа выдала исключение&lt;br&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1594" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Программа генерирует сигнал "{0}".&lt;br/&gt;Файл: &lt;b&gt;{1}&lt;/b&gt;, Строка: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1609" />
+      <location filename="../Debugger/DebugUI.py" line="1612" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>Отлаживаемая программа была неожиданно прервана.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1670" />
+      <location filename="../Debugger/DebugUI.py" line="1673" />
       <source>No locals available.</source>
       <translation>Нет доступных локальных переменных.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1717" />
+      <location filename="../Debugger/DebugUI.py" line="1720" />
       <source>Breakpoint Condition Error</source>
       <translation>Ошибка в условиях точки останова</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1718" />
+      <location filename="../Debugger/DebugUI.py" line="1721" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Условие точки останова &lt;b&gt;{0}, {1}&lt;/b&gt; содержит синтаксическую ошибку.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1779" />
+      <location filename="../Debugger/DebugUI.py" line="1782" />
       <source>Watch Expression Error</source>
       <translation>Ошибка в выражении для отслеживания</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1780" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Выражение для отслеживания &lt;b&gt;{0}&lt;/b&gt; содержит синтаксическую ошибку.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1810" />
+      <location filename="../Debugger/DebugUI.py" line="1813" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Выражение для отслеживания '&lt;b&gt;{0}&lt;/b&gt;' уже существует.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1815" />
+      <location filename="../Debugger/DebugUI.py" line="1818" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Выражение для отслеживания '&lt;b&gt;{0}&lt;/b&gt;' для переменной &lt;b&gt;{1}&lt;/b&gt; уже существует.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1821" />
+      <location filename="../Debugger/DebugUI.py" line="1824" />
       <source>Watch expression already exists</source>
       <translation>Выражение для отслеживания уже существует</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1986" />
-      <location filename="../Debugger/DebugUI.py" line="1977" />
+      <location filename="../Debugger/DebugUI.py" line="1989" />
+      <location filename="../Debugger/DebugUI.py" line="1980" />
       <source>Coverage Run of Project</source>
       <translation>Прогон покрытия проекта</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1979" />
+      <location filename="../Debugger/DebugUI.py" line="1982" />
       <source>Coverage Run of Script</source>
       <translation>Прогон покрытия сценария</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2387" />
-      <location filename="../Debugger/DebugUI.py" line="2189" />
-      <location filename="../Debugger/DebugUI.py" line="1987" />
+      <location filename="../Debugger/DebugUI.py" line="2390" />
+      <location filename="../Debugger/DebugUI.py" line="2192" />
+      <location filename="../Debugger/DebugUI.py" line="1990" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Для текущего проекта не определён главный сценарий. Отмена</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2188" />
-      <location filename="../Debugger/DebugUI.py" line="2179" />
+      <location filename="../Debugger/DebugUI.py" line="2191" />
+      <location filename="../Debugger/DebugUI.py" line="2182" />
       <source>Profile Run of Project</source>
       <translation>Прогон профилирования проекта</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2181" />
+      <location filename="../Debugger/DebugUI.py" line="2184" />
       <source>Profile Run of Script</source>
       <translation>Прогон профилирования сценария</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2580" />
+      <location filename="../Debugger/DebugUI.py" line="2583" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>Для текущего проекта не определён главный сценарий. Отладка невозможна.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3252" />
+      <location filename="../Debugger/DebugUI.py" line="3255" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Выбранный файл &lt;b&gt;{0}&lt;/b&gt; находится на сервере eric-ide, но такой сервер не подключен. Прерывание...&lt;/p&gt;</translation>
     </message>
@@ -33525,7 +33525,6 @@
   <context>
     <name>HelpDocumentationPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="64" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="60" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="56" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="52" />
@@ -33652,21 +33651,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>PySide2 Documentation</source>
-      <translation>Документация PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>Enter the PySide2 documentation directory</source>
-      <translation>Задайте директорию с документацией PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
-      <translation>&lt;b&gt;Примечание&lt;/b&gt;: Оставьте поле пустым, чтобы использовать переменную среды окружения PYSIDE2DOCDIR, если она установлена.</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
       <source>PySide6 Documentation</source>
       <translation>Документация PySide6</translation>
     </message>
@@ -33680,6 +33664,18 @@
       <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE6DOCDIR environment variable, if set.</source>
       <translation>&lt;b&gt;Примечание&lt;/b&gt;: Оставьте поле пустым, чтобы использовать переменную среды окружения PYSIDE6DOCDIR, если она установлена.</translation>
     </message>
+    <message>
+      <source>PySide2 Documentation</source>
+      <translation type="vanished">Документация PySide2</translation>
+    </message>
+    <message>
+      <source>Enter the PySide2 documentation directory</source>
+      <translation type="vanished">Задайте директорию с документацией PySide2</translation>
+    </message>
+    <message>
+      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
+      <translation type="vanished">&lt;b&gt;Примечание&lt;/b&gt;: Оставьте поле пустым, чтобы использовать переменную среды окружения PYSIDE2DOCDIR, если она установлена.</translation>
+    </message>
   </context>
   <context>
     <name>HelpIndexWidget</name>
@@ -34082,29 +34078,19 @@
       <translation>Показать список закладок</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
       <source>eric API Documentation</source>
       <translation>Документация API eric</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>Python 3 Documentation</source>
-      <translation>Документация Python 3</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>Qt5 Documentation</source>
-      <translation>Документация Qt5</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
-      <source>Qt6 Documentation</source>
-      <translation>Документация Qt6</translation>
+      <source>Python 3 Documentation</source>
+      <translation>Документация Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
-      <source>PyQt5 Documentation</source>
-      <translation>Документация PyQt5</translation>
+      <source>Qt6 Documentation</source>
+      <translation>Документация Qt6</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="453" />
@@ -34113,76 +34099,83 @@
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="454" />
-      <source>PySide2 Documentation</source>
-      <translation>Документация PySide2</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="455" />
       <source>PySide6 Documentation</source>
       <translation>Документация PySide6</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="512" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>Open HTML File</source>
       <translation>Открыть HTML файл</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="514" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="513" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation>Файлы HTML (*.html *.htm);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="701" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="700" />
       <source>Help Engine</source>
       <translation>Движок системы справки</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="725" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="724" />
       <source>Looking for Documentation...</source>
       <translation>Просмотр документации...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="736" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="735" />
       <source>eric Help Viewer</source>
       <translation>Просмотрщик справки eric</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
       <source>Manage QtHelp Documents</source>
       <translation>Управление документацией QtHelp</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="764" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="763" />
       <source>Reindex Documentation</source>
       <translation>Переиндексация документов</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="769" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="768" />
       <source>Configure Help Documentation</source>
       <translation>Конфигурация справочной документации</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="862" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="842" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="861" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="841" />
       <source>Clear History</source>
       <translation>Очистить историю</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="966" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="965" />
       <source>Updating search index</source>
       <translation>Обновление индекса поиска</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1024" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1023" />
       <source>Filtered by: </source>
       <translation>Отфильтровано по: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1060" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1054" />
       <source>Unfiltered</source>
       <translation>Без фильтра</translation>
     </message>
+    <message>
+      <source>Qt5 Documentation</source>
+      <translation type="vanished">Документация Qt5</translation>
+    </message>
+    <message>
+      <source>PyQt5 Documentation</source>
+      <translation type="vanished">Документация PyQt5</translation>
+    </message>
+    <message>
+      <source>PySide2 Documentation</source>
+      <translation type="vanished">Документация PySide2</translation>
+    </message>
   </context>
   <context>
     <name>HelpViewersPage</name>
@@ -52350,7 +52343,7 @@
       <translation>&lt;p&gt;Не удалось загрузить список словарей из {0}.&lt;/p&gt;&lt;p&gt; Ошибка: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="415" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="416" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="221" />
       <source>No connection to Internet.</source>
       <translation>Нет подключения к Интернету.</translation>
@@ -52386,24 +52379,24 @@
       <translation>{0} ({1})</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="435" />
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="411" />
-      <source>Error downloading dictionary file</source>
-      <translation>Ошибка загрузки файла словаря</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="436" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="412" />
+      <source>Error downloading dictionary file</source>
+      <translation>Ошибка загрузки файла словаря</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="437" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="413" />
       <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удалось загрузить запрошенный файл слова из {0}.&lt;/p&gt;&lt;p&gt; Ошибка: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="450" />
-      <source>Error downloading dictionary</source>
-      <translation>Ошибка загрузки словаря</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="451" />
+      <source>Error downloading dictionary</source>
+      <translation>Ошибка загрузки словаря</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="452" />
       <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Загруженный архив словаря недействителен. Пропущен.&lt;/p&gt;</translation>
     </message>
@@ -54281,7 +54274,7 @@
       <translation>Открыть окно для отображения данных, полученных с выбранного устройства</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="459" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="460" />
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
       <source>Press to connect the selected device</source>
       <translation>Подключить выбранное устройство</translation>
@@ -54297,7 +54290,7 @@
       <translation>&lt;h3&gt;Пакет QtSerialPort недоступен.&lt;br/&gt;Поддержка MicroPython деактивирована.&lt;/h3&gt;</translation>
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="192" />
       <source>%n supported serial device(s) detected.</source>
       <translation>
         <numerusform>Обнаружено %n поддерживаемое последовательное устройство.</numerusform>
@@ -54306,18 +54299,18 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="205" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="206" />
       <source>{0} - {1} ({2})</source>
       <comment>board name, description, port name</comment>
       <translation>{0} - {1} ({2})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="228" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="229" />
       <source>No supported serial devices detected.</source>
       <translation>Поддерживаемые последовательные устройства не обнаружены.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="233" />
       <source>
 %n unknown device(s) for manual selection.</source>
       <translation>
@@ -54330,17 +54323,17 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="239" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="240" />
       <source>Manual Selection</source>
       <translation>Ручной выбор</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="250" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="251" />
       <source>WebREPL (manual)</source>
       <translation>WebREPL (ручной выбор)</translation>
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="270" />
       <source>
 %n WebREPL connection(s) defined.</source>
       <translation>
@@ -54353,39 +54346,39 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="329" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="300" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
       <source>Unknown MicroPython Device</source>
       <translation>Неизвестное устройство MicroPython</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="302" />
       <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href="mailto:{1}"&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Обнаружены следующие неизвестные последовательные устройства&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Если это плата MicroPython, то сообщите о ней вместе с названием платы и кратким описанием по адресу &lt;a href="mailto:{1}"&gt; the eric bug reporting&lt;/a&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="313" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="314" />
       <source>{0} (0x{1:04x}/0x{2:04x})</source>
       <comment>description, VID, PID</comment>
       <translation>{0} (0x{1:04x}/0x{2:04x})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="331" />
       <source>Would you like to add them to the list of manually configured devices?</source>
       <translation>Хотите добавить их в список вручную настроенных устройств?</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="454" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="455" />
       <source>Press to disconnect the current device</source>
       <translation>Отключить выбранное устройство</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="491" />
-      <source>No device attached</source>
-      <translation>Устройство не подключено</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="492" />
+      <source>No device attached</source>
+      <translation>Устройство не подключено</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="493" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -54398,353 +54391,353 @@
 И, наконец, нажмите кнопку перезагрузки устройства и подождите несколько секунд, прежде чем повторить попытку.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
       <source>Start REPL</source>
       <translation>Запустить REPL</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="523" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается запустить REPL.&lt;/p&gt;&lt;p&gt;Причина:&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="731" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="718" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
       <source>Serial Device Connect</source>
       <translation>Подсоединение последовательного устройства</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="720" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Устройство не отвечает через последовательный порт &lt;b&gt;{0}&lt;/b&gt;. Возможно на нем не установлена прошивка MicroPython.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="726" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается подключиться к устройству через последовательный порт &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Причина:&lt;/b&gt; {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1198" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1190" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="729" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="730" />
       <source>unknown</source>
       <translation>unknown</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="772" />
-      <source>Run Script</source>
-      <translation>Выполнить скрипт</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
-      <source>There is no editor open. Abort...</source>
-      <translation>Редактор не открыт. Прерывание...</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
-      <source>The current editor does not contain a script. Abort...</source>
-      <translation>Текущий редактор не содержит скрипт. Прервать...</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
+      <source>Run Script</source>
+      <translation>Выполнить скрипт</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="774" />
+      <source>There is no editor open. Abort...</source>
+      <translation>Редактор не открыт. Прерывание...</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="783" />
+      <source>The current editor does not contain a script. Abort...</source>
+      <translation>Текущий редактор не содержит скрипт. Прервать...</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="792" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается выполнить скрипт.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="827" />
-      <source>Start Chart</source>
-      <translation>Построить диаграмму</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="828" />
+      <source>Start Chart</source>
+      <translation>Построить диаграмму</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="829" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается построить диаграмму.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="843" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="844" />
       <source>µPy Chart</source>
       <translation>µPy диаграммы</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="860" />
-      <source>Unsaved Chart Data</source>
-      <translation>Несохраненные данные диаграммы</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="861" />
+      <source>Unsaved Chart Data</source>
+      <translation>Несохраненные данные диаграммы</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="862" />
       <source>The chart contains unsaved data.</source>
       <translation>Диаграмма содержит несохраненные данные.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="909" />
-      <source>Start File Manager</source>
-      <translation>Запустить менеджер файлов</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="910" />
+      <source>Start File Manager</source>
+      <translation>Запустить менеджер файлов</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="911" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается запустить менеджер файлов.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="930" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="931" />
       <source>µPy Files</source>
       <translation>µPy файлы</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1017" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1018" />
       <source>Downloads</source>
       <translation>Загрузить микрокод / библиотеки</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
       <source>Show Version</source>
       <translation>Показать версию</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1067" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Implementation</source>
       <translation>Показать исполнение</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1071" />
       <source>Show Board Data</source>
       <translation>Показать данные платы</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Synchronize Time</source>
       <translation>Синхронизировать время</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1079" />
       <source>Show Device Time</source>
       <translation>Показать время устройства</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1080" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Local Time</source>
       <translation>Показать локальное время</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1083" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1084" />
       <source>Show Time</source>
       <translation>Показать время</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1087" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1088" />
       <source>Show Builtin Modules</source>
       <translation>Показать встроенные модули</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1691" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1099" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1091" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1092" />
       <source>Install Package</source>
       <translation>Установить пакет</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1730" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1727" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1095" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1096" />
       <source>Install Packages</source>
       <translation>Установить пакеты</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1503" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1105" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1504" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1106" />
       <source>Compile Python File</source>
       <translation>Компилировать файл Python</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1529" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1520" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1109" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1530" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1110" />
       <source>Compile Current Editor</source>
       <translation>Компилировать текущий редактор</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1130" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1131" />
       <source>Download Firmware</source>
       <translation>Загрузить микрокод</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1137" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Show Documentation</source>
       <translation>Просмотр документации</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1140" />
-      <source>Convert To UF2</source>
-      <translation>Преобразовать в UF2</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1141" />
+      <source>Convert To UF2</source>
+      <translation>Преобразовать в UF2</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
       <source>Flash UF2 Device</source>
       <translation>Прошивка UF2-устройств</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
       <source>Manage Unknown Devices</source>
       <translation>Менеджер неизвестных устройств</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
       <source>Ignored Serial Devices</source>
       <translation>Проигнорированные последовательные устройства</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1150" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Configure</source>
       <translation>Настройки</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1153" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1154" />
       <source>Quit</source>
       <translation>Выйти</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1162" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1163" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation>&lt;h3&gt;Информация о версии устройства&lt;/h3&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1173" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
-      <source>Device Version Information</source>
-      <translation>Информация о версии устройства</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1174" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1170" />
+      <source>Device Version Information</source>
+      <translation>Информация о версии устройства</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1175" />
       <source>No version information available.</source>
       <translation>Информация о версии недоступна.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1204" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1205" />
       <source> ({0})</source>
       <translation> ({0})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1220" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1211" />
-      <source>Device Implementation Information</source>
-      <translation>Информация о исполнении устройства</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
-      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation>&lt;h3&gt;Информация о реализации устройства&lt;/h3&gt;&lt;p&gt;Это устройство содержит &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
+      <source>Device Implementation Information</source>
+      <translation>Информация о исполнении устройства</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1213" />
+      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation>&lt;h3&gt;Информация о реализации устройства&lt;/h3&gt;&lt;p&gt;Это устройство содержит &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>No device implementation information available.</source>
       <translation>Информация о реализации устройства отсутствует.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Время подключенного устройства было синхронизировано с локальным временем.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1296" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1297" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Дата и время устройства&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Дата&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Время&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1304" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1305" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Дата и время устройства&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1320" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1321" />
       <source>Device Date and Time</source>
       <translation>Дата и время устройства</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1332" />
-      <source>Local Date and Time</source>
-      <translation>Локальные дата и время</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1333" />
+      <source>Local Date and Time</source>
+      <translation>Локальные дата и время</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1334" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Локальные дата и время&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Дата&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Время&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1374" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1357" />
-      <source>Date and Time</source>
-      <translation>Дата и время</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
-      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-      <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Дата и время локальные&lt;/th&gt;&lt;th&gt;Дата и время устройства&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Дата &lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Время &lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1375" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
+      <source>Date and Time</source>
+      <translation>Дата и время</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1359" />
+      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+      <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Дата и время локальные&lt;/th&gt;&lt;th&gt;Дата и время устройства&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Дата &lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Время &lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1376" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Дата и время локальные&lt;/th&gt;&lt;th&gt;Дата и время устройства&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1399" />
-      <source>Error handling device</source>
-      <translation>Ошибка при работе с устройством</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1400" />
+      <source>Error handling device</source>
+      <translation>Ошибка при работе с устройством</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1401" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Произошла ошибка при работе с подключаемым устройством.&lt;/p&gt;&lt;p&gt;Метод: {0}&lt;/p&gt;&lt;p&gt;Сообщение: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1442" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1443" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation>Кросс-компилятор MicroPython &lt;b&gt;mpy-cross&lt;/b&gt; не найден. Убедитесь, что он находится в пути поиска, или настройте его на странице конфигурации MicroPython.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1468" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1469" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation>Файлы Python (*.py);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1478" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1479" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation>Файл Python &lt;b&gt;{0}&lt;/b&gt; не существует. Отмена...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1488" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1489" />
       <source>'mpy-cross' Output</source>
       <translation>Вывод команды 'mpy-cross'</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1522" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation>Текущий редактор не содержит файл Python. Отмена...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1613" />
-      <source>Add Unknown Devices</source>
-      <translation>Добавить неизвестное устройство</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1614" />
+      <source>Add Unknown Devices</source>
+      <translation>Добавить неизвестное устройство</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
       <source>Select the devices to be added:</source>
       <translation>Выборите устройства для добавления:</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1664" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1665" />
       <source>Plus any modules on the filesystem.</source>
       <translation>Плюс любые модули в файловой системе.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1716" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1717" />
       <source>Package '{0}' was installed successfully.</source>
       <translation>Пакет '{0}' успешно установлен.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation>Введите через пробел пакеты для установки:</translation>
     </message>
@@ -54752,17 +54745,17 @@
   <context>
     <name>MicroPythonWindow</name>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="81" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="83" />
       <source>MicroPython / CircuitPython Devices</source>
       <translation>Устройства MicroPython / Circuit Python</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Open Browser</source>
       <translation>Открыть браузер</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Could not start a web browser</source>
       <translation>Невозможно запустить web-браузер</translation>
     </message>
@@ -59926,164 +59919,164 @@
   <context>
     <name>Pip</name>
     <message>
-      <location filename="../PipInterface/Pip.py" line="157" />
+      <location filename="../PipInterface/Pip.py" line="161" />
       <source>python exited with an error ({0}).</source>
       <translation>python завершен с ошибкой ({0}).</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="166" />
+      <location filename="../PipInterface/Pip.py" line="170" />
       <source>python did not finish within 30 seconds.</source>
       <translation>python не завершился в течение 30 секунд.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="168" />
+      <location filename="../PipInterface/Pip.py" line="172" />
       <source>python could not be started.</source>
       <translation>невозможно запустить python.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="229" />
+      <location filename="../PipInterface/Pip.py" line="233" />
       <source>&lt;project&gt;</source>
       <translation>&lt;project&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="254" />
+      <location filename="../PipInterface/Pip.py" line="258" />
       <source>Interpreter for Virtual Environment</source>
       <translation>Интерпретатор для виртуального окружения</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="255" />
+      <location filename="../PipInterface/Pip.py" line="259" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation>Для выбранного виртуального окружения не настроен интерпретатор.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="308" />
+      <location filename="../PipInterface/Pip.py" line="312" />
       <source>Install PIP</source>
       <translation>Установка PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="355" />
+      <location filename="../PipInterface/Pip.py" line="359" />
       <source>Repair PIP</source>
       <translation>Восстановление PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="487" />
-      <location filename="../PipInterface/Pip.py" line="469" />
+      <location filename="../PipInterface/Pip.py" line="491" />
+      <location filename="../PipInterface/Pip.py" line="473" />
       <source>Upgrade Packages</source>
       <translation>Обновление пакетов</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="470" />
+      <location filename="../PipInterface/Pip.py" line="474" />
       <source>There are no packages except 'eric-ide' or 'PyQt6' left for upgrade.</source>
       <translation>Никаких пакетов для обновления не осталось, кроме 'eric-ide' или 'PyQt6'.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="533" />
+      <location filename="../PipInterface/Pip.py" line="537" />
       <source>Install Packages</source>
       <translation>Установка пакетов</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="564" />
+      <location filename="../PipInterface/Pip.py" line="568" />
       <source>Install Packages from Requirements</source>
       <translation>Установка пакетов, перечисленных в зависимостях</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="586" />
+      <location filename="../PipInterface/Pip.py" line="590" />
       <source>Install Project</source>
       <translation>Установка проекта</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="621" />
-      <location filename="../PipInterface/Pip.py" line="611" />
+      <location filename="../PipInterface/Pip.py" line="625" />
+      <location filename="../PipInterface/Pip.py" line="615" />
       <source>Install 'pyproject' Dependencies</source>
       <translation>Установка зависимостей 'pyproject'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="612" />
+      <location filename="../PipInterface/Pip.py" line="753" />
+      <location filename="../PipInterface/Pip.py" line="616" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation>Выбранный файл 'project.toml' не содержит раздела 'project.dependencies'. Прервать...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="622" />
+      <location filename="../PipInterface/Pip.py" line="626" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удалось прочитать выбранный файл 'project.toml'.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="642" />
+      <location filename="../PipInterface/Pip.py" line="646" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation>Установить пакеты из 'pyproject.toml'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="776" />
-      <location filename="../PipInterface/Pip.py" line="702" />
-      <location filename="../PipInterface/Pip.py" line="672" />
-      <location filename="../PipInterface/Pip.py" line="663" />
+      <location filename="../PipInterface/Pip.py" line="780" />
+      <location filename="../PipInterface/Pip.py" line="706" />
+      <location filename="../PipInterface/Pip.py" line="676" />
+      <location filename="../PipInterface/Pip.py" line="667" />
       <source>Uninstall Packages</source>
       <translation>Деинсталяция пакетов</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
-      <location filename="../PipInterface/Pip.py" line="703" />
-      <location filename="../PipInterface/Pip.py" line="664" />
+      <location filename="../PipInterface/Pip.py" line="781" />
+      <location filename="../PipInterface/Pip.py" line="707" />
+      <location filename="../PipInterface/Pip.py" line="668" />
       <source>Do you really want to uninstall these packages?</source>
       <translation>Вы действительно хотите деинсталировать эти пакеты?</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="720" />
+      <location filename="../PipInterface/Pip.py" line="724" />
       <source>Uninstall Packages from Requirements</source>
       <translation>Деинсталяция пакетов, перечисленных в требованиях</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="759" />
-      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="763" />
+      <location filename="../PipInterface/Pip.py" line="752" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation>Деинсталировать зависимости 'pyproject'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="760" />
+      <location filename="../PipInterface/Pip.py" line="764" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удалось прочитать выбранный файл 'project.toml'. &lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="787" />
+      <location filename="../PipInterface/Pip.py" line="791" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation>Деинсталировать пакеты из 'pyproject.toml'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1198" />
+      <location filename="../PipInterface/Pip.py" line="1203" />
       <source>Cache Info</source>
       <translation>Информация о кэше</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1224" />
-      <location filename="../PipInterface/Pip.py" line="1215" />
+      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1220" />
       <source>List Cached Files</source>
       <translation>Список кэшированных файлов</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1216" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
       <source>Enter a file pattern (empty for all):</source>
       <translation>Задайте шаблон файлов (пустая строка - все файлы):</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1248" />
-      <location filename="../PipInterface/Pip.py" line="1241" />
+      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1246" />
       <source>Remove Cached Files</source>
       <translation>Удалить кэшированные файлы</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1242" />
+      <location filename="../PipInterface/Pip.py" line="1247" />
       <source>Enter a file pattern:</source>
       <translation>Задайте шаблон файла:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1273" />
-      <location filename="../PipInterface/Pip.py" line="1265" />
+      <location filename="../PipInterface/Pip.py" line="1278" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
       <source>Purge Cache</source>
       <translation>Очистить кэш</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1266" />
+      <location filename="../PipInterface/Pip.py" line="1271" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation>Вы действительно хотите очистить pip-кэш? Все файлы должны быть загружены снова.</translation>
     </message>
@@ -61003,207 +60996,207 @@
       <translation>Получение списка обновленных пакетов...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="737" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="731" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
       <source>Cleanup Environment</source>
       <translation>Очистка среды</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="733" />
       <source>The environment cleanup was successful.</source>
       <translation>Очистка среды прошла успешно.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="739" />
       <source>Some leftover package directories could not been removed. Delete them manually.</source>
       <translation>Не удалось удалить некоторые оставшиеся директории пакетов. Удалите их вручную.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="834" />
-      <source>Search PyPI</source>
-      <translation>Поиск в PyPI</translation>
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="835" />
+      <source>Search PyPI</source>
+      <translation>Поиск в PyPI</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="836" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Недоступна подробная информация о пакете &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="854" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="855" />
       <source>Pip</source>
       <translation>Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="856" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="857" />
       <source>Install Pip</source>
       <translation>Инсталировать Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="860" />
       <source>Install Pip to User-Site</source>
       <translation>Инсталировать Pip в User-Site</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="862" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="863" />
       <source>Repair Pip</source>
       <translation>Восстановить Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="869" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="870" />
       <source>Install</source>
       <translation>Установить</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1048" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="871" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1049" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="872" />
       <source>Install Packages</source>
       <translation>Установить пакеты</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="874" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="875" />
       <source>Install Local Package</source>
       <translation>Установить локальный пакет</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="877" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="878" />
       <source>Re-Install Selected Packages</source>
       <translation>Переинсталировать выбранные пакеты</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="884" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="885" />
       <source>Requirements/Constraints</source>
       <translation>Зависимости/Ограничения</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="886" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="887" />
       <source>Install Requirements</source>
       <translation>Установить зависимости</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="889" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="890" />
       <source>Uninstall Requirements</source>
       <translation>Деинсталировать зависимости</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="892" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="893" />
       <source>Generate Requirements...</source>
       <translation>Генерировать зависимости...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="896" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="897" />
       <source>Install from 'pyproject.toml'</source>
       <translation>Установить из 'pyproject.toml'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="900" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="901" />
       <source>Uninstall from 'pyproject.toml'</source>
       <translation>Деинсталировать из 'pyproject.toml'</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="905" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="906" />
       <source>Generate Constraints...</source>
       <translation>Генерировать ограничения...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="912" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="913" />
       <source>Cache</source>
       <translation>Кэш</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="914" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="915" />
       <source>Show Cache Info...</source>
       <translation>Показать информацию о кэше...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="917" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="918" />
       <source>Show Cached Files...</source>
       <translation>Показать кэшированные файлы...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="920" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="921" />
       <source>Remove Cached Files...</source>
       <translation>Удалить кэшированные файлы...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="923" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="924" />
       <source>Purge Cache...</source>
       <translation>Очистить кэш...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="940" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="941" />
       <source>Show Licenses...</source>
       <translation>Показать лицензии...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="944" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="945" />
       <source>Check Vulnerabilities</source>
       <translation>Проверить уязвимости</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="948" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="949" />
       <source>Update Vulnerability Database</source>
       <translation>Обновить базу уязвимостей</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="952" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="953" />
       <source>Create SBOM file</source>
       <translation>Создать файл SBOM</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="959" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="960" />
       <source>Edit User Configuration...</source>
       <translation>Правка конфигурации пользователя...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="962" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="963" />
       <source>Edit Environment Configuration...</source>
       <translation>Правка конфигурации среды окружения...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="967" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="968" />
       <source>Configure...</source>
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1211" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1198" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1187" />
-      <source>Edit Configuration</source>
-      <translation>Правка конфигурации</translation>
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1212" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1199" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1188" />
+      <source>Edit Configuration</source>
+      <translation>Правка конфигурации</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1213" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1200" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1189" />
       <source>No valid configuration path determined. Aborting</source>
       <translation>Не определен допустимый путь конфигурации. Прерывание</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1421" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1422" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation>{0} {1}</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1442" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1443" />
       <source>Affected Version:</source>
       <translatorcomment>Подверженная уязвимости версия:  Пораженная версия Уязвимая</translatorcomment>
       <translation>Версия с уязвимостью:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1445" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1446" />
       <source>Advisory:</source>
       <translatorcomment>Консультация:  Рекомендация</translatorcomment>
       <translation>Рекомендуемая:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1585" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1560" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1586" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1561" />
       <source>unknown</source>
       <translation>неизвестная</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1582" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1583" />
       <source>any</source>
       <translation>любая</translation>
     </message>
@@ -61211,7 +61204,7 @@
   <context>
     <name>PipPackagesWindow</name>
     <message>
-      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <location filename="../PipInterface/PipPackagesWindow.py" line="60" />
       <source>Manage Packages</source>
       <translation>Управление пакетами</translation>
     </message>
@@ -61733,52 +61726,52 @@
   <context>
     <name>PluginManager</name>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="230" />
+      <location filename="../PluginManager/PluginManager.py" line="232" />
       <source>Could not create a package for {0}.</source>
       <translation>Невозможно создать пакет для {0}.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="262" />
+      <location filename="../PluginManager/PluginManager.py" line="264" />
       <source>The internal plugin directory &lt;b&gt;{0}&lt;/b&gt; does not exits.</source>
       <translation>Внутренняя директория плагинов &lt;b&gt;{0}&lt;/b&gt; не существует.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="439" />
+      <location filename="../PluginManager/PluginManager.py" line="441" />
       <source>Module is missing the 'autoactivate' attribute.</source>
       <translation>Модуль не содержит атрибута 'autoactivate'.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="450" />
+      <location filename="../PluginManager/PluginManager.py" line="452" />
       <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source>
       <translation>Модуль не содержит атрибутов 'pluginType' и/или 'pluginTypename'.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="478" />
+      <location filename="../PluginManager/PluginManager.py" line="480" />
       <source>Module failed to load. Error: {0}</source>
       <translation>Неудачная загрузка модуля. Ошибка: {0}</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="661" />
+      <location filename="../PluginManager/PluginManager.py" line="663" />
       <source>Incompatible plugin activation method.</source>
       <translation>Несовместимый метод активации плагина.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1269" />
+      <location filename="../PluginManager/PluginManager.py" line="1271" />
       <source>Plugin Manager Error</source>
       <translation>Ошибка менеджера плагинов</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1270" />
+      <location filename="../PluginManager/PluginManager.py" line="1272" />
       <source>&lt;p&gt;The plugin download directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Please configure it via the configuration dialog.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Директория для загрузки плагинов &lt;b&gt;{0}&lt;/b&gt; не может быть создана. Задайте её посредством диалога конфигурации.&lt;/p&gt;&lt;p&gt;Причина:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1358" />
+      <location filename="../PluginManager/PluginManager.py" line="1360" />
       <source>Error downloading file</source>
       <translation>Ошибка загрузки файла</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1359" />
+      <location filename="../PluginManager/PluginManager.py" line="1361" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удалось загрузить запрашиваемый файл из {0}.&lt;/p&gt;&lt;p&gt;Ошибка: {1}&lt;/p&gt;</translation>
     </message>
@@ -62665,18 +62658,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1911" />
+      <location filename="../Preferences/__init__.py" line="1891" />
       <source>Export Preferences</source>
       <translation>Экспорт Preferences</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1940" />
-      <location filename="../Preferences/__init__.py" line="1913" />
+      <location filename="../Preferences/__init__.py" line="1920" />
+      <location filename="../Preferences/__init__.py" line="1893" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Файлы Preferences (*.ini);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1938" />
+      <location filename="../Preferences/__init__.py" line="1918" />
       <source>Import Preferences</source>
       <translation>Импорт Preferences</translation>
     </message>
@@ -63200,116 +63193,113 @@
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="204" />
-      <source>Translation Extractor (Python, PySide2)</source>
-      <translation>Извлечение переводов (Python, PySide2)</translation>
+      <source>Translation Extractor (Python, PySide6)</source>
+      <translation>Извлечение переводов (Python, PySide6)</translation>
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="213" />
-      <source>Forms Compiler (Python, PySide2)</source>
-      <translation>Компилятор форм (Python, PySide2)</translation>
+      <source>Forms Compiler (Python, PySide6)</source>
+      <translation>Компилятор форм (Python, PySide6)</translation>
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="222" />
-      <source>Resource Compiler (Python, PySide2)</source>
-      <translation>Компилятор ресурсов (Python, PySide2)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="232" />
-      <source>Translation Extractor (Python, PySide6)</source>
-      <translation>Извлечение переводов (Python, PySide6)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="241" />
-      <source>Forms Compiler (Python, PySide6)</source>
-      <translation>Компилятор форм (Python, PySide6)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="250" />
       <source>Resource Compiler (Python, PySide6)</source>
       <translation>Компилятор ресурсов (Python, PySide6)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="265" />
+      <location filename="../Preferences/ProgramsDialog.py" line="237" />
       <source>conda Manager</source>
       <translation>Менеджер пакетов Conda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="275" />
+      <location filename="../Preferences/ProgramsDialog.py" line="247" />
       <source>PyPI Package Management</source>
       <translation>Менеджер пакетов PyPI</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="527" />
-      <location filename="../Preferences/ProgramsDialog.py" line="524" />
-      <location filename="../Preferences/ProgramsDialog.py" line="508" />
-      <location filename="../Preferences/ProgramsDialog.py" line="378" />
-      <location filename="../Preferences/ProgramsDialog.py" line="311" />
-      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <location filename="../Preferences/ProgramsDialog.py" line="499" />
+      <location filename="../Preferences/ProgramsDialog.py" line="496" />
+      <location filename="../Preferences/ProgramsDialog.py" line="480" />
+      <location filename="../Preferences/ProgramsDialog.py" line="350" />
+      <location filename="../Preferences/ProgramsDialog.py" line="283" />
+      <location filename="../Preferences/ProgramsDialog.py" line="266" />
       <source>(unknown)</source>
       <translation>(неизвестный)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="298" />
+      <location filename="../Preferences/ProgramsDialog.py" line="270" />
       <source>Spell Checker - PyEnchant</source>
       <translation>Проверка орфографии - PyEnchant</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="315" />
+      <location filename="../Preferences/ProgramsDialog.py" line="287" />
       <source>Source Highlighter - Pygments</source>
       <translation>Подсветка синтаксиса - Pygments</translation>
     </message>
     <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <source>MicroPython - MPY Cross Compiler</source>
+      <translation>MicroPython - MPY Cross Compiler</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="301" />
+      <source>MicroPython - ESP Tool</source>
+      <translation>MicroPython - ESP Tool</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="312" />
+      <source>MicroPython - PyBoard Flasher</source>
+      <translation>MicroPython - PyBoard Flasher</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ProgramsDialog.py" line="322" />
-      <source>MicroPython - MPY Cross Compiler</source>
-      <translation>MicroPython - MPY Cross Compiler</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="329" />
-      <source>MicroPython - ESP Tool</source>
-      <translation>MicroPython - ESP Tool</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="340" />
-      <source>MicroPython - PyBoard Flasher</source>
-      <translation>MicroPython - PyBoard Flasher</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="350" />
       <source>MicroPython - STLink Info</source>
       <translation>MicroPython - STLink Info</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="360" />
+      <location filename="../Preferences/ProgramsDialog.py" line="332" />
       <source>MicroPython - STLink Flasher</source>
       <translation>MicroPython - STLink Flasher</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="382" />
+      <location filename="../Preferences/ProgramsDialog.py" line="354" />
       <source>Code Assistant - Jedi</source>
       <translation>Code Assistant - Jedi</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="462" />
+      <location filename="../Preferences/ProgramsDialog.py" line="434" />
       <source>(not configured)</source>
       <translation>(не настроено)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="497" />
+      <location filename="../Preferences/ProgramsDialog.py" line="469" />
       <source>(module not found)</source>
       <translation>(модуль не найден)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="530" />
+      <location filename="../Preferences/ProgramsDialog.py" line="502" />
       <source>(not executable)</source>
       <translation>(не исполняемый)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="576" />
-      <location filename="../Preferences/ProgramsDialog.py" line="544" />
-      <location filename="../Preferences/ProgramsDialog.py" line="542" />
+      <location filename="../Preferences/ProgramsDialog.py" line="548" />
+      <location filename="../Preferences/ProgramsDialog.py" line="516" />
+      <location filename="../Preferences/ProgramsDialog.py" line="514" />
       <source>(not found)</source>
       <translation>(не найдено)</translation>
     </message>
+    <message>
+      <source>Translation Extractor (Python, PySide2)</source>
+      <translation type="vanished">Извлечение переводов (Python, PySide2)</translation>
+    </message>
+    <message>
+      <source>Forms Compiler (Python, PySide2)</source>
+      <translation type="vanished">Компилятор форм (Python, PySide2)</translation>
+    </message>
+    <message>
+      <source>Resource Compiler (Python, PySide2)</source>
+      <translation type="vanished">Компилятор ресурсов (Python, PySide2)</translation>
+    </message>
   </context>
   <context>
     <name>Project</name>
@@ -63365,379 +63355,369 @@
     </message>
     <message>
       <location filename="../Project/Project.py" line="362" />
-      <source>PySide2 GUI</source>
-      <translation>PySide2 GUI</translation>
+      <source>PySide6 GUI</source>
+      <translation>PySide6 GUI</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="363" />
-      <source>PySide2 Console</source>
-      <translation>Консоль PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="367" />
-      <source>PySide6 GUI</source>
-      <translation>PySide6 GUI</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation>Консоль PySide6</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="466" />
-      <location filename="../Project/Project.py" line="454" />
-      <location filename="../Project/Project.py" line="443" />
+      <location filename="../Project/Project.py" line="461" />
+      <location filename="../Project/Project.py" line="449" />
+      <location filename="../Project/Project.py" line="438" />
       <source>Registering Project Type</source>
       <translation>Регистрация типа проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="444" />
+      <location filename="../Project/Project.py" line="439" />
       <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
       <translation>&lt;p&gt;Язык программирования &lt;b&gt;{0}&lt;/b&gt; не поддерживается (тип проекта: {1}).&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="455" />
+      <location filename="../Project/Project.py" line="450" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Тип проекта &lt;b&gt;{0}&lt;/b&gt; уже зарегистрирован для языка программирования &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="467" />
+      <location filename="../Project/Project.py" line="462" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Тип проекта &lt;b&gt;{0}&lt;/b&gt; уже зарегистрирован.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="772" />
+      <location filename="../Project/Project.py" line="767" />
       <source>All Files (*)</source>
       <translation>Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1321" />
       <source>Read Project Session</source>
       <translation>Загрузить сеанс проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1579" />
-      <location filename="../Project/Project.py" line="1553" />
-      <location filename="../Project/Project.py" line="1517" />
-      <location filename="../Project/Project.py" line="1435" />
-      <location filename="../Project/Project.py" line="1396" />
-      <location filename="../Project/Project.py" line="1371" />
-      <location filename="../Project/Project.py" line="1334" />
+      <location filename="../Project/Project.py" line="1567" />
+      <location filename="../Project/Project.py" line="1541" />
+      <location filename="../Project/Project.py" line="1505" />
+      <location filename="../Project/Project.py" line="1423" />
+      <location filename="../Project/Project.py" line="1384" />
+      <location filename="../Project/Project.py" line="1359" />
+      <location filename="../Project/Project.py" line="1322" />
       <source>Please save the project first.</source>
       <translation>Пожалуйста, сначала сохраните проект.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1370" />
+      <location filename="../Project/Project.py" line="1358" />
       <source>Save Project Session</source>
       <translation>Сохранить сеанс проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1412" />
-      <location filename="../Project/Project.py" line="1395" />
+      <location filename="../Project/Project.py" line="1400" />
+      <location filename="../Project/Project.py" line="1383" />
       <source>Delete Project Session</source>
       <translation>Удалить сеанс проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1402" />
+      <location filename="../Project/Project.py" line="1390" />
       <source>Delete Remote Project Session</source>
       <translation>Удалить сеанс удаленного проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1421" />
+      <location filename="../Project/Project.py" line="1409" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно удалить выбранный файл с сеансом: &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1422" />
       <source>Read Tasks</source>
       <translation>Прочитать задачи</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1516" />
+      <location filename="../Project/Project.py" line="1504" />
       <source>Read Debugger Properties</source>
       <translation>Прочитать свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1552" />
+      <location filename="../Project/Project.py" line="1540" />
       <source>Save Debugger Properties</source>
       <translation>Сохранить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1595" />
-      <location filename="../Project/Project.py" line="1578" />
+      <location filename="../Project/Project.py" line="1583" />
+      <location filename="../Project/Project.py" line="1566" />
       <source>Delete Debugger Properties</source>
       <translation>Удалить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1585" />
+      <location filename="../Project/Project.py" line="1573" />
       <source>Delete Remote Debugger Properties</source>
       <translation>Удалить свойства удаленного отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1604" />
+      <location filename="../Project/Project.py" line="1592" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно удалить файл свойств отладчика &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1777" />
+      <location filename="../Project/Project.py" line="1765" />
       <source>Add Language</source>
       <translation>Добавить язык перевода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1778" />
+      <location filename="../Project/Project.py" line="1766" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Необходимо сначала задать шаблон перевода.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1919" />
+      <location filename="../Project/Project.py" line="1905" />
       <source>Delete Translation</source>
       <translation>Удалить перевод</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1946" />
-      <location filename="../Project/Project.py" line="1920" />
+      <location filename="../Project/Project.py" line="1932" />
+      <location filename="../Project/Project.py" line="1906" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно удалить файла перевода &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1945" />
+      <location filename="../Project/Project.py" line="1931" />
       <source>Delete translation</source>
       <translation>Удалить перевод</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2098" />
-      <location filename="../Project/Project.py" line="2081" />
+      <location filename="../Project/Project.py" line="2084" />
+      <location filename="../Project/Project.py" line="2067" />
       <source>Add File</source>
       <translation>Добавить файл</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2200" />
-      <location filename="../Project/Project.py" line="2082" />
+      <location filename="../Project/Project.py" line="2186" />
+      <location filename="../Project/Project.py" line="2068" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2099" />
+      <location filename="../Project/Project.py" line="2085" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно добавить выделенный файл &lt;b&gt;{0}&lt;/b&gt; в архив &lt;b&gt;{1}&lt;/b&gt;. &lt;/p&gt;&lt;p&gt;Причина: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2097" />
       <source>Add file</source>
       <translation>Добавить файл</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2296" />
-      <location filename="../Project/Project.py" line="2112" />
+      <location filename="../Project/Project.py" line="2282" />
+      <location filename="../Project/Project.py" line="2098" />
       <source>The target directory must not be empty.</source>
       <translation>Целевая директория не должна быть пустой.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2172" />
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2185" />
+      <location filename="../Project/Project.py" line="2158" />
+      <location filename="../Project/Project.py" line="2138" />
       <source>Add Directory</source>
       <translation>Добавить директорию</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2153" />
+      <location filename="../Project/Project.py" line="2139" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Директория не содержит ни одного файла, принадлежащего к заданной категории.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2173" />
+      <location filename="../Project/Project.py" line="2159" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно создать директорию &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2307" />
-      <location filename="../Project/Project.py" line="2295" />
+      <location filename="../Project/Project.py" line="2293" />
+      <location filename="../Project/Project.py" line="2281" />
       <source>Add directory</source>
       <translation>Добавить директорию</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2308" />
+      <location filename="../Project/Project.py" line="2294" />
       <source>The source directory must not be empty.</source>
       <translation>Исходная директория не должна быть пустой.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2422" />
-      <location filename="../Project/Project.py" line="2404" />
-      <location filename="../Project/Project.py" line="2388" />
-      <location filename="../Project/Project.py" line="2381" />
+      <location filename="../Project/Project.py" line="2408" />
+      <location filename="../Project/Project.py" line="2390" />
+      <location filename="../Project/Project.py" line="2374" />
+      <location filename="../Project/Project.py" line="2367" />
       <source>Rename File</source>
       <translation>Переименовать файл</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8089" />
-      <location filename="../Project/Project.py" line="3909" />
-      <location filename="../Project/Project.py" line="2405" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2423" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Невозможно переименовать файл &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2690" />
-      <source>Delete File</source>
-      <translation>Удалить файл</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2691" />
-      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Невозможно удалить выбранный файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2719" />
-      <source>Delete Directory</source>
-      <translation>Удалить директорию</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2720" />
-      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Невозможно удалить выбранную директорию &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2853" />
-      <source>Create project directory</source>
-      <translation>Создать директорию проекта</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2854" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Невозможно создать директорию проекта &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3682" />
-      <location filename="../Project/Project.py" line="2954" />
-      <source>Create project management directory</source>
-      <translation>Создать служебную директорию проекта</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3683" />
-      <location filename="../Project/Project.py" line="2955" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Директория проекта &lt;b&gt;{0}&lt;/b&gt; не доступна для записи.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2995" />
-      <source>Create main script</source>
-      <translation>Создать главный сценарий</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2996" />
-      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Не удается создать основной скрипт &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;Причина: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3463" />
-      <location filename="../Project/Project.py" line="3020" />
-      <source>Create Makefile</source>
-      <translation>Создать Makefile</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3464" />
-      <location filename="../Project/Project.py" line="3021" />
-      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Файл makefile &lt;b&gt;{0}&lt;/b&gt; невозможно создать.&lt;br/&gt;Причина: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3712" />
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3144" />
-      <location filename="../Project/Project.py" line="3112" />
-      <location filename="../Project/Project.py" line="3094" />
-      <location filename="../Project/Project.py" line="3069" />
-      <location filename="../Project/Project.py" line="3031" />
-      <source>New Project</source>
-      <translation>Новый проект</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3032" />
-      <source>Add existing files to the project?</source>
-      <translation>Добавить существующие файлы в проект?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3713" />
-      <location filename="../Project/Project.py" line="3070" />
-      <source>Select Version Control System</source>
-      <translation>Выберите систему контроля версий (VCS)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3174" />
-      <location filename="../Project/Project.py" line="3095" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>Вы хотите редактировать параметры команд VCS?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3113" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Должен ли файл проекта быть добавлен в репозиторий?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3150" />
-      <location filename="../Project/Project.py" line="3139" />
-      <source>None</source>
-      <translation>None</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3145" />
-      <source>Select version control system for the project</source>
-      <translation>Выберите систему контроля версий для проекта</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3356" />
-      <source>Translation Pattern</source>
-      <translation>Шаблон перевода</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3357" />
-      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
-      <translation>Введите шаблон пути для файлов переводов (используйте '%language%' вместо language code):</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3661" />
-      <source>Open Project</source>
-      <translation>Открыть проект</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="8075" />
-      <location filename="../Project/Project.py" line="8069" />
-      <location filename="../Project/Project.py" line="8059" />
-      <location filename="../Project/Project.py" line="3894" />
-      <location filename="../Project/Project.py" line="3884" />
-      <location filename="../Project/Project.py" line="3663" />
+      <location filename="../Project/Project.py" line="3895" />
+      <location filename="../Project/Project.py" line="2391" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2409" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Невозможно переименовать файл &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2676" />
+      <source>Delete File</source>
+      <translation>Удалить файл</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2677" />
+      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Невозможно удалить выбранный файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2705" />
+      <source>Delete Directory</source>
+      <translation>Удалить директорию</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2706" />
+      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Невозможно удалить выбранную директорию &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2839" />
+      <source>Create project directory</source>
+      <translation>Создать директорию проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2840" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Невозможно создать директорию проекта &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3668" />
+      <location filename="../Project/Project.py" line="2940" />
+      <source>Create project management directory</source>
+      <translation>Создать служебную директорию проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3669" />
+      <location filename="../Project/Project.py" line="2941" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Директория проекта &lt;b&gt;{0}&lt;/b&gt; не доступна для записи.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2981" />
+      <source>Create main script</source>
+      <translation>Создать главный сценарий</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2982" />
+      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Не удается создать основной скрипт &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;Причина: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3449" />
+      <location filename="../Project/Project.py" line="3006" />
+      <source>Create Makefile</source>
+      <translation>Создать Makefile</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3450" />
+      <location filename="../Project/Project.py" line="3007" />
+      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Файл makefile &lt;b&gt;{0}&lt;/b&gt; невозможно создать.&lt;br/&gt;Причина: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3698" />
+      <location filename="../Project/Project.py" line="3159" />
+      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3098" />
+      <location filename="../Project/Project.py" line="3080" />
+      <location filename="../Project/Project.py" line="3055" />
+      <location filename="../Project/Project.py" line="3017" />
+      <source>New Project</source>
+      <translation>Новый проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3018" />
+      <source>Add existing files to the project?</source>
+      <translation>Добавить существующие файлы в проект?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3699" />
+      <location filename="../Project/Project.py" line="3056" />
+      <source>Select Version Control System</source>
+      <translation>Выберите систему контроля версий (VCS)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3160" />
+      <location filename="../Project/Project.py" line="3081" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>Вы хотите редактировать параметры команд VCS?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3099" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Должен ли файл проекта быть добавлен в репозиторий?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3125" />
+      <source>None</source>
+      <translation>None</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3131" />
+      <source>Select version control system for the project</source>
+      <translation>Выберите систему контроля версий для проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3342" />
+      <source>Translation Pattern</source>
+      <translation>Шаблон перевода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3343" />
+      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
+      <translation>Введите шаблон пути для файлов переводов (используйте '%language%' вместо language code):</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3647" />
+      <source>Open Project</source>
+      <translation>Открыть проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8061" />
+      <location filename="../Project/Project.py" line="8055" />
+      <location filename="../Project/Project.py" line="8045" />
+      <location filename="../Project/Project.py" line="3880" />
+      <location filename="../Project/Project.py" line="3870" />
+      <location filename="../Project/Project.py" line="3649" />
       <source>Project Files (*.epj)</source>
       <translation>Файлы проекта (*.epj)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="3892" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3878" />
       <source>Save Project</source>
       <translation>Сохранить проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3947" />
+      <location filename="../Project/Project.py" line="3933" />
       <source>Close Project</source>
       <translation>Закрыть проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3948" />
+      <location filename="../Project/Project.py" line="3934" />
       <source>The current project has unsaved changes.</source>
       <translation>Изменения в текущем проекте не сохранены.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4134" />
+      <location filename="../Project/Project.py" line="4098" />
       <source>Syntax Errors Detected</source>
       <translation>Обнаружены синтаксические ошибки</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4149" />
-      <location filename="../Project/Project.py" line="4113" />
+      <location filename="../Project/Project.py" line="4135" />
+      <location filename="../Project/Project.py" line="4099" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Проект содержит %n файл с синтаксической ошибкой.</numerusform>
@@ -63746,464 +63726,464 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4793" />
       <source>New project</source>
       <translation>Новый проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4809" />
+      <location filename="../Project/Project.py" line="4795" />
       <source>&amp;New...</source>
       <translation>&amp;Новый...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4801" />
+      <source>Generate a new project</source>
+      <translation>Создать новый проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4803" />
+      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Новый...&lt;/b&gt;&lt;p&gt;Открытие диалога ввода информации о новом проекте.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4813" />
+      <source>Open project</source>
+      <translation>Открыть проект</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4815" />
-      <source>Generate a new project</source>
-      <translation>Создать новый проект</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4817" />
-      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Новый...&lt;/b&gt;&lt;p&gt;Открытие диалога ввода информации о новом проекте.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4827" />
-      <source>Open project</source>
-      <translation>Открыть проект</translation>
+      <source>&amp;Open...</source>
+      <translation>&amp;Открыть...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4821" />
+      <source>Open an existing project</source>
+      <translation>Открыть существующий проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4823" />
+      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Открыть...&lt;/b&gt;&lt;p&gt;Открытие существующего проекта.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4829" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Открыть...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4835" />
-      <source>Open an existing project</source>
-      <translation>Открыть существующий проект</translation>
+      <source>Open remote project</source>
+      <translation>Открыть удаленный проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4831" />
+      <source>Open (Remote)...</source>
+      <translation>Открыть (удаленно)...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4837" />
-      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Открыть...&lt;/b&gt;&lt;p&gt;Открытие существующего проекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4843" />
-      <source>Open remote project</source>
-      <translation>Открыть удаленный проект</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4845" />
-      <source>Open (Remote)...</source>
-      <translation>Открыть (удаленно)...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation>Открыть существующий удаленный проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4853" />
+      <location filename="../Project/Project.py" line="4839" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Открыть (удаленно)...&lt;/b&gt;&lt;p&gt;Открывает существующий удаленный проект.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4862" />
+      <location filename="../Project/Project.py" line="4848" />
       <source>Reload project</source>
       <translation>Перезагрузить проект</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4850" />
+      <source>Re&amp;load</source>
+      <translation>П&amp;ерезагрузить</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4856" />
+      <source>Reload the current project</source>
+      <translation>Перезагрузить текущий проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4858" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Перезагрузить&lt;/b&gt;&lt;p&gt;Перезагружает текущий проект.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4864" />
-      <source>Re&amp;load</source>
-      <translation>П&amp;ерезагрузить</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4870" />
-      <source>Reload the current project</source>
-      <translation>Перезагрузить текущий проект</translation>
+      <source>Close project</source>
+      <translation>Закрыть проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4866" />
+      <source>&amp;Close</source>
+      <translation>&amp;Закрыть</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4872" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Перезагрузить&lt;/b&gt;&lt;p&gt;Перезагружает текущий проект.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4878" />
-      <source>Close project</source>
-      <translation>Закрыть проект</translation>
+      <source>Close the current project</source>
+      <translation>Закрыть текущий проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4874" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Закрыть&lt;/b&gt;&lt;p&gt;Закрытие текущего проекта.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4880" />
-      <source>&amp;Close</source>
-      <translation>&amp;Закрыть</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4886" />
-      <source>Close the current project</source>
-      <translation>Закрыть текущий проект</translation>
+      <source>Save project</source>
+      <translation>Сохранить проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5177" />
+      <location filename="../Project/Project.py" line="4882" />
+      <source>&amp;Save</source>
+      <translation>&amp;Сохранить</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4888" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Закрыть&lt;/b&gt;&lt;p&gt;Закрытие текущего проекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4894" />
-      <source>Save project</source>
-      <translation>Сохранить проект</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5191" />
-      <location filename="../Project/Project.py" line="4896" />
-      <source>&amp;Save</source>
-      <translation>&amp;Сохранить</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Сохранить текущий проект</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4890" />
+      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Сохранить&lt;/b&gt;&lt;p&gt;Сохранение текущего проекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
+      <source>Save project as</source>
+      <translation>Сохранить проект как</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4898" />
+      <source>Save &amp;as...</source>
+      <translation>Сохранить &amp;как...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4904" />
-      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Сохранить&lt;/b&gt;&lt;p&gt;Сохранение текущего проекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4910" />
-      <source>Save project as</source>
-      <translation>Сохранить проект как</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4912" />
-      <source>Save &amp;as...</source>
-      <translation>Сохранить &amp;как...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation>Сохранить текущий проект в новый файл</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4920" />
+      <location filename="../Project/Project.py" line="4906" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить как&lt;/b&gt;&lt;p&gt; Сохранение текущего проекта в новый файл.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4929" />
+      <location filename="../Project/Project.py" line="4915" />
       <source>Save project as (Remote)</source>
       <translation>Сохранить проект как (удаленно)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4931" />
+      <location filename="../Project/Project.py" line="4917" />
       <source>Save as (Remote)...</source>
       <translation>Сохранить как (удаленно)...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4938" />
+      <location filename="../Project/Project.py" line="4924" />
       <source>Save the current project to a new remote file</source>
       <translation>Сохранить текущий проект в новом удаленном файле</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4927" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить как (удаленно)&lt;/b&gt;&lt;p&gt;При этом текущий проект сохраняется в новом удаленном файле.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4957" />
+      <location filename="../Project/Project.py" line="4943" />
       <source>Add files to project</source>
       <translation>Добавить файлы в проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4959" />
+      <location filename="../Project/Project.py" line="4945" />
       <source>Add &amp;files...</source>
       <translation>Добавить &amp;файлы...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4965" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>Add files to the current project</source>
       <translation>Добавить файлы в текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4967" />
+      <location filename="../Project/Project.py" line="4953" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Добавить файлы&lt;/b&gt;
 &lt;p&gt;Открытие диалога добавления файлов в текущий проект. Место добавления определяется расширением файла.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4978" />
+      <location filename="../Project/Project.py" line="4964" />
       <source>Add directory to project</source>
       <translation>Добавить директорию в проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4980" />
+      <location filename="../Project/Project.py" line="4966" />
       <source>Add directory...</source>
       <translation>Добавить директорию...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4987" />
+      <location filename="../Project/Project.py" line="4973" />
       <source>Add a directory to the current project</source>
       <translation>Добавить директорию в текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4990" />
+      <location filename="../Project/Project.py" line="4976" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Добавить директорию...&lt;/b&gt;
 &lt;p&gt;Открытие диалога добавления директории к текущему проекту.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5000" />
+      <location filename="../Project/Project.py" line="4986" />
       <source>Add translation to project</source>
       <translation>Добавить перевод в проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5002" />
+      <location filename="../Project/Project.py" line="4988" />
       <source>Add &amp;translation...</source>
       <translation>Добавить &amp;перевод...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4995" />
+      <source>Add a translation to the current project</source>
+      <translation>Добавить перевод в текущий проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4998" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Добавить перевод...&lt;/b&gt;&lt;p&gt;Открытие диалога добавления перевода в текущий проект.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5008" />
+      <source>Search new files</source>
+      <translation>Поиск новых файлов</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5009" />
-      <source>Add a translation to the current project</source>
-      <translation>Добавить перевод в текущий проект</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5012" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Добавить перевод...&lt;/b&gt;&lt;p&gt;Открытие диалога добавления перевода в текущий проект.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5022" />
-      <source>Search new files</source>
-      <translation>Поиск новых файлов</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>Поис&amp;к новых файлов...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5015" />
+      <source>Search new files in the project directory.</source>
+      <translation>Поиск новых файлов в директории проекта.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5017" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Поиск новых файлов...&lt;/b&gt;&lt;p&gt;Поиск новых файлов (источники, формы, ...) в директории проекта и зарегистрированных поддиректориях..&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5027" />
+      <source>Search Project File</source>
+      <translation>Поиск файла проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5028" />
+      <source>Search Project File...</source>
+      <translation>Поиск файла проекта...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5029" />
-      <source>Search new files in the project directory.</source>
-      <translation>Поиск новых файлов в директории проекта.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5031" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Поиск новых файлов...&lt;/b&gt;&lt;p&gt;Поиск новых файлов (источники, формы, ...) в директории проекта и зарегистрированных поддиректориях..&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File</source>
-      <translation>Поиск файла проекта</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5042" />
-      <source>Search Project File...</source>
-      <translation>Поиск файла проекта...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5048" />
+      <location filename="../Project/Project.py" line="5034" />
       <source>Search for a file in the project list of files.</source>
       <translation>Поиск файла в списке файлов проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5050" />
+      <location filename="../Project/Project.py" line="5036" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Поиск файла проекта&lt;/b&gt;&lt;p&gt;Поиск файла в списке файлов проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5059" />
+      <location filename="../Project/Project.py" line="5045" />
       <source>Project properties</source>
       <translation>Свойства проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5061" />
+      <location filename="../Project/Project.py" line="5047" />
       <source>&amp;Properties...</source>
       <translation>&amp;Свойства...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5067" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Show the project properties</source>
       <translation>Показать свойства проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5069" />
+      <location filename="../Project/Project.py" line="5055" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Свойства...&lt;/b&gt;&lt;p&gt;Отображение диалога для редактирования свойств проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5078" />
+      <location filename="../Project/Project.py" line="5064" />
       <source>User project properties</source>
       <translation>Пользовательские настройки проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5080" />
+      <location filename="../Project/Project.py" line="5066" />
       <source>&amp;User Properties...</source>
       <translation>&amp;Пользовательские свойства...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5073" />
+      <source>Show the user specific project properties</source>
+      <translation>Показать пользовательские свойства проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5076" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Пользовательские свойства...&lt;/b&gt;&lt;p&gt;Отображает диалог редактирования пользовательских свойств проекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5086" />
+      <source>Filetype Associations</source>
+      <translation>Ассоциации типов файлов</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5087" />
-      <source>Show the user specific project properties</source>
-      <translation>Показать пользовательские свойства проекта</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5090" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Пользовательские свойства...&lt;/b&gt;&lt;p&gt;Отображает диалог редактирования пользовательских свойств проекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5100" />
-      <source>Filetype Associations</source>
-      <translation>Ассоциации типов файлов</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation>Ассоциации типов файлов...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5108" />
+      <location filename="../Project/Project.py" line="5094" />
       <source>Show the project file type associations</source>
       <translation>Показать ассоциации типов файлов для проекта</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5097" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Ассоциации типов файлов...&lt;/b&gt;&lt;p&gt;Отображается диалоговое окно для редактирования ассоциаций типов файлов проекта. Эти ассоциации определяют тип (источник, форму, интерфейс, протокол или другие) с шаблоном имени файла. Они используются при добавлении файла в проект и при поиске новых файлов.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5110" />
+      <source>Lexer Associations</source>
+      <translation>Ассоциации для лексеров</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5111" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Ассоциации типов файлов...&lt;/b&gt;&lt;p&gt;Отображается диалоговое окно для редактирования ассоциаций типов файлов проекта. Эти ассоциации определяют тип (источник, форму, интерфейс, протокол или другие) с шаблоном имени файла. Они используются при добавлении файла в проект и при поиске новых файлов.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5124" />
-      <source>Lexer Associations</source>
-      <translation>Ассоциации для лексеров</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation>Ассоциации для лексеров...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5132" />
+      <location filename="../Project/Project.py" line="5118" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation>Показать ассоциации для лексеров проекта (переопределяющие по умолчанию)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5135" />
+      <location filename="../Project/Project.py" line="5121" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ассоциации для лексеров...&lt;/b&gt;&lt;p&gt;Показать ассоциации лексеров для проекта. Эти ассоциации переопределяют глобальные ассоциации лексеров. Лексеры используются для подсвечивания текста в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5153" />
+      <location filename="../Project/Project.py" line="5139" />
       <source>Debugger Properties</source>
       <translation>Свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5154" />
+      <location filename="../Project/Project.py" line="5140" />
       <source>Debugger &amp;Properties...</source>
       <translation>&amp;Свойства отладчика...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5160" />
+      <location filename="../Project/Project.py" line="5146" />
       <source>Show the debugger properties</source>
       <translation>Показать свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5162" />
+      <location filename="../Project/Project.py" line="5148" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Свойства отладчика...&lt;/b&gt;
 &lt;p&gt;Отображение диалога редактирования свойств отладчика, специфичных для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5158" />
       <source>Load</source>
       <translation>Загрузить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5173" />
+      <location filename="../Project/Project.py" line="5159" />
       <source>&amp;Load</source>
       <translation>&amp;Загрузить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5179" />
+      <location filename="../Project/Project.py" line="5165" />
       <source>Load the debugger properties</source>
       <translation>Загрузить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5181" />
+      <location filename="../Project/Project.py" line="5167" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Загрузить свойства отладчика&lt;/b&gt;
 &lt;p&gt;Загрузить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
+      <location filename="../Project/Project.py" line="5176" />
       <source>Save</source>
       <translation>Сохранить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5197" />
+      <location filename="../Project/Project.py" line="5183" />
       <source>Save the debugger properties</source>
       <translation>Сохранить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5199" />
+      <location filename="../Project/Project.py" line="5185" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить свойства отладчика&lt;/b&gt;&lt;p&gt;Сохранить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5208" />
+      <location filename="../Project/Project.py" line="5194" />
       <source>Delete</source>
       <translation>Удалить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5209" />
+      <location filename="../Project/Project.py" line="5195" />
       <source>&amp;Delete</source>
       <translation>&amp;Удалить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5215" />
+      <location filename="../Project/Project.py" line="5201" />
       <source>Delete the debugger properties</source>
       <translation>Удалить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5217" />
+      <location filename="../Project/Project.py" line="5203" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Удалить свойства отладчика&lt;/b&gt;&lt;p&gt;Удалить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5227" />
+      <location filename="../Project/Project.py" line="5213" />
       <source>Reset</source>
       <translation>Рестарт</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5228" />
+      <location filename="../Project/Project.py" line="5214" />
       <source>&amp;Reset</source>
       <translation>&amp;Рестарт</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5234" />
+      <location filename="../Project/Project.py" line="5220" />
       <source>Reset the debugger properties</source>
       <translation>Сбросить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5236" />
+      <location filename="../Project/Project.py" line="5222" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сбросить свойства отладчика&lt;/b&gt;&lt;p&gt;Сбросить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5252" />
-      <location filename="../Project/Project.py" line="5251" />
+      <location filename="../Project/Project.py" line="5238" />
+      <location filename="../Project/Project.py" line="5237" />
       <source>Load session</source>
       <translation>Загрузить сеанс</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5258" />
+      <location filename="../Project/Project.py" line="5244" />
       <source>Load the projects session file.</source>
       <translation>Загрузить файл с сеансом проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5260" />
+      <location filename="../Project/Project.py" line="5246" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Загрузить сеанс&lt;/b&gt;
 &lt;p&gt;Загрузить файл с сеансом проекта. Сеанс содержит следующие данные:&lt;br&gt;
@@ -64215,18 +64195,18 @@
 &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5276" />
-      <location filename="../Project/Project.py" line="5275" />
+      <location filename="../Project/Project.py" line="5262" />
+      <location filename="../Project/Project.py" line="5261" />
       <source>Save session</source>
       <translation>Сохранить сеанс</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5282" />
+      <location filename="../Project/Project.py" line="5268" />
       <source>Save the projects session file.</source>
       <translation>Сохранить файл с сеансом проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5284" />
+      <location filename="../Project/Project.py" line="5270" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить сеанс&lt;/b&gt;
 &lt;p&gt;Сохранить файл с сеансом проекта. Сеанс содержит следующие данные:&lt;br&gt;
@@ -64238,797 +64218,805 @@
 &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5300" />
-      <location filename="../Project/Project.py" line="5299" />
+      <location filename="../Project/Project.py" line="5286" />
+      <location filename="../Project/Project.py" line="5285" />
       <source>Delete session</source>
       <translation>Удалить сеанс</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5306" />
+      <location filename="../Project/Project.py" line="5292" />
       <source>Delete the projects session file.</source>
       <translation>Удалить файл с сеансом проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5308" />
+      <location filename="../Project/Project.py" line="5294" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Удалить сеанс&lt;/b&gt;&lt;p&gt;Удалить файл с сеансом проекта&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5323" />
+      <location filename="../Project/Project.py" line="5309" />
       <source>Code Metrics</source>
       <translation>Метрики кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5324" />
+      <location filename="../Project/Project.py" line="5310" />
       <source>&amp;Code Metrics...</source>
       <translation>&amp;Метрики кода...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5317" />
+      <source>Show some code metrics for the project.</source>
+      <translation>Отображение некоторых метрик кода проекта.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5320" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Метрики кода...&lt;/b&gt;&lt;p&gt;Отображение некоторых метрик кода для всех Python-файлов проекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5330" />
+      <source>Python Code Coverage</source>
+      <translation>Покрытие кода Python</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5331" />
-      <source>Show some code metrics for the project.</source>
-      <translation>Отображение некоторых метрик кода проекта.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5334" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Метрики кода...&lt;/b&gt;&lt;p&gt;Отображение некоторых метрик кода для всех Python-файлов проекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5344" />
-      <source>Python Code Coverage</source>
-      <translation>Покрытие кода Python</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation>&amp;Покрытие кода...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5338" />
+      <source>Show code coverage information for the project.</source>
+      <translation>Показать информацию покрытия кода проекта.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5341" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Покрытие кода...&lt;/b&gt;&lt;p&gt;Показать информацию покрытия кода всех Python-файлов проекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6775" />
+      <location filename="../Project/Project.py" line="6762" />
+      <location filename="../Project/Project.py" line="5351" />
+      <source>Profile Data</source>
+      <translation>Данные профайлера</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5352" />
-      <source>Show code coverage information for the project.</source>
-      <translation>Показать информацию покрытия кода проекта.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5355" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Покрытие кода...&lt;/b&gt;&lt;p&gt;Показать информацию покрытия кода всех Python-файлов проекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6789" />
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="5365" />
-      <source>Profile Data</source>
-      <translation>Данные профайлера</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Данные профайлера...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5373" />
+      <location filename="../Project/Project.py" line="5359" />
       <source>Show profiling data for the project.</source>
       <translation>Отображение результатов профилирования проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5376" />
+      <location filename="../Project/Project.py" line="5362" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Данные профайлера...&lt;/b&gt;&lt;p&gt;Отображение результатов профилирования проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="6827" />
+      <location filename="../Project/Project.py" line="5377" />
       <source>Application Diagram</source>
       <translation>Диаграмма приложения</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5392" />
+      <location filename="../Project/Project.py" line="5378" />
       <source>&amp;Application Diagram...</source>
       <translation>&amp;Диаграмма приложения...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5399" />
+      <location filename="../Project/Project.py" line="5385" />
       <source>Show a diagram of the project.</source>
       <translation>Показать диаграмму проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5402" />
+      <location filename="../Project/Project.py" line="5388" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Диаграмма приложения...&lt;/b&gt;&lt;p&gt;Отображает диаграмму проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5411" />
+      <location filename="../Project/Project.py" line="5397" />
       <source>Load Diagram</source>
       <translation>Загрузить диаграмму</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5412" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Load Diagram...</source>
       <translation>&amp;Загрузить диаграмму...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5418" />
+      <location filename="../Project/Project.py" line="5404" />
       <source>Load a diagram from file.</source>
       <translation>Загрузить диаграмму из файла.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5420" />
+      <location filename="../Project/Project.py" line="5406" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Загрузить диаграмму...&lt;/b&gt;&lt;p&gt;Загрузить диаграмму из файла.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
-      <location filename="../Project/Project.py" line="6954" />
-      <location filename="../Project/Project.py" line="5435" />
+      <location filename="../Project/Project.py" line="6995" />
+      <location filename="../Project/Project.py" line="6940" />
+      <location filename="../Project/Project.py" line="5421" />
       <source>Create Package List</source>
       <translation>Создать список пакета</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5437" />
+      <location filename="../Project/Project.py" line="5423" />
       <source>Create &amp;Package List</source>
       <translation>&amp;Создать список пакета</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5444" />
+      <location filename="../Project/Project.py" line="5430" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation>Создать первичный файл PKGLIST для плагина eric.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="5433" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Создать список пакета&lt;/b&gt;&lt;p&gt;Создаёт начальный список файлов для включения в архив плагина eric. Список создаётся из файла проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7080" />
-      <location filename="../Project/Project.py" line="5458" />
+      <location filename="../Project/Project.py" line="7066" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create Plugin Archives</source>
       <translation>Создать архивы плагина</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5460" />
+      <location filename="../Project/Project.py" line="5446" />
       <source>Create Plugin &amp;Archives</source>
       <translation>Создать архивы &amp;плагина</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5452" />
+      <source>Create eric plugin archive files.</source>
+      <translation>Создание архивных файлов плагина eric.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5454" />
+      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Создать архивы плагина&lt;/b&gt;&lt;p&gt;Создание архивных файлов плагина eric, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5466" />
-      <source>Create eric plugin archive files.</source>
-      <translation>Создание архивных файлов плагина eric.</translation>
+      <source>Create Plugin Archives (Snapshot)</source>
+      <translation>Создать архивы плагина (Snapshot)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5468" />
-      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Создать архивы плагина&lt;/b&gt;&lt;p&gt;Создание архивных файлов плагина eric, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5480" />
-      <source>Create Plugin Archives (Snapshot)</source>
-      <translation>Создать архивы плагина (Snapshot)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation>Создать архивы плагина (&amp;Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5489" />
+      <location filename="../Project/Project.py" line="5475" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation>Создание архивных файлов плагина eric (snapshot releases).</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5492" />
+      <location filename="../Project/Project.py" line="5478" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Создать архивы плагина (Snapshot)&lt;/b&gt;&lt;p&gt;Создание архивных файлов плагина eric, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария. Версия главного скрипта изменяется в соответствии релизом snapshot.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7536" />
-      <location filename="../Project/Project.py" line="7507" />
-      <location filename="../Project/Project.py" line="7461" />
-      <location filename="../Project/Project.py" line="7413" />
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="5497" />
       <source>Execute Make</source>
       <translation>Выполнить Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5512" />
+      <location filename="../Project/Project.py" line="5498" />
       <source>&amp;Execute Make</source>
       <translation>&amp;Выполнить Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5518" />
+      <location filename="../Project/Project.py" line="5504" />
       <source>Perform a 'make' run.</source>
       <translation>Выполнить прогон 'make'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5520" />
+      <location filename="../Project/Project.py" line="5506" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Выполнить Make&lt;/b&gt;&lt;p&gt;Выполнение прогона 'make' для пересборки настроеной цели.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7513" />
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="7499" />
+      <location filename="../Project/Project.py" line="5516" />
       <source>Test for Changes</source>
       <translation>Проверить изменения</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5531" />
+      <location filename="../Project/Project.py" line="5517" />
       <source>&amp;Test for Changes</source>
       <translation>&amp;Проверить изменения</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5524" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation>Запрос 'make', если необходима пересборка.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5541" />
+      <location filename="../Project/Project.py" line="5527" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Проверка изменений&lt;/b&gt;&lt;p&gt;Запрос 'make', если требуется пересборка настроенной цели.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5559" />
+      <location filename="../Project/Project.py" line="5545" />
       <source>Create SBOM File</source>
       <translation>Создать файл SBOM</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5560" />
+      <location filename="../Project/Project.py" line="5546" />
       <source>Create &amp;SBOM File</source>
       <translation>Создать файл &amp;SBOM</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5553" />
+      <source>Create a SBOM file of the project dependencies.</source>
+      <translation>Создайте SBOM файл зависимостей проекта.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5556" />
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Создать файл SBOM&lt;/b&gt;&lt;p&gt;Создание SBOM файла зависимостей проекта. Он может быть основан на различных источниках ввода и будет сохранен как файл CycloneDX SBOM.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5567" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation>Создайте SBOM файл зависимостей проекта.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5570" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Создать файл SBOM&lt;/b&gt;&lt;p&gt;Создание SBOM файла зависимостей проекта. Он может быть основан на различных источниках ввода и будет сохранен как файл CycloneDX SBOM.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5581" />
       <source>Clear Byte Code Caches</source>
       <translation>Очистить кэши байт-кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5582" />
+      <location filename="../Project/Project.py" line="5568" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation>Очистить &amp;кэши байт-кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5589" />
+      <location filename="../Project/Project.py" line="5575" />
       <source>Clear the byte code caches of the project.</source>
       <translation>Очистить кэши байт-кода проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5592" />
+      <location filename="../Project/Project.py" line="5578" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Очистить кэш байт-кода&lt;/b&gt;&lt;p&gt;При этом будут удалены все каталоги, содержащие файлы кэша байт-кода.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5608" />
+      <location filename="../Project/Project.py" line="5594" />
       <source>About Black</source>
       <translation>О Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5609" />
+      <location filename="../Project/Project.py" line="5595" />
       <source>&amp;Black</source>
       <translation>&amp;Black</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5601" />
+      <source>Show some information about 'Black'.</source>
+      <translation>Отображение некоторой информации о форматере 'Black'.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5603" />
+      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;Отображение некоторой информации об установленном форматере 'Black'.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5615" />
-      <source>Show some information about 'Black'.</source>
-      <translation>Отображение некоторой информации о форматере 'Black'.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5617" />
-      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;Отображение некоторой информации об установленном форматере 'Black'.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5629" />
       <source>Format Code</source>
       <translation>Форматировать код</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5630" />
+      <location filename="../Project/Project.py" line="5616" />
       <source>&amp;Format Code</source>
       <translation>&amp;Форматировать код</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5637" />
+      <location filename="../Project/Project.py" line="5623" />
       <source>Format the project sources with 'Black'.</source>
       <translation>Форматирование исходников проекта с помощью 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5640" />
+      <location filename="../Project/Project.py" line="5626" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Форматировать код&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для форматирования и переформатирование исходников проекта с помощью 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5652" />
+      <location filename="../Project/Project.py" line="5638" />
       <source>Check Code Formatting</source>
       <translation>Проверить форматирование кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5653" />
+      <location filename="../Project/Project.py" line="5639" />
       <source>&amp;Check Code Formatting</source>
       <translation>&amp;Проверить форматирование кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5660" />
+      <location filename="../Project/Project.py" line="5646" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation>Проверка возможности переформатирования исходников проекта с помощью 'Black'.</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5651" />
+      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Проверить форматирование кода&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для запуска проверки формата и выполнение проверки, если исходный проект необходимо переформатировать посредством 'Black'.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5664" />
+      <source>Code Formatting Diff</source>
+      <translation>Различия форматирования кода</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5665" />
-      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Проверить форматирование кода&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для запуска проверки формата и выполнение проверки, если исходный проект необходимо переформатировать посредством 'Black'.&lt;/p&gt;</translation>
+      <source>Code Formatting &amp;Diff</source>
+      <translation>&amp;Различия форматирования кода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5672" />
+      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
+      <translation>Генерация унифицированного diff потенциального переформатирования исходников проекта с помощью 'Black'.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5678" />
-      <source>Code Formatting Diff</source>
-      <translation>Различия форматирования кода</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5679" />
-      <source>Code Formatting &amp;Diff</source>
-      <translation>&amp;Различия форматирования кода</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5686" />
-      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
-      <translation>Генерация унифицированного diff потенциального переформатирования исходников проекта с помощью 'Black'.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Различия форматирования кода&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для запуска сравнения форматов и генерации единого diff потенциального переформатирования исходного проекта с помощью 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <location filename="../Project/Project.py" line="5807" />
-      <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5706" />
-      <location filename="../Project/Project.py" line="5705" />
+      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5792" />
+      <location filename="../Project/Project.py" line="5692" />
+      <location filename="../Project/Project.py" line="5691" />
       <source>Configure</source>
       <translation>Конфигурация</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5713" />
+      <location filename="../Project/Project.py" line="5699" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation>Задание параметров форматирования исходников проекта с помощью  'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5718" />
+      <location filename="../Project/Project.py" line="5704" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Конфигурация&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для форматирования исходников проекта с помощью 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5734" />
+      <location filename="../Project/Project.py" line="5720" />
       <source>About isort</source>
       <translation>О isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5735" />
+      <location filename="../Project/Project.py" line="5721" />
       <source>&amp;isort</source>
       <translation>&amp;isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5741" />
+      <location filename="../Project/Project.py" line="5727" />
       <source>Show some information about 'isort'.</source>
       <translation>Отображение некоторой информации о утилите 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5743" />
+      <location filename="../Project/Project.py" line="5729" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;Отображение некоторой информацим об установленном инструменте isort.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5756" />
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Sort Imports</source>
       <translation>Сортировать импорт</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5763" />
+      <location filename="../Project/Project.py" line="5749" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation>Сортировка операторов импорта исходников проекта с помощью 'isort'.</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5752" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Сортировка импорта&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для запуска сортировки импорта и сортировки операторов импорта исходного проекта с помощью 'isort'.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5766" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Сортировка импорта&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для запуска сортировки импорта и сортировки операторов импорта исходного проекта с помощью 'isort'.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5780" />
-      <location filename="../Project/Project.py" line="5779" />
+      <location filename="../Project/Project.py" line="5765" />
       <source>Imports Sorting Diff</source>
       <translation>Различия сортировки импорта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5787" />
+      <location filename="../Project/Project.py" line="5773" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation>Создание унифицированного diff потенциального импорта исходников проекта c помощью 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Различия сортировки импорта&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для запуска сравнения сортировки импорта и создания унифицированного diff потенциальных изменений исходников проекта с помощью 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5814" />
+      <location filename="../Project/Project.py" line="5800" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation>Задание параметров сортировки операторов импорта исходников проекта с помощью 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5820" />
+      <location filename="../Project/Project.py" line="5806" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Конфигурация&lt;/b&gt;&lt;p&gt;Отображение диалогового окна ввода параметров для сортировки операторов импорта исходников проекта с помощью 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5836" />
+      <location filename="../Project/Project.py" line="5822" />
       <source>Install Project</source>
       <translation>Установить проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5823" />
       <source>&amp;Install Project</source>
       <translation>&amp;Установить проект</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5830" />
+      <source>Install the project into the embedded environment.</source>
+      <translation>Установка проекта во встроенную среду.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5833" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Установить проект&lt;/b&gt;&lt;p&gt;Установка проекта во встроенное виртуальное окружение в режиме редактирования (т.е. в режиме разработки).&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5844" />
-      <source>Install the project into the embedded environment.</source>
-      <translation>Установка проекта во встроенную среду.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Установить проект&lt;/b&gt;&lt;p&gt;Установка проекта во встроенное виртуальное окружение в режиме редактирования (т.е. в режиме разработки).&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation>&amp;Настройки</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5851" />
+      <source>Configure the embedded environment.</source>
+      <translation>Настройка встроенного виртуального окружения.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5854" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Настройки&lt;/b&gt;&lt;p&gt;Открытие диалогового окна для настройки встроенного виртуального окружения проекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5864" />
+      <source>Upgrade</source>
+      <translation>Модернизировать</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5865" />
-      <source>Configure the embedded environment.</source>
-      <translation>Настройка встроенного виртуального окружения.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5868" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Настройки&lt;/b&gt;&lt;p&gt;Открытие диалогового окна для настройки встроенного виртуального окружения проекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5878" />
-      <source>Upgrade</source>
-      <translation>Модернизировать</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation>&amp;Модернизировать</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5871" />
+      <source>Upgrade the embedded environment.</source>
+      <translation>Модернизация встроенного виртуального окружения.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5873" />
+      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Модернизировать&lt;/b&gt;&lt;p&gt;Открытие диалогового окна для ввода параметров обновления встроенной виртуальной среды проекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5885" />
-      <source>Upgrade the embedded environment.</source>
-      <translation>Модернизация встроенного виртуального окружения.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5887" />
-      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Модернизировать&lt;/b&gt;&lt;p&gt;Открытие диалогового окна для ввода параметров обновления встроенной виртуальной среды проекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation>Пересоздать</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5900" />
+      <location filename="../Project/Project.py" line="5886" />
       <source>&amp;Recreate</source>
       <translation>&amp;Пересоздать</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5906" />
+      <location filename="../Project/Project.py" line="5892" />
       <source>Recreate the embedded environment.</source>
       <translation>Пересоздание встроенного виртуального окружения.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5908" />
+      <location filename="../Project/Project.py" line="5894" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Пересоздать&lt;/b&gt;&lt;p&gt;При этом открывается диалоговое окно для ввода параметров для воссоздания встроенной виртуальной среды проекта. Сначала очищается существующая среда.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5926" />
+      <source>&amp;Project</source>
+      <translation>&amp;Проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5927" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Открыть &amp;недавние проекты</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5929" />
+      <source>Session</source>
+      <translation>Сеанс</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5930" />
+      <source>Debugger</source>
+      <translation>Отладка</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5931" />
+      <source>Embedded Environment</source>
+      <translation>Встроенная среда окружения</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5933" />
+      <source>Project-T&amp;ools</source>
+      <translation>&amp;Инструменты-проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5934" />
+      <source>&amp;Version Control</source>
+      <translation>Контроль &amp;версий</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5938" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Проверить</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5940" />
-      <source>&amp;Project</source>
-      <translation>&amp;Проект</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5941" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Открыть &amp;недавние проекты</translation>
+      <source>Code &amp;Formatting</source>
+      <translation>&amp;Форматировать код</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5942" />
+      <source>Sho&amp;w</source>
+      <translation>По&amp;казать</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Session</source>
-      <translation>Сеанс</translation>
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Диаграммы</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
-      <source>Debugger</source>
-      <translation>Отладка</translation>
+      <source>Pac&amp;kagers</source>
+      <translation>У&amp;паковщики</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Embedded Environment</source>
-      <translation>Встроенная среда окружения</translation>
+      <source>Source &amp;Documentation</source>
+      <translation>&amp;Документация исходников</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Project-T&amp;ools</source>
-      <translation>&amp;Инструменты-проекта</translation>
+      <source>Make</source>
+      <translation>Make</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
-      <source>&amp;Version Control</source>
-      <translation>Контроль &amp;версий</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5952" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Проверить</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5954" />
-      <source>Code &amp;Formatting</source>
-      <translation>&amp;Форматировать код</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5956" />
-      <source>Sho&amp;w</source>
-      <translation>По&amp;казать</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5957" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Диаграммы</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5958" />
-      <source>Pac&amp;kagers</source>
-      <translation>У&amp;паковщики</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5959" />
-      <source>Source &amp;Documentation</source>
-      <translation>&amp;Документация исходников</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5961" />
-      <source>Make</source>
-      <translation>Make</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation>Другие инструменты</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6124" />
-      <location filename="../Project/Project.py" line="6122" />
+      <location filename="../Project/Project.py" line="6110" />
+      <location filename="../Project/Project.py" line="6108" />
       <source>Project</source>
       <translation>Проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6206" />
+      <location filename="../Project/Project.py" line="6192" />
       <source>&amp;Clear</source>
       <translation>&amp;Очистить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6403" />
+      <location filename="../Project/Project.py" line="6389" />
       <source>Search New Files</source>
       <translation>Поиск новых файлов</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6404" />
+      <location filename="../Project/Project.py" line="6390" />
       <source>There were no new files found to be added.</source>
       <translation>Не найдено новых файлов для добавления.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6565" />
-      <location filename="../Project/Project.py" line="6552" />
+      <location filename="../Project/Project.py" line="6551" />
+      <location filename="../Project/Project.py" line="6538" />
       <source>Version Control System</source>
       <translation>Система контроля версий</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6553" />
+      <location filename="../Project/Project.py" line="6539" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Выбранная VCS &lt;b&gt;{0}&lt;/b&gt; не найдена.&lt;br/&gt;Возврат отвергнут.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6566" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Выбранная VCS &lt;b&gt;{0}&lt;/b&gt; не найдена.&lt;br/&gt;Контроль версий отключен.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="6709" />
+      <source>Coverage Data</source>
+      <translation>Данные покрытия</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6763" />
+      <location filename="../Project/Project.py" line="6710" />
+      <source>There is no main script defined for the current project. Aborting</source>
+      <translation>Для текущего проекта не определён главный сценарий. Отмена</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6722" />
+      <source>Code Coverage</source>
+      <translation>Покрытие кода</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="6723" />
-      <source>Coverage Data</source>
-      <translation>Данные покрытия</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6777" />
-      <location filename="../Project/Project.py" line="6724" />
-      <source>There is no main script defined for the current project. Aborting</source>
-      <translation>Для текущего проекта не определён главный сценарий. Отмена</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6736" />
-      <source>Code Coverage</source>
-      <translation>Покрытие кода</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Пожалуйста, выберите файл покрытия</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6790" />
+      <location filename="../Project/Project.py" line="6776" />
       <source>Please select a profile file</source>
       <translation>Пожалуйста, выберите файл профиля</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6842" />
+      <location filename="../Project/Project.py" line="6828" />
       <source>Include module names?</source>
       <translation>Включать имена модулей?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6955" />
+      <location filename="../Project/Project.py" line="6941" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;PKGLIST&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7010" />
+      <location filename="../Project/Project.py" line="6996" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно создать файл &lt;b&gt;PKGLIST&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7321" />
-      <location filename="../Project/Project.py" line="7277" />
-      <location filename="../Project/Project.py" line="7227" />
-      <location filename="../Project/Project.py" line="7216" />
-      <location filename="../Project/Project.py" line="7198" />
-      <location filename="../Project/Project.py" line="7151" />
-      <location filename="../Project/Project.py" line="7121" />
-      <location filename="../Project/Project.py" line="7093" />
-      <location filename="../Project/Project.py" line="7063" />
-      <location filename="../Project/Project.py" line="7048" />
-      <location filename="../Project/Project.py" line="7031" />
+      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7137" />
+      <location filename="../Project/Project.py" line="7107" />
+      <location filename="../Project/Project.py" line="7079" />
+      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7034" />
+      <location filename="../Project/Project.py" line="7017" />
       <source>Create Plugin Archive</source>
       <translation>Создать архив плагина</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7032" />
+      <location filename="../Project/Project.py" line="7018" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>Для текущего проекта не определён главный сценарий. Отмена...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7035" />
       <source>Select package lists:</source>
       <translation>Выбор списков пакета:</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7064" />
+      <location filename="../Project/Project.py" line="7050" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файлы со списком пакета (PKGLIST*) не доступны или не выбраны. Отмена...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7072" />
+      <location filename="../Project/Project.py" line="7058" />
       <source>Creating plugin archives...</source>
       <translation>Создание архивов плагина...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7073" />
+      <location filename="../Project/Project.py" line="7059" />
       <source>Abort</source>
       <translation>Прервать</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7076" />
+      <location filename="../Project/Project.py" line="7062" />
       <source>%v/%m Archives</source>
       <translation>%v из %m архивов</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7094" />
+      <location filename="../Project/Project.py" line="7080" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7122" />
+      <location filename="../Project/Project.py" line="7108" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; пока не готов.&lt;/p&gt;&lt;p&gt;Пожалуйста переработайте его и удалите строки '; initial_list' из его заголовка.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7152" />
+      <location filename="../Project/Project.py" line="7138" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно создать архив плагина &lt;b&gt;{0}&lt;/b&gt; eric.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7199" />
+      <location filename="../Project/Project.py" line="7185" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно сохранить файл &lt;b&gt;{0}&lt;/b&gt; в архиве. Игнорируем его.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7217" />
+      <location filename="../Project/Project.py" line="7203" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файлы архива плагина eric были созданы с ошибками.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7228" />
+      <location filename="../Project/Project.py" line="7214" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файлы архива плагина eric созданы успешно.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7278" />
+      <location filename="../Project/Project.py" line="7264" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл плагина &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7322" />
+      <location filename="../Project/Project.py" line="7308" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл плагина &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7414" />
+      <location filename="../Project/Project.py" line="7400" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation>'Make' не поддерживает для удаленных проектов. Отмена...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7462" />
+      <location filename="../Project/Project.py" line="7448" />
       <source>The make process did not start.</source>
       <translation>Make-процесс не был запущен.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7508" />
+      <location filename="../Project/Project.py" line="7494" />
       <source>The make process crashed.</source>
       <translation>Make-процесс разрушен.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7516" />
+      <location filename="../Project/Project.py" line="7502" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Существуют изменения, которые требуют конфигурации make-цели &lt;b&gt;{0}&lt;/b&gt; для ее пересборки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
+      <location filename="../Project/Project.py" line="7507" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Существуют изменения, которые требуют make-цель по умолчанию для ее пересборки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7537" />
+      <location filename="../Project/Project.py" line="7523" />
       <source>The makefile contains errors.</source>
       <translation>Makefile содержит ошибки.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7975" />
+      <location filename="../Project/Project.py" line="7961" />
       <source>Interpreter Missing</source>
       <translation>Отсутствует интерпретатор</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7976" />
+      <location filename="../Project/Project.py" line="7962" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation>Сконфигурированный интерпретатор встроенной среды окружения больше не существует. Следует ли обновить среду?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8057" />
+      <location filename="../Project/Project.py" line="8043" />
       <source>Open Remote Project</source>
       <translation>Открыть удаленный проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8088" />
-      <location filename="../Project/Project.py" line="8073" />
+      <location filename="../Project/Project.py" line="8074" />
+      <location filename="../Project/Project.py" line="8059" />
       <source>Save Remote Project</source>
       <translation>Сохранить удаленный проект</translation>
     </message>
+    <message>
+      <source>PySide2 GUI</source>
+      <translation type="vanished">PySide2 GUI</translation>
+    </message>
+    <message>
+      <source>PySide2 Console</source>
+      <translation type="vanished">Консоль PySide2</translation>
+    </message>
   </context>
   <context>
     <name>ProjectBaseBrowser</name>
@@ -65274,9 +65262,9 @@
   <context>
     <name>ProjectFormsBrowser</name>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1141" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1092" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1055" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1131" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
       <location filename="../Project/ProjectFormsBrowser.py" line="142" />
       <location filename="../Project/ProjectFormsBrowser.py" line="77" />
       <source>Forms</source>
@@ -65549,102 +65537,102 @@
       <translation>Компилировать формы</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="701" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="732" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="719" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="700" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="683" />
       <source>New Form</source>
       <translation>Новая форма</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="685" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
       <source>Select a form type:</source>
       <translation>Выберите тип формы:</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="703" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="702" />
       <source>Qt User-Interface Files (*.ui);;All Files (*)</source>
       <translation>Файлы Qt интерфейса пользователя (*.ui);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="721" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Файл уже существует! Перезаписать?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="734" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
       <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл с формой &lt;b&gt;{0}&lt;/b&gt; не может быть создан. Проблема: {1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectFormsBrowser.py" line="759" />
+      <source>Delete forms</source>
+      <translation>Удалить формы</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFormsBrowser.py" line="760" />
-      <source>Delete forms</source>
-      <translation>Удалить формы</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="761" />
       <source>Do you really want to delete these forms from the project?</source>
       <translation>Вы действительно хотите удалить выбранные формы из проекта?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="893" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="882" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="875" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="888" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="877" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="870" />
       <source>Form Compilation</source>
       <translation>Компиляция форм</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="876" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="871" />
       <source>The compilation of the form file was successful.</source>
       <translation>Компиляция формы прошла успешно.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="883" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="878" />
       <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Компиляция формы не удалась.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="894" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="889" />
       <source>The compilation of the form file failed.</source>
       <translation>Компиляция формы не удалась.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="986" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="977" />
       <source>Process Generation Error</source>
       <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="987" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="978" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Невозможно запустить {0}.&lt;br&gt;Убедитесь, что он находится в путях поиска.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1074" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1037" />
       <source>Compiling forms...</source>
       <translation>Компилирую формы...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1134" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1084" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1047" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1075" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1038" />
       <source>Abort</source>
       <translation>Прервать</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1137" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1087" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1050" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1127" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1078" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1041" />
       <source>%v/%m Forms</source>
       <translation>%v/%m форм</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1133" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1123" />
       <source>Determining changed forms...</source>
       <translation>Определение измененных форм...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1163" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1153" />
       <source>Compiling changed forms...</source>
       <translation>Компилирую изменённые формы...</translation>
     </message>
@@ -66096,9 +66084,9 @@
   <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="956" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="880" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="844" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="940" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="864" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="828" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="87" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="68" />
       <source>Resources</source>
@@ -66125,219 +66113,219 @@
       <translation>Браузер ресурсов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="165" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="163" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="150" />
       <source>Compile resource</source>
       <translation>Компилировать ресурс</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="396" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="385" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="344" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="333" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="247" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="235" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="172" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="154" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="384" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="373" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="334" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="323" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="241" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="229" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="170" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
       <source>Compile all resources</source>
       <translation>Компилировать все ресурсы</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="389" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="337" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="296" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="239" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="158" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="377" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="327" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="288" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="233" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="156" />
       <source>Configure rcc Compiler</source>
       <translation>Настройка rcc компилятора</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="308" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="300" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="179" />
       <source>Open</source>
       <translation>Открыть</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
       <source>Rename file</source>
       <translation>Переименовать файл</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="349" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="310" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="339" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="302" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
       <source>Remove from project</source>
       <translation>Удалить из проекта</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="351" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="187" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="341" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="304" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
       <source>Delete</source>
       <translation>Удалить</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="345" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="249" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="236" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="200" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="195" />
+      <source>New resource...</source>
+      <translation>Новый ресурс...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="390" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="346" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="254" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
+      <source>Add resources...</source>
+      <translation>Добавить ресурсы...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="393" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="348" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="257" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="206" />
+      <source>Add resources directory...</source>
+      <translation>Добавить директорию с ресурсами...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="353" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="211" />
+      <source>Show in File Manager</source>
+      <translation>Показать в менеджере файлов</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectResourcesBrowser.py" line="355" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="255" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="242" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="199" />
-      <source>New resource...</source>
-      <translation>Новый ресурс...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="402" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="356" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="260" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="208" />
-      <source>Add resources...</source>
-      <translation>Добавить ресурсы...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="405" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="358" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="210" />
-      <source>Add resources directory...</source>
-      <translation>Добавить директорию с ресурсами...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="363" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="269" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
-      <source>Show in File Manager</source>
-      <translation>Показать в менеджере файлов</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="365" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="217" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="213" />
       <source>Copy Path to Clipboard</source>
       <translation>Копировать путь в буфер обмена</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="410" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="367" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="315" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="272" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="219" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="398" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="357" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="307" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="266" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
       <source>Expand all directories</source>
       <translation>Открыть все директории</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="413" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="369" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="317" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="274" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="220" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="401" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="359" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="309" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="268" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="216" />
       <source>Collapse all directories</source>
       <translation>Свернуть все директории</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="416" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="372" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="320" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="277" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="222" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="404" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="362" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="271" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="218" />
       <source>Configure...</source>
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="303" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="292" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="295" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="284" />
       <source>Compile resources</source>
       <translation>Компилировать ресурсы</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="595" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="574" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="555" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="583" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="562" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="543" />
       <source>New Resource</source>
       <translation>Новый ресурс</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="557" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="545" />
       <source>Qt Resource Files (*.qrc)</source>
       <translation>Файлы ресурсов Qt (*.qrc)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="575" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="563" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Файл уже существует! Перезаписать?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="596" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="584" />
       <source>&lt;p&gt;The new resource file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл ресурсов &lt;b&gt;{0}&lt;/b&gt; не может быть создан.&lt;br&gt;Проблема: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="622" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="610" />
       <source>Delete resources</source>
       <translation>Удалить ресурс</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="623" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="611" />
       <source>Do you really want to delete these resources from the project?</source>
       <translation>Вы действительно хотите удалить эти ресурсы из проекта?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="717" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="708" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="701" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="705" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="696" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="689" />
       <source>Resource Compilation</source>
       <translation>Компилиляция ресурса</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="702" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="690" />
       <source>The compilation of the resource file was successful.</source>
       <translation>Компиляция ресурса прошла успешно.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="709" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="697" />
       <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Компиляция ресурса не удалась.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="718" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="706" />
       <source>The compilation of the resource file failed.</source>
       <translation>Компиляция ресурса не удалась.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="805" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="789" />
       <source>Process Generation Error</source>
       <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="806" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="790" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Невозможно запустить {0}.&lt;br&gt;Убедитесь, что он находится в путях поиска.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="871" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="835" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="855" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="819" />
       <source>Compiling resources...</source>
       <translation>Компиляция ресурсов...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="949" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="872" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="836" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="933" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="856" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="820" />
       <source>Abort</source>
       <translation>Прервать</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="952" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="875" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="839" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="936" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="859" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="823" />
       <source>%v/%m Resources</source>
       <translation>%v/%m ресурсов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="948" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="932" />
       <source>Determining changed resources...</source>
       <translation>Определение изменённых ресурсов...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="986" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="970" />
       <source>Compiling changed resources...</source>
       <translation>Компилирую изменённые ресурсы...</translation>
     </message>
@@ -66873,250 +66861,250 @@
       <translation>Браузер переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="514" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="456" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="296" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="238" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="213" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="182" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="508" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="236" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="180" />
       <source>Open in Editor</source>
       <translation>Открыть в редакторе</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="255" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="253" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation</source>
       <translation>Создать перевод</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="193" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="263" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="191" />
       <source>Generate translation (with obsolete)</source>
       <translation>Создать перевод (включая устаревшие)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="580" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="551" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="274" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="199" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="572" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="543" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="378" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="272" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="197" />
       <source>Generate all translations</source>
       <translation>Создать все переводы</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="581" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="281" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
+      <source>Generate all translations (with obsolete)</source>
+      <translation>Создать все переводы (включая устаревшие)</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="446" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="207" />
+      <source>Open in Qt-Linguist</source>
+      <translation>Открыть в Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="301" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <source>Release translation</source>
+      <translation>Релиз перевода</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="589" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="391" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="283" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
-      <source>Generate all translations (with obsolete)</source>
-      <translation>Создать все переводы (включая устаревшие)</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="452" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
-      <source>Open in Qt-Linguist</source>
-      <translation>Открыть в Qt-Linguist</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
-      <source>Release translation</source>
-      <translation>Релиз перевода</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="597" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="560" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="399" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="363" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="552" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="395" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="359" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Release all translations</source>
       <translation>Создать релизы всех переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="226" />
       <source>Preview translation</source>
       <translation>Предпросмотр перевода</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="368" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="232" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="557" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="364" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
       <source>Preview all translations</source>
       <translation>Предпросмотр всех переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="481" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="374" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="246" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="475" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="370" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="244" />
       <source>Extract messages</source>
       <translation>Извлечь сообщения</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="291" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="289" />
       <source>Open</source>
       <translation>Открыть</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="319" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Remove from project</source>
       <translation>Удалить из проекта</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="595" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="526" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="320" />
+      <source>Delete</source>
+      <translation>Удалить</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="600" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="402" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="324" />
+      <source>New translation...</source>
+      <translation>Новый перевод...</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="603" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="532" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="322" />
-      <source>Delete</source>
-      <translation>Удалить</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="608" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="406" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="326" />
-      <source>New translation...</source>
-      <translation>Новый перевод...</translation>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="327" />
+      <source>Add translation files...</source>
+      <translation>Добавить файлы переводов...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="607" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
+      <source>Show in File Manager</source>
+      <translation>Показать в менеджере файлов</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="609" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Копировать путь в буфер обмена</translation>
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="611" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="329" />
-      <source>Add translation files...</source>
-      <translation>Добавить файлы переводов...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="615" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="413" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
-      <source>Show in File Manager</source>
-      <translation>Показать в менеджере файлов</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="617" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Копировать путь в буфер обмена</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="619" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="535" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="416" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="338" />
       <source>Configure...</source>
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="490" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="440" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="484" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
       <source>Generate translations</source>
       <translation>Создать переводы</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="500" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="445" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
       <source>Generate translations (with obsolete)</source>
       <translation>Создать переводы (включая устаревшие)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="515" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="455" />
       <source>Release translations</source>
       <translation>Релизы переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
       <source>Preview translations</source>
       <translation>Предпросмотр переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="882" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="866" />
       <source>Delete translation files</source>
       <translation>Удалить файлы переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="883" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="867" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation>Вы действительно хотите удалить эти файлы переводов из проекта?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1582" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1051" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1011" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1560" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1035" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="995" />
       <source>Write temporary project file</source>
       <translation>Запись временного файла проекта</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1583" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1307" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1012" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1561" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1287" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="996" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Не выбраны файлы перевода (* .ts).</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1052" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1036" />
       <source>&lt;p&gt;The temporary project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно записать временный файл проекта: &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1306" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1189" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1177" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1286" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1173" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1161" />
       <source>Translation file generation</source>
       <translation>Создание файлов перевода</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1178" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1162" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation>Создание файлов перевода (*.ts) прошло успешно.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1184" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1168" />
       <source> The process has crashed.</source>
       <translation> Crash-завершение процесса.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1190" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1174" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation>Попытка создания файлов перевода (*.ts) завершилась неудачно. {0}</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1612" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1360" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1590" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1388" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1340" />
       <source>Process Generation Error</source>
       <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1361" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1389" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1341" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>Невозможно запустить {0}.&lt;br&gt;Убедитесь, что он находится в путях поиска.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1497" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1479" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1477" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1459" />
       <source>Translation file release</source>
       <translation>Релиз файлов перевода</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1480" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1460" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation>Релиз файлов перевода (*.qm) успешно создан.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1498" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1478" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation>Создание релиза файлов перевода (*.qm) не удалось.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1613" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1591" />
       <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить утилиту lrelease.&lt;br&gt;Убедитесь, что она доступна в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -69711,38 +69699,38 @@
       <translation>Диапазон кода</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="214" />
+      <location filename="../UI/PythonAstViewer.py" line="216" />
       <source>No editor has been opened.</source>
       <translation>Не был открыт редактор.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="224" />
+      <location filename="../UI/PythonAstViewer.py" line="226" />
       <source>The current editor does not contain any source code.</source>
       <translation>Текущий редактор не содержит какого-либо исходного кода.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="230" />
+      <location filename="../UI/PythonAstViewer.py" line="232" />
       <source>The current editor does not contain Python source code.</source>
       <translation>Текущий редактор не содержит исходного кода Python.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="248" />
+      <location filename="../UI/PythonAstViewer.py" line="250" />
       <source>Module</source>
       <translation>Модуль</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="280" />
+      <location filename="../UI/PythonAstViewer.py" line="282" />
       <source>{0}: {1}</source>
       <translation>{0}: {1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="297" />
-      <location filename="../UI/PythonAstViewer.py" line="287" />
+      <location filename="../UI/PythonAstViewer.py" line="299" />
+      <location filename="../UI/PythonAstViewer.py" line="289" />
       <source>{0},{1}</source>
       <translation>{0},{1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="304" />
+      <location filename="../UI/PythonAstViewer.py" line="306" />
       <source>{0}  -  {1}</source>
       <translation>{0}  -  {1}</translation>
     </message>
@@ -71915,7 +71903,7 @@
   <context>
     <name>QtPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="154" />
+      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="139" />
       <source>Sample: {0}designer{1}</source>
       <translation>Например: {0}designer{1}</translation>
     </message>
@@ -71959,7 +71947,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Tools Directory:</source>
       <translation>Директория инструментов:</translation>
     </message>
@@ -72046,7 +72033,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Virtual Environment:</source>
       <translation>Виртуальное окружение:</translation>
     </message>
@@ -72054,7 +72040,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Select the virtual environment to be used</source>
       <translation>Выберите для использования виртуальное окружение</translation>
     </message>
@@ -72062,7 +72047,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to open the virtual environment manager dialog</source>
       <translation>Открыть диалог менеджера виртуального окружения</translation>
     </message>
@@ -72070,7 +72054,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to refresh the list of vitual environments</source>
       <translation>Освежить список виртуальных окружений</translation>
     </message>
@@ -72099,7 +72082,6 @@
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Generate imports relative to '.'</source>
       <translation>Генерировать импорт относительно '.'</translation>
     </message>
@@ -72132,26 +72114,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide</source>
-      <translation>PySide</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide2</source>
-      <translation>PySide2</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
-      <translation>Задайте путь к директории инструментов PySide2, если они не найдены.</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>pyside2-uic Options</source>
-      <translation>Опции pyside2-uic</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>PySide6</source>
       <translation>PySide6</translation>
     </message>
@@ -72165,6 +72127,22 @@
       <source>pyside6-uic Options</source>
       <translation>Опции pyside6-uic</translation>
     </message>
+    <message>
+      <source>PySide</source>
+      <translation type="vanished">PySide</translation>
+    </message>
+    <message>
+      <source>PySide2</source>
+      <translation type="vanished">PySide2</translation>
+    </message>
+    <message>
+      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
+      <translation type="vanished">Задайте путь к директории инструментов PySide2, если они не найдены.</translation>
+    </message>
+    <message>
+      <source>pyside2-uic Options</source>
+      <translation type="vanished">Опции pyside2-uic</translation>
+    </message>
   </context>
   <context>
     <name>Queues</name>
@@ -88107,64 +88085,64 @@
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="575" />
+      <location filename="../Templates/TemplateViewer.py" line="577" />
       <source>Remove Template</source>
       <translation>Удалить шаблон</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="576" />
+      <location filename="../Templates/TemplateViewer.py" line="578" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Вы действительно хотите удалить шаблон &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="604" />
+      <location filename="../Templates/TemplateViewer.py" line="606" />
       <source>Import Templates</source>
       <translation>Импорт шаблонов</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="621" />
-      <location filename="../Templates/TemplateViewer.py" line="606" />
+      <location filename="../Templates/TemplateViewer.py" line="623" />
+      <location filename="../Templates/TemplateViewer.py" line="608" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation>Файлы шаблонов (*.ecj);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
-      <location filename="../Templates/TemplateViewer.py" line="619" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
+      <location filename="../Templates/TemplateViewer.py" line="621" />
       <source>Export Templates</source>
       <translation>Экспорт шаблонов</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл шаблонов &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="654" />
+      <location filename="../Templates/TemplateViewer.py" line="656" />
       <source>Reload Templates</source>
       <translation>Перезагрузить шаблоны</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="655" />
+      <location filename="../Templates/TemplateViewer.py" line="657" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation>Шаблоны содержат несохраненные изменения. Отказаться от них?</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="675" />
+      <location filename="../Templates/TemplateViewer.py" line="677" />
       <source>Template Help</source>
       <translation>Справка шаблона</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="676" />
+      <location filename="../Templates/TemplateViewer.py" line="678" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Группы шаблонов&lt;/b&gt; - способ группировки отдельных шаблонов. Группы имеют атрибут, который определяет, к какому языку программирования относятся шаблоны данной группы. Чтобы добавлять записи шаблонов, необходимо определить хотя бы одну группу.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Записи шаблона&lt;/b&gt; - являются фактическими шаблонами. Они объединяются в группу шаблонов. Справка по определению шаблонов доступна в диалоговом окне редактирования шаблона.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="938" />
+      <location filename="../Templates/TemplateViewer.py" line="940" />
       <source>Edit Template Group</source>
       <translation>Редактировать группу шаблонов</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="939" />
+      <location filename="../Templates/TemplateViewer.py" line="941" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Группа шаблонов с именем &lt;b&gt;{0}&lt;/b&gt; уже существует.&lt;/p&gt;</translation>
     </message>
@@ -91654,2236 +91632,2220 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="263" />
+      <location filename="../UI/UserInterface.py" line="265" />
       <source>Initializing Basic Services...</source>
       <translation>Инициализация базовых служб ...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="319" />
+      <location filename="../UI/UserInterface.py" line="321" />
       <source>Initializing Plugin Manager...</source>
       <translation>Инициализация менеджера плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="327" />
+      <location filename="../UI/UserInterface.py" line="329" />
       <source>Generating Main User Interface...</source>
       <translation>Создание главного пользовательского интерфейса...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="386" />
       <location filename="../UI/UserInterface.py" line="384" />
-      <location filename="../UI/UserInterface.py" line="382" />
       <source>Setting up signal/slot-connections...</source>
       <translation>Настройка соединения сигнала/слота...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="593" />
+      <location filename="../UI/UserInterface.py" line="595" />
       <source>Initializing Tools...</source>
       <translation>Инициализация инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="605" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Registering Objects...</source>
       <translation>Регистрация объектов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="640" />
+      <location filename="../UI/UserInterface.py" line="642" />
       <source>Initializing Actions...</source>
       <translation>Инициализация действий...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="643" />
+      <location filename="../UI/UserInterface.py" line="645" />
       <source>Initializing Menus...</source>
       <translation>Инициализация меню...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="648" />
       <source>Initializing Toolbars...</source>
       <translation>Инициализация панелей инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Statusbar...</source>
       <translation>Инициализация строки состояния...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="676" />
       <location filename="../UI/UserInterface.py" line="674" />
-      <location filename="../UI/UserInterface.py" line="672" />
       <source>Initializing Single Application Server...</source>
       <translation>Инициализация сервера уникального приложения...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="683" />
       <source>Initializing Plugins...</source>
       <translation>Инициализация плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Activating Plugins...</source>
       <translation>Активация плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="688" />
+      <location filename="../UI/UserInterface.py" line="690" />
       <source>Generating Plugins Toolbars...</source>
       <translation>Генерация панели инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="692" />
+      <location filename="../UI/UserInterface.py" line="694" />
       <source>Cleaning Plugins Download Area...</source>
       <translation>Очистка области загрузки плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
+      <location filename="../UI/UserInterface.py" line="705" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Восстановление менеджера панелей инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="714" />
       <source>Setting View Profile...</source>
       <translation>Установка профилей...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="726" />
+      <location filename="../UI/UserInterface.py" line="728" />
       <source>Reading Tasks...</source>
       <translation>Чтение задач...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="732" />
+      <location filename="../UI/UserInterface.py" line="734" />
       <source>Reading Templates...</source>
       <translation>Чтение шаблонов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="738" />
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation>Запуск отладчика...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2212" />
-      <location filename="../UI/UserInterface.py" line="1099" />
+      <location filename="../UI/UserInterface.py" line="2214" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Left Toolbox</source>
       <translation>Левая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2258" />
-      <location filename="../UI/UserInterface.py" line="1109" />
+      <location filename="../UI/UserInterface.py" line="2260" />
+      <location filename="../UI/UserInterface.py" line="1111" />
       <source>Horizontal Toolbox</source>
       <translation>Горизонтальная панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2235" />
-      <location filename="../UI/UserInterface.py" line="1120" />
+      <location filename="../UI/UserInterface.py" line="2237" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Right Toolbox</source>
       <translation>Правая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2054" />
-      <location filename="../UI/UserInterface.py" line="1316" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1132" />
       <source>Multiproject-Viewer</source>
       <translation>Просмотр мультипроекта</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2032" />
-      <location filename="../UI/UserInterface.py" line="1322" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>Project-Viewer</source>
-      <translation>Просмотр проекта</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2594" />
-      <location filename="../UI/UserInterface.py" line="2593" />
-      <location filename="../UI/UserInterface.py" line="1329" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Find/Replace In Files</source>
-      <translation>Найти/Заменить в файлах</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
-      <location filename="../UI/UserInterface.py" line="2616" />
-      <location filename="../UI/UserInterface.py" line="1336" />
-      <location filename="../UI/UserInterface.py" line="1150" />
-      <source>Find File</source>
-      <translation>Найти файл</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1156" />
-      <source>VCS Status</source>
-      <translation>Статус VCS</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2187" />
-      <location filename="../UI/UserInterface.py" line="1349" />
-      <location filename="../UI/UserInterface.py" line="1163" />
-      <source>Template-Viewer</source>
-      <translation>Просмотр шаблонов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2120" />
-      <location filename="../UI/UserInterface.py" line="1356" />
-      <location filename="../UI/UserInterface.py" line="1170" />
-      <source>File-Browser</source>
-      <translation>Браузер файлов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1177" />
-      <source>Symbols</source>
-      <translation>Символы</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2076" />
-      <location filename="../UI/UserInterface.py" line="1385" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1187" />
-      <source>Debug-Viewer</source>
-      <translation>Просмотр отладки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <location filename="../UI/UserInterface.py" line="2447" />
-      <location filename="../UI/UserInterface.py" line="1392" />
-      <location filename="../UI/UserInterface.py" line="1194" />
-      <source>Code Documentation Viewer</source>
-      <translation>Просмотр документации кода</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2663" />
-      <location filename="../UI/UserInterface.py" line="2662" />
-      <location filename="../UI/UserInterface.py" line="1399" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>Help Viewer</source>
-      <translation>Просмотрщик справки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3611" />
-      <location filename="../UI/UserInterface.py" line="2543" />
-      <location filename="../UI/UserInterface.py" line="2542" />
-      <location filename="../UI/UserInterface.py" line="1405" />
-      <location filename="../UI/UserInterface.py" line="1207" />
-      <source>Plugin Repository</source>
-      <translation>Репозиторий плагинов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
-      <location filename="../UI/UserInterface.py" line="2566" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1213" />
-      <source>Virtual Environments</source>
-      <translation>Виртуальные окружения</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2475" />
-      <location filename="../UI/UserInterface.py" line="2474" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>PyPI Package Management</source>
-      <translation>Менеджер пакетов PyPI</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2497" />
-      <location filename="../UI/UserInterface.py" line="2496" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1225" />
-      <source>Conda</source>
-      <translation>Conda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1232" />
-      <source>Cooperation</source>
-      <translation>Кооперация</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2375" />
-      <location filename="../UI/UserInterface.py" line="1436" />
-      <location filename="../UI/UserInterface.py" line="1237" />
-      <source>IRC</source>
-      <translation>IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
-      <location filename="../UI/UserInterface.py" line="2518" />
-      <location filename="../UI/UserInterface.py" line="1442" />
-      <location filename="../UI/UserInterface.py" line="1244" />
-      <source>MicroPython</source>
-      <translation>MicroPython</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2098" />
-      <location filename="../UI/UserInterface.py" line="1450" />
-      <location filename="../UI/UserInterface.py" line="1252" />
-      <source>Shell</source>
-      <translation>Оболочка</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <location filename="../UI/UserInterface.py" line="1456" />
-      <location filename="../UI/UserInterface.py" line="1256" />
-      <source>Task-Viewer</source>
-      <translation>Просмотр задач</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2142" />
-      <location filename="../UI/UserInterface.py" line="1462" />
-      <location filename="../UI/UserInterface.py" line="1260" />
-      <source>Log-Viewer</source>
-      <translation>Просмотр журналов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1469" />
-      <location filename="../UI/UserInterface.py" line="1267" />
-      <source>Numbers</source>
-      <translation>Представление чисел</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1844" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} - пассивный режим</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <location filename="../UI/UserInterface.py" line="1847" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} - {1} - пассивный режим</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} - {1} - {2} - пассивный режим</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1885" />
-      <source>Quit</source>
-      <translation>Выйти</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1887" />
-      <source>&amp;Quit</source>
-      <translation>&amp;Выйти</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1888" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Quit the IDE</source>
-      <translation>Выход из IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Выход из IDE&lt;/b&gt;
-&lt;p&gt;Перед выходом все изменения могут быть сохранены. Отлаживаемая программа (если есть) будет остановлена, и предпочтения будут сохранены на диск.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1909" />
-      <location filename="../UI/UserInterface.py" line="1907" />
-      <source>Restart</source>
-      <translation>Рестарт</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1910" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Shift+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1915" />
-      <source>Restart the IDE</source>
-      <translation>Перезапуск IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1917" />
-      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Рестарт IDEE&lt;/b&gt;&lt;p&gt;Перезапуск среды IDE. Любые несохраненные изменения сохраняются в первую очередь. Любая программа Python, находящаяся в процессе отладки, будет остановлена, предпочтения будут записаны на диск.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <location filename="../UI/UserInterface.py" line="1928" />
-      <source>Save session</source>
-      <translation>Сохранить сеанс</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Save session...</source>
-      <translation>Сохранить сеанс...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Сохранить севнс...&lt;/b&gt;&lt;p&gt;Позволяет сохранить текущий сеанс на диск. Открывается диалог для выбора имени файла.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7892" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <location filename="../UI/UserInterface.py" line="1947" />
-      <source>Load session</source>
-      <translation>Загрузить сеанс</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
-      <source>Load session...</source>
-      <translation>Загрузить сеанс...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
-      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Загрузить сеанс...&lt;/b&gt;&lt;p&gt;Позволяет загрузить сеанс, ранее сохраненную на диске. Открывается диалог для выбора имени файла.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1966" />
-      <source>New Window</source>
-      <translation>Новый экземпляр</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1968" />
-      <source>New &amp;Window</source>
-      <translation>&amp;Новый экземпляр</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1969" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1974" />
-      <source>Open a new eric instance</source>
-      <translation>Запустить ещё один экземпляр eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Новое окно&lt;/b&gt;&lt;p&gt;Запустить ещё один экземпляр eric IDE.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1990" />
-      <location filename="../UI/UserInterface.py" line="1988" />
-      <source>Edit Profile</source>
-      <translation>Профиль редактирования</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1997" />
-      <source>Activate the edit view profile</source>
-      <translation>Активизировать профиль редактирования</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1999" />
-      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Профиль редактирования&lt;/b&gt;&lt;p&gt;Активизировать "профиль редактирования". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2012" />
-      <location filename="../UI/UserInterface.py" line="2010" />
-      <source>Debug Profile</source>
-      <translation>Профиль отладки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2019" />
-      <source>Activate the debug view profile</source>
-      <translation>Активизировать профиль отладки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2021" />
-      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Профиль отладки&lt;/b&gt;&lt;p&gt;Активизировать "профиль отладки". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2033" />
-      <source>&amp;Project-Viewer</source>
-      <translation>Просмотр &amp;проекта</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2034" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2040" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation>Переключить фокус ввода в окно просмотра проекта.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2043" />
-      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Активировать просмотрщик проекта&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра проекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2055" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>Просмотр &amp;мультипроекта</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2056" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2062" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation>Переключить фокус ввода в окно просмотра мультипроекта.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Активировать просмотрщик проектов&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра мультипроекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2077" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>Просмотр &amp;отладки</translation>
+      <location filename="../UI/UserInterface.py" line="1324" />
+      <location filename="../UI/UserInterface.py" line="1138" />
+      <source>Project-Viewer</source>
+      <translation>Просмотр проекта</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2596" />
+      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="1331" />
+      <location filename="../UI/UserInterface.py" line="1145" />
+      <source>Find/Replace In Files</source>
+      <translation>Найти/Заменить в файлах</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2619" />
+      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="1338" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Find File</source>
+      <translation>Найти файл</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1344" />
+      <location filename="../UI/UserInterface.py" line="1158" />
+      <source>VCS Status</source>
+      <translation>Статус VCS</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="1351" />
+      <location filename="../UI/UserInterface.py" line="1165" />
+      <source>Template-Viewer</source>
+      <translation>Просмотр шаблонов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="1358" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>File-Browser</source>
+      <translation>Браузер файлов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1365" />
+      <location filename="../UI/UserInterface.py" line="1179" />
+      <source>Symbols</source>
+      <translation>Символы</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2078" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2084" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation>Переключить фокус ввода в окно просмотра отладки.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Активировать просмотрщик отладки&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра отладки.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2099" />
-      <source>&amp;Shell</source>
-      <translation>&amp;Оболочка</translation>
+      <location filename="../UI/UserInterface.py" line="1387" />
+      <location filename="../UI/UserInterface.py" line="1381" />
+      <location filename="../UI/UserInterface.py" line="1189" />
+      <source>Debug-Viewer</source>
+      <translation>Просмотр отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="1394" />
+      <location filename="../UI/UserInterface.py" line="1196" />
+      <source>Code Documentation Viewer</source>
+      <translation>Просмотр документации кода</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2665" />
+      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="1401" />
+      <location filename="../UI/UserInterface.py" line="1203" />
+      <source>Help Viewer</source>
+      <translation>Просмотрщик справки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1209" />
+      <source>Plugin Repository</source>
+      <translation>Репозиторий плагинов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2569" />
+      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Virtual Environments</source>
+      <translation>Виртуальные окружения</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2477" />
+      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
+      <source>PyPI Package Management</source>
+      <translation>Менеджер пакетов PyPI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2499" />
+      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="1427" />
+      <location filename="../UI/UserInterface.py" line="1227" />
+      <source>Conda</source>
+      <translation>Conda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1434" />
+      <location filename="../UI/UserInterface.py" line="1234" />
+      <source>Cooperation</source>
+      <translation>Кооперация</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1239" />
+      <source>IRC</source>
+      <translation>IRC</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2521" />
+      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
+      <source>MicroPython</source>
+      <translation>MicroPython</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2100" />
-      <source>Alt+Shift+S</source>
-      <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2106" />
-      <source>Switch the input focus to the Shell window.</source>
-      <translation>Переключить фокус ввода в окно оболочки.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2109" />
-      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Активировать оболочку&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно оболочки.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2121" />
-      <source>&amp;File-Browser</source>
-      <translation>&amp;Браузер файлов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2122" />
-      <source>Alt+Shift+F</source>
-      <translation>Alt+Shift+F</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2128" />
-      <source>Switch the input focus to the File-Browser window.</source>
-      <translation>Переключить фокус ввода в окно браузера файлов.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Активировать браузер файлов&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно браузера файлов.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2143" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation>Просмотр &amp;журнала</translation>
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1254" />
+      <source>Shell</source>
+      <translation>Оболочка</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
+      <source>Task-Viewer</source>
+      <translation>Просмотр задач</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="1464" />
+      <location filename="../UI/UserInterface.py" line="1262" />
+      <source>Log-Viewer</source>
+      <translation>Просмотр журналов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1471" />
+      <location filename="../UI/UserInterface.py" line="1269" />
+      <source>Numbers</source>
+      <translation>Представление чисел</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1846" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} - пассивный режим</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1855" />
+      <location filename="../UI/UserInterface.py" line="1849" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} - {1} - пассивный режим</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1861" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} - {1} - {2} - пассивный режим</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1887" />
+      <source>Quit</source>
+      <translation>Выйти</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1889" />
+      <source>&amp;Quit</source>
+      <translation>&amp;Выйти</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1890" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1895" />
+      <source>Quit the IDE</source>
+      <translation>Выход из IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Выход из IDE&lt;/b&gt;
+&lt;p&gt;Перед выходом все изменения могут быть сохранены. Отлаживаемая программа (если есть) будет остановлена, и предпочтения будут сохранены на диск.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1909" />
+      <source>Restart</source>
+      <translation>Рестарт</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Shift+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1917" />
+      <source>Restart the IDE</source>
+      <translation>Перезапуск IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Рестарт IDEE&lt;/b&gt;&lt;p&gt;Перезапуск среды IDE. Любые несохраненные изменения сохраняются в первую очередь. Любая программа Python, находящаяся в процессе отладки, будет остановлена, предпочтения будут записаны на диск.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1937" />
+      <location filename="../UI/UserInterface.py" line="1930" />
+      <source>Save session</source>
+      <translation>Сохранить сеанс</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1931" />
+      <source>Save session...</source>
+      <translation>Сохранить сеанс...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Сохранить севнс...&lt;/b&gt;&lt;p&gt;Позволяет сохранить текущий сеанс на диск. Открывается диалог для выбора имени файла.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7866" />
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1949" />
+      <source>Load session</source>
+      <translation>Загрузить сеанс</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1950" />
+      <source>Load session...</source>
+      <translation>Загрузить сеанс...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1958" />
+      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Загрузить сеанс...&lt;/b&gt;&lt;p&gt;Позволяет загрузить сеанс, ранее сохраненную на диске. Открывается диалог для выбора имени файла.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1968" />
+      <source>New Window</source>
+      <translation>Новый экземпляр</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1970" />
+      <source>New &amp;Window</source>
+      <translation>&amp;Новый экземпляр</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1971" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1976" />
+      <source>Open a new eric instance</source>
+      <translation>Запустить ещё один экземпляр eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Новое окно&lt;/b&gt;&lt;p&gt;Запустить ещё один экземпляр eric IDE.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1992" />
+      <location filename="../UI/UserInterface.py" line="1990" />
+      <source>Edit Profile</source>
+      <translation>Профиль редактирования</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Activate the edit view profile</source>
+      <translation>Активизировать профиль редактирования</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2001" />
+      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Профиль редактирования&lt;/b&gt;&lt;p&gt;Активизировать "профиль редактирования". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2014" />
+      <location filename="../UI/UserInterface.py" line="2012" />
+      <source>Debug Profile</source>
+      <translation>Профиль отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Activate the debug view profile</source>
+      <translation>Активизировать профиль отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
+      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Профиль отладки&lt;/b&gt;&lt;p&gt;Активизировать "профиль отладки". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2035" />
+      <source>&amp;Project-Viewer</source>
+      <translation>Просмотр &amp;проекта</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2036" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation>Переключить фокус ввода в окно просмотра проекта.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2045" />
+      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Активировать просмотрщик проекта&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра проекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2057" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>Просмотр &amp;мультипроекта</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2058" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation>Переключить фокус ввода в окно просмотра мультипроекта.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2067" />
+      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Активировать просмотрщик проектов&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра мультипроекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2079" />
+      <source>&amp;Debug-Viewer</source>
+      <translation>Просмотр &amp;отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2080" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation>Переключить фокус ввода в окно просмотра отладки.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2089" />
+      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Активировать просмотрщик отладки&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра отладки.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2101" />
+      <source>&amp;Shell</source>
+      <translation>&amp;Оболочка</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2102" />
+      <source>Alt+Shift+S</source>
+      <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <source>Switch the input focus to the Shell window.</source>
+      <translation>Переключить фокус ввода в окно оболочки.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2111" />
+      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Активировать оболочку&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно оболочки.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2123" />
+      <source>&amp;File-Browser</source>
+      <translation>&amp;Браузер файлов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2124" />
+      <source>Alt+Shift+F</source>
+      <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <source>Switch the input focus to the File-Browser window.</source>
+      <translation>Переключить фокус ввода в окно браузера файлов.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2133" />
+      <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Активировать браузер файлов&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно браузера файлов.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2145" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation>Просмотр &amp;журнала</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2146" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2150" />
+      <location filename="../UI/UserInterface.py" line="2152" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра журналов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="2155" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Активировать просмотрщик журнала&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра журнала.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2165" />
+      <location filename="../UI/UserInterface.py" line="2167" />
       <source>&amp;Task-Viewer</source>
       <translation>Просмотр &amp;задач</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="2168" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2174" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра задач.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Активировать просмотрщик задач&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра задач.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2190" />
       <source>Templ&amp;ate-Viewer</source>
       <translation>Просмотр &amp;шаблонов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="2191" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2197" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра шаблонов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2198" />
+      <location filename="../UI/UserInterface.py" line="2200" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Активировать просмотрщик шаблонов&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра шаблонов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2213" />
+      <location filename="../UI/UserInterface.py" line="2215" />
       <source>&amp;Left Toolbox</source>
       <translation>&amp;Левая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2220" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation>Показать/Скрыть левую панель инструментов</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2222" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation>Показать/Скрыть левую панель инструментов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать/скрыть левую панель инструментов&lt;/b&gt;&lt;p&gt;Если левая панель инструментов скрыта, то показать ее. Если отображается, то скрыть.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2236" />
+      <location filename="../UI/UserInterface.py" line="2238" />
       <source>&amp;Right Toolbox</source>
       <translation>&amp;Правая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2243" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation>Показать/Скрыть правую панель инструментов</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2245" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation>Показать/Скрыть правую панель инструментов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать/Скрыть правую панель инструментов&lt;/b&gt;&lt;p&gt;Если аравая панель инструментов скрыта, то показать ее. Если отображается, то скрыть.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2259" />
+      <location filename="../UI/UserInterface.py" line="2261" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>&amp;Горизонтальная панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2266" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation>Включить/Выключить горизонтальную панель инструментов</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2268" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation>Включить/Выключить горизонтальную панель инструментов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Включить/Выключить горизонтальную панель инструментов&lt;/b&gt;&lt;p&gt;Включить/Выключить горизонтальную панель инструментов&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2281" />
+      <location filename="../UI/UserInterface.py" line="2283" />
       <source>Left Sidebar</source>
       <translation>Левая док-панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2282" />
+      <location filename="../UI/UserInterface.py" line="2284" />
       <source>&amp;Left Sidebar</source>
       <translation>&amp;Левая док-панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2289" />
-      <source>Toggle the left sidebar window</source>
-      <translation>Показать/Скрыть левую док-панель</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2291" />
+      <source>Toggle the left sidebar window</source>
+      <translation>Показать/Скрыть левую док-панель</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать/Скрыть левую док-панель&lt;/b&gt;
 &lt;p&gt;Если левая док-панель скрыта, показать её. Иначе - закрыть.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2304" />
+      <location filename="../UI/UserInterface.py" line="2306" />
       <source>Right Sidebar</source>
       <translation>Правая боковая панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2305" />
+      <location filename="../UI/UserInterface.py" line="2307" />
       <source>&amp;Right Sidebar</source>
       <translation>&amp;Правая боковая панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2312" />
-      <source>Toggle the right sidebar window</source>
-      <translation>Показать/Скрыть окно правой боковой панели</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2314" />
+      <source>Toggle the right sidebar window</source>
+      <translation>Показать/Скрыть окно правой боковой панели</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать/Скрыть окно правой боковой панели&lt;/b&gt;&lt;p&gt;Если окно правой боковой панели скрыто, то показать его. Если отображается, то закрыть.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2329" />
       <source>Bottom Sidebar</source>
       <translation>Нижняя док-панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2328" />
+      <location filename="../UI/UserInterface.py" line="2330" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Нижняя док-панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation>Показать/Скрыть нижнюю док-панель</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2337" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation>Показать/Скрыть нижнюю док-панель</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать/Скрыть нижнюю док-панель&lt;/b&gt;
 &lt;p&gt;Если нижняя док-панель скрыта, показать её. Иначе - закрыть.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2350" />
-      <source>Cooperation-Viewer</source>
-      <translation>Просмотр кооперации</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2351" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation>Просмотр ко&amp;операции</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2352" />
+      <source>Cooperation-Viewer</source>
+      <translation>Просмотр кооперации</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2353" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation>Просмотр ко&amp;операции</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2354" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
+      <location filename="../UI/UserInterface.py" line="2360" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра кооперации.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2361" />
+      <location filename="../UI/UserInterface.py" line="2363" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Активировать просмотрщик кооперации&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра кооперации.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2376" />
+      <location filename="../UI/UserInterface.py" line="2378" />
       <source>&amp;IRC</source>
       <translation>&amp;IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="2379" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2383" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Switch the input focus to the IRC window.</source>
       <translation>Переключить фокус ввода в окно IRC.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2386" />
+      <location filename="../UI/UserInterface.py" line="2388" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Активировать IRC&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно IRC.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2397" />
-      <source>Symbols-Viewer</source>
-      <translation>Просмотр символов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2398" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>Просмотр с&amp;имволов</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2399" />
+      <source>Symbols-Viewer</source>
+      <translation>Просмотр символов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2400" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>Просмотр с&amp;имволов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2401" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2407" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра символов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2408" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Активировать просмотрщик символов&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра символов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2422" />
-      <source>Numbers-Viewer</source>
-      <translation>Представление чисел</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2423" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>Представление &amp;чисел</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2424" />
+      <source>Numbers-Viewer</source>
+      <translation>Представление чисел</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation>Представление &amp;чисел</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2426" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
+      <location filename="../UI/UserInterface.py" line="2432" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра чисел.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2433" />
+      <location filename="../UI/UserInterface.py" line="2435" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Активировать просмотрщик чисел&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра чисел.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="2451" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2455" />
+      <location filename="../UI/UserInterface.py" line="2457" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра документации кода.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2460" />
+      <location filename="../UI/UserInterface.py" line="2462" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Просмотр документации кода&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно просмотра документации кода.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="2478" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2482" />
+      <location filename="../UI/UserInterface.py" line="2484" />
       <source>Switch the input focus to the PyPI Package Management window.</source>
       <translation>Переключить фокус ввода на окно управления пакетами PyPI.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2487" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно PyPI.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="2500" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2504" />
+      <location filename="../UI/UserInterface.py" line="2506" />
       <source>Switch the input focus to the Conda window.</source>
       <translation>Переключить фокус ввода в окно Conda.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно Conda.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="2522" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2528" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation>Переключить фокус ввода в окно MicroPython.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2529" />
+      <location filename="../UI/UserInterface.py" line="2531" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно MicroPython.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="2546" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation>Ctrl+Alt+Shift+R</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2552" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation>Переключить фокус ввода в окно репозитория плагинов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2553" />
+      <location filename="../UI/UserInterface.py" line="2555" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Репозиторий плагинов&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно репозитория подключаемых модулей.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="2570" />
       <source>Ctrl+Alt+V</source>
       <translation>Ctrl+Alt+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2574" />
+      <location filename="../UI/UserInterface.py" line="2576" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation>Переключить фокус ввода в окно диспетчера виртуальных сред.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2579" />
+      <location filename="../UI/UserInterface.py" line="2581" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Виртуальные окружения&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно диспетчера виртуальных сред.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="2597" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation>Ctrl+Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2603" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation>Переключить фокус ввода в окно 'Найти/Заменить в файлах'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Найти/Заменить в файлах&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно 'Найти/Заменить в файлах'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="2620" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation>Ctrl+Alt+Shift+L</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2626" />
       <source>Switch the input focus to the Find File window.</source>
       <translation>Переключить фокус ввода в окно 'Найти файл'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Найти файл&lt;/b&gt;&lt;p&gt;Переключение фокус ввода в окно 'Найти файл'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2641" />
-      <location filename="../UI/UserInterface.py" line="2640" />
+      <location filename="../UI/UserInterface.py" line="2643" />
+      <location filename="../UI/UserInterface.py" line="2642" />
       <source>VCS Status List</source>
       <translation>Список статусов VCS</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2642" />
+      <location filename="../UI/UserInterface.py" line="2644" />
       <source>Alt+Shift+V</source>
       <translation>Alt+Shift+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2648" />
+      <location filename="../UI/UserInterface.py" line="2650" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation>Переключить фокус ввода в окно 'Список статусов VCS'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2653" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Список статусов VCS&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно 'Список статусов VCS'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="2666" />
       <source>Alt+Shift+H</source>
       <translation>Alt+Shift+H</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
+      <location filename="../UI/UserInterface.py" line="2672" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation>Переключение фокуса ввода в окно встроенного просмотрщика справки.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2673" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Просмотрщик справки&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно встроенного просмотрщика справки. В нем отображаются файлы справки HTML и справка из коллекций справки Qt.&lt;/p&gt;&lt;p&gt;Если вызов с выбранным словом, это слово ищется в коллекции справки Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2686" />
-      <source>What's This?</source>
-      <translation>Что это?</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2688" />
+      <source>What's This?</source>
+      <translation>Что это?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2690" />
       <source>&amp;What's This?</source>
       <translation>&amp;Что это?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2689" />
+      <location filename="../UI/UserInterface.py" line="2691" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>Context sensitive help</source>
-      <translation>Контекстнозависимая справка</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2696" />
+      <source>Context sensitive help</source>
+      <translation>Контекстнозависимая справка</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показ контекстнозависимой справки&lt;/b&gt;&lt;p&gt;В режиме "What's This?"(Что это?)курсор мыши отображается как стрелка со знаком вопроса, и вы можете, кликнув по элементу интерфейса, получить краткое описание того, что он делает и как его использовать. В диалоговом окне эта функция может быть вызвана кнопкой контекстной справки в панели заголовка.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2709" />
-      <source>Helpviewer</source>
-      <translation>Просмотр справки</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2711" />
+      <source>Helpviewer</source>
+      <translation>Просмотр справки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2713" />
       <source>&amp;Helpviewer...</source>
       <translation>Просмотр спр&amp;авки...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2714" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2717" />
-      <source>Open the helpviewer window</source>
-      <translation>Открыть окно просмотра справки</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2719" />
+      <source>Open the helpviewer window</source>
+      <translation>Открыть окно просмотра справки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Просмотр справки&lt;/b&gt;&lt;p&gt;Открытие eric web-браузера. В его окне будут показываться HTML файлы справки. Оно поддерживает навигацию по ссылкам, закладки, печать и некоторые другие функции. Его можно использовать для просмотра интернета.&lt;/p&gt;&lt;p&gt;Если перед вызовом окна отображения справки был подсвечен какой-либо текст, то будет произведён поиск этого текста в коллекции справки Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2739" />
+      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Versions</source>
       <translation>Показать версии</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2740" />
+      <location filename="../UI/UserInterface.py" line="2742" />
       <source>Show &amp;Versions</source>
       <translation>Показать &amp;версии</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <source>Display version information</source>
-      <translation>Информация о версии</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2748" />
+      <source>Display version information</source>
+      <translation>Информация о версии</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать версии&lt;/b&gt;&lt;p&gt;Информация о версиях.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2754" />
+      <location filename="../UI/UserInterface.py" line="2756" />
       <source>Copy Versions</source>
       <translation>Копировать версии</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2757" />
       <source>&amp;Copy Versions</source>
       <translation>&amp;Копировать версии</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2764" />
       <source>Copy version information to the clipboard</source>
       <translation>Копировать информацию о версии в буфер обмена</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2765" />
+      <location filename="../UI/UserInterface.py" line="2767" />
       <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Копировать версии&lt;/b&gt;&lt;p&gt;Генерирование информации о версии и копирование ее в буфер обмена.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2781" />
-      <location filename="../UI/UserInterface.py" line="2774" />
-      <source>Show Error Log</source>
-      <translation>Показать журнал ошибок</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Show Error &amp;Log...</source>
-      <translation>&amp;Журнал ошибок...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2783" />
+      <location filename="../UI/UserInterface.py" line="2776" />
+      <source>Show Error Log</source>
+      <translation>Показать журнал ошибок</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2777" />
+      <source>Show Error &amp;Log...</source>
+      <translation>&amp;Журнал ошибок...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2785" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать журнал ошибок...&lt;/b&gt;&lt;p&gt;Показать журнал ошибок.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
+      <location filename="../UI/UserInterface.py" line="2794" />
       <source>Show Install Info</source>
       <translation>Показать информацию об установке</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2795" />
       <source>Show Install &amp;Info...</source>
       <translation>Показать информацию об &amp;установке...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
-      <source>Show Installation Information</source>
-      <translation>Показать информацию об установке</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Show Installation Information</source>
+      <translation>Показать информацию об установке</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать информацию об установке...&lt;/b&gt;&lt;p&gt;Открывает диалоговое окно, в котором отображается некая информация о процессе установки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4738" />
-      <location filename="../UI/UserInterface.py" line="2811" />
+      <location filename="../UI/UserInterface.py" line="4712" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>Report Bug</source>
       <translation>Сообщение об ошибке</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2811" />
-      <source>Report &amp;Bug...</source>
-      <translation>Сообщить об &amp;ошибке...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2813" />
-      <source>Report a bug</source>
-      <translation>Сообщить об ошибке</translation>
+      <source>Report &amp;Bug...</source>
+      <translation>Сообщить об &amp;ошибке...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2815" />
+      <source>Report a bug</source>
+      <translation>Сообщить об ошибке</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сообщить об ошибке...&lt;/b&gt;&lt;p&gt;Открытие диалога для сообщения об ошибке.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2821" />
+      <location filename="../UI/UserInterface.py" line="2823" />
       <source>Request Feature</source>
       <translation>Запросить функционал</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2824" />
       <source>Request &amp;Feature...</source>
       <translation>Запросить &amp;функционал...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2828" />
-      <source>Send a feature request</source>
-      <translation>Послать запрос</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2830" />
+      <source>Send a feature request</source>
+      <translation>Послать запрос</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Послать запрос...&lt;/b&gt;&lt;p&gt;Отображение диалога создания запроса.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4174" />
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="4148" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <source>Testing</source>
       <translation>Тестировать</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2843" />
+      <location filename="../UI/UserInterface.py" line="2845" />
       <source>&amp;Testing...</source>
       <translation>&amp;Тестировать...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2849" />
-      <source>Start the testing dialog</source>
-      <translation>Запуск диалогового окна тестирования</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2851" />
+      <source>Start the testing dialog</source>
+      <translation>Запуск диалогового окна тестирования</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Тестировать&lt;/b&gt;&lt;p&gt;Выполнение тестовых прогонов. В этом диалоговом окне можно выбрать и запустить набор тестов или автоматически их обнаружить.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
-      <source>Restart Last Test</source>
-      <translation>Перезапустить последний тест</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2864" />
+      <source>Restart Last Test</source>
+      <translation>Перезапустить последний тест</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2866" />
       <source>&amp;Restart Last Test...</source>
       <translation>&amp;Перезапустить последний тест...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2870" />
-      <source>Restarts the last test</source>
-      <translation>Перезапуск последнего теста</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2872" />
+      <source>Restarts the last test</source>
+      <translation>Перезапуск последнего теста</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Перезапустить последний тестt&lt;/b&gt;&lt;p&gt;Перезапускает тест, выполненный последним.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2882" />
-      <source>Rerun Failed Tests</source>
-      <translation>Повторить неудачные тесты</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2884" />
+      <source>Rerun Failed Tests</source>
+      <translation>Повторить неудачные тесты</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2886" />
       <source>Rerun Failed Tests...</source>
       <translation>Повторить неудачные тесты...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Rerun failed tests of the last run</source>
       <translation>Повторить неудачные тесты последнего запуска</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
+      <location filename="../UI/UserInterface.py" line="2896" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Повторить неудачные тесты&lt;/b&gt;&lt;p&gt;Перезапустить все тесты, провалившиеся при последней попытке.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Test Script</source>
-      <translation>Тест на сценарии</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2906" />
+      <source>Test Script</source>
+      <translation>Тест на сценарии</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2908" />
       <source>Test &amp;Script...</source>
       <translation>Тест на &amp;сценарии...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>Run tests of the current script</source>
-      <translation>Выполнить тесты на текущем сценарии</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2914" />
+      <source>Run tests of the current script</source>
+      <translation>Выполнить тесты на текущем сценарии</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2916" />
       <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Тест на сценарии&lt;/b&gt;&lt;p&gt;Выполнить тесты на текущем сценарии.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Test Project</source>
-      <translation>Тест на проекте</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2923" />
+      <source>Test Project</source>
+      <translation>Тест на проекте</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2925" />
       <source>Test &amp;Project...</source>
       <translation>Тест на &amp;проекте...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Run tests of the current project</source>
-      <translation>Выполнить тесты на текущем проекте</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2931" />
+      <source>Run tests of the current project</source>
+      <translation>Выполнить тесты на текущем проекте</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2933" />
       <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Тест на проекте&lt;/b&gt;&lt;p&gt;Выполнить тест на текущем проекте.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
-      <source>Qt-Designer</source>
-      <translation>Qt-Designer</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2942" />
+      <source>Qt-Designer</source>
+      <translation>Qt-Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2944" />
       <source>Qt-&amp;Designer...</source>
       <translation>Qt-&amp;Designer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start Qt-Designer</source>
-      <translation>Запуск Qt-Designer</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2950" />
+      <source>Start Qt-Designer</source>
+      <translation>Запуск Qt-Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Запуск Qt-Designer.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2959" />
-      <source>Qt-Linguist</source>
-      <translation>Qt-Linguist</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2961" />
+      <source>Qt-Linguist</source>
+      <translation>Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2963" />
       <source>Qt-&amp;Linguist...</source>
       <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2967" />
-      <source>Start Qt-Linguist</source>
-      <translation>Запуск Qt-Linguist</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2969" />
+      <source>Start Qt-Linguist</source>
+      <translation>Запуск Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2971" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Запуск Qt-Linguist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>UI Previewer</source>
-      <translation>Предпросмотр UI</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2979" />
+      <source>UI Previewer</source>
+      <translation>Предпросмотр UI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
       <source>&amp;UI Previewer...</source>
       <translation>Предпросмотр &amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
-      <source>Start the UI Previewer</source>
-      <translation>Запуск предпросмотра UI (пользовательского интерфейса)</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2987" />
+      <source>Start the UI Previewer</source>
+      <translation>Запуск предпросмотра UI (пользовательского интерфейса)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Запустить the UI Previewer.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2993" />
-      <source>Translations Previewer</source>
-      <translation>Предпросмотр переводов</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2995" />
+      <source>Translations Previewer</source>
+      <translation>Предпросмотр переводов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2997" />
       <source>&amp;Translations Previewer...</source>
       <translation>&amp;Предпросмотр переводов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <source>Start the Translations Previewer</source>
-      <translation>Запустить предпросмотр переводов</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3003" />
+      <source>Start the Translations Previewer</source>
+      <translation>Запустить предпросмотр переводов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3005" />
       <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Предпросмотр переводов&lt;/b&gt;&lt;p&gt;Запустить предпросмотр переводов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3012" />
-      <source>Compare Files</source>
-      <translation>Сравнить файлы</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3014" />
+      <source>Compare Files</source>
+      <translation>Сравнить файлы</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3016" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Сравнить файлы...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
-      <location filename="../UI/UserInterface.py" line="3020" />
+      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3022" />
       <source>Compare two files</source>
       <translation>Сравнить два файла</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3024" />
       <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сравнение файлов&lt;/b&gt;
 &lt;p&gt;Открытие диалога сравнения двух файлов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3031" />
-      <source>Compare Files side by side</source>
-      <translation>Сравнение файлов построчно</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3033" />
+      <source>Compare Files side by side</source>
+      <translation>Сравнение файлов построчно</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3035" />
       <source>Compare &amp;Files side by side...</source>
       <translation>Сравнить &amp;файлы построчно...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3043" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сравнить файлы построчно (side by side)&lt;/b&gt;
 &lt;p&gt;Открыть диалог, в котором показаны различия между файлами, в две колонки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>SQL Browser</source>
-      <translation>SQL браузер</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3053" />
+      <source>SQL Browser</source>
+      <translation>SQL браузер</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3055" />
       <source>SQL &amp;Browser...</source>
       <translation>&amp;SQL браузер...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>Browse a SQL database</source>
-      <translation>Просмотреть SQL базу данных</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3061" />
+      <source>Browse a SQL database</source>
+      <translation>Просмотреть SQL базу данных</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
       <translation>&lt;b&gt;SQL браузер&lt;/b&gt;&lt;p&gt;Просмотреть SQL базу данных.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3075" />
-      <location filename="../UI/UserInterface.py" line="3067" />
-      <source>Mini Editor</source>
-      <translation>Миниредактор</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Мини&amp;редактор...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <location filename="../UI/UserInterface.py" line="3069" />
+      <source>Mini Editor</source>
+      <translation>Миниредактор</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3071" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Мини&amp;редактор...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3079" />
       <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Миниредактор&lt;/b&gt;&lt;p&gt;Открывает диалог в упрощённым редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3086" />
-      <source>Hex Editor</source>
-      <translation>Hex-редактор</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3088" />
+      <source>Hex Editor</source>
+      <translation>Hex-редактор</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3090" />
       <source>&amp;Hex Editor...</source>
       <translation>&amp;Hex-редактор...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3094" />
-      <source>Start the eric Hex Editor</source>
-      <translation>Запуск eric Hex-редактора</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>Start the eric Hex Editor</source>
+      <translation>Запуск eric Hex-редактора</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hex-редактор&lt;/b&gt;&lt;p&gt;Запускает eric Hex-редактор для просмотра или редактирования двоичного файла.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3106" />
-      <source>eric Web Browser</source>
-      <translation>Eric web-браузер</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3108" />
+      <source>eric Web Browser</source>
+      <translation>Eric web-браузер</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3110" />
       <source>eric &amp;Web Browser...</source>
       <translation>Eric &amp;web-браузер...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3114" />
-      <source>Start the eric Web Browser</source>
-      <translation>Запустить eric web-браузер</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3116" />
+      <source>Start the eric Web Browser</source>
+      <translation>Запустить eric web-браузер</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3118" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eric web-браузер&lt;/b&gt;&lt;p&gt;Просмотр интернета используя web-браузер, встроенный в eric.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3126" />
-      <source>FIDO2 Security Key Management</source>
-      <translation>Управление ключами безопасности FIDO2</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3128" />
+      <source>FIDO2 Security Key Management</source>
+      <translation>Управление ключами безопасности FIDO2</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3130" />
       <source>FIDO2 Security Key Management...</source>
       <translation>Управление ключами безопасности FIDO2...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3135" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>Start the FIDO2 Security Key Management tool</source>
       <translation>Запустить инструмент управления ключами безопасности FIDO2</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
+      <location filename="../UI/UserInterface.py" line="3140" />
       <source>&lt;b&gt;FIDO2 Security Key Management&lt;/b&gt;&lt;p&gt;Start a tool to manage FIDO2 securit y keys.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Управление ключами безопасности FIDO2&lt;/b&gt;&lt;p&gt;Запустите инструмент для управления ключами безопасности FIDO2.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Icon Editor</source>
-      <translation>Редактор иконок</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3151" />
+      <source>Icon Editor</source>
+      <translation>Редактор иконок</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3153" />
       <source>&amp;Icon Editor...</source>
       <translation>Редактор &amp;иконок...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
-      <source>Start the eric Icon Editor</source>
-      <translation>Запустить eric редактор иконок</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3159" />
+      <source>Start the eric Icon Editor</source>
+      <translation>Запустить eric редактор иконок</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3161" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Редактор иконок&lt;/b&gt;&lt;p&gt;Запустить eric редактор иконок.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6631" />
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="6605" />
+      <location filename="../UI/UserInterface.py" line="3173" />
       <source>Snapshot</source>
       <translation>Снимки</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3173" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>&amp;Snapshot...</source>
       <translation>&amp;Снимки...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <source>Take snapshots of a screen region</source>
-      <translation>Сделать снимок области экрана</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3181" />
+      <source>Take snapshots of a screen region</source>
+      <translation>Сделать снимок области экрана</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Снимки&lt;/b&gt;&lt;p&gt;Сделать снимок области экрана.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>eric PDF Viewer</source>
-      <translation>Просмотрщик PDF eric</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3193" />
+      <source>eric PDF Viewer</source>
+      <translation>Просмотрщик PDF eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>eric PDF &amp;Viewer...</source>
       <translation>Просмотрщик &amp;PDF eric...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3199" />
-      <source>Start the eric PDF Viewer</source>
-      <translation>Запустить просмотрщик PDF eric</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3201" />
+      <source>Start the eric PDF Viewer</source>
+      <translation>Запустить просмотрщик PDF eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Просмотрщик PDF eric&lt;/b&gt;&lt;p&gt;Запускает PDF Viewer eric для просмотра PDF-файлов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
-      <source>Preferences</source>
-      <translation>Предпочтения</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3212" />
+      <source>Preferences</source>
+      <translation>Предпочтения</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Предпочтения...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Set the prefered configuration</source>
-      <translation>Установите предпочтительную конфигурацию</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3220" />
+      <source>Set the prefered configuration</source>
+      <translation>Установите предпочтительную конфигурацию</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3222" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Предпочтения&lt;/b&gt;
 &lt;p&gt;Установка элементов конфигурации приложения согласно вашим предпочтениям.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Export Preferences</source>
-      <translation>Экспорт предпочтений</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3233" />
+      <source>Export Preferences</source>
+      <translation>Экспорт предпочтений</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>E&amp;xport Preferences...</source>
       <translation>&amp;Экспорт предпочтений...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
-      <source>Export the current configuration</source>
-      <translation>Экспорт текущих настроек</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3241" />
+      <source>Export the current configuration</source>
+      <translation>Экспорт текущих настроек</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Экспорт предпочтений&lt;/b&gt;&lt;p&gt;Экспорт текущих предпочтений в файл.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
-      <source>Import Preferences</source>
-      <translation>Импорт предпочтений</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3252" />
+      <source>Import Preferences</source>
+      <translation>Импорт предпочтений</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
       <source>I&amp;mport Preferences...</source>
       <translation>&amp;Импорт предпочтений...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3261" />
       <source>Import a previously exported configuration</source>
       <translation>Импорт сохранённых ранее настроек</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3262" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Импорт предпочтений&lt;/b&gt;&lt;p&gt;Импорт сохранённой ранее конфигурации.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
-      <source>Export Theme</source>
-      <translation>Экспорт темы</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3273" />
+      <source>Export Theme</source>
+      <translation>Экспорт темы</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Export Theme...</source>
       <translation>Экспорт темы...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
-      <source>Export the current theme</source>
-      <translation>Экспорт текущей темы</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3281" />
+      <source>Export the current theme</source>
+      <translation>Экспорт текущей темы</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Экспорт темы&lt;/b&gt;&lt;p&gt;Экспорт текущей темы в файл.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3290" />
-      <source>Import Theme</source>
-      <translation>Импорт темы</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3292" />
+      <source>Import Theme</source>
+      <translation>Импорт темы</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
       <source>Import Theme...</source>
       <translation>Импорт темы...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
-      <source>Import a previously exported theme</source>
-      <translation>Импорт ранее экспортированной темы</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3300" />
+      <source>Import a previously exported theme</source>
+      <translation>Импорт ранее экспортированной темы</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3302" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Импорт темы&lt;/b&gt;&lt;p&gt;Импорт ранее экспортированной темы.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload APIs</source>
-      <translation>Перезагрузить API</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload &amp;APIs</source>
-      <translation>Перезагрузить &amp;API</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3311" />
-      <source>Reload the API information</source>
-      <translation>Перезагрузить информацию об API</translation>
+      <source>Reload APIs</source>
+      <translation>Перезагрузить API</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3311" />
+      <source>Reload &amp;APIs</source>
+      <translation>Перезагрузить &amp;API</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Reload the API information</source>
+      <translation>Перезагрузить информацию об API</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Перезагрузить API&lt;/b&gt;&lt;p&gt;Перезагрузить информацию об API.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <location filename="../UI/UserInterface.py" line="3319" />
-      <source>Show external tools</source>
-      <translation>Показать внешние инструменты</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Show external &amp;tools</source>
-      <translation>&amp;Внешние инструменты</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3329" />
+      <location filename="../UI/UserInterface.py" line="3321" />
+      <source>Show external tools</source>
+      <translation>Показать внешние инструменты</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3323" />
+      <source>Show external &amp;tools</source>
+      <translation>&amp;Внешние инструменты</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3331" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать внешние инструменты&lt;/b&gt;&lt;p&gt;Открытие диалога отображения пути и версий внешних инструментов, используемых eric.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>View Profiles</source>
-      <translation>Профили</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3341" />
+      <source>View Profiles</source>
+      <translation>Профили</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3343" />
       <source>&amp;View Profiles...</source>
       <translation>&amp;Профили...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Configure view profiles</source>
-      <translation>Конфигурация профилей</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Configure view profiles</source>
+      <translation>Конфигурация профилей</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Профили&lt;/b&gt;&lt;p&gt;Конфигурация профилей. С помощью этого диалога вы можете устанавливать видимость разных окон для заданных профилей.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
-      <source>Toolbars</source>
-      <translation>Панели инструментов</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3362" />
+      <source>Toolbars</source>
+      <translation>Панели инструментов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3364" />
       <source>Tool&amp;bars...</source>
       <translation>Панели &amp;инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
-      <source>Configure toolbars</source>
-      <translation>Настройка панелей инструментов</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3370" />
+      <source>Configure toolbars</source>
+      <translation>Настройка панелей инструментов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3372" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Панели инструментов&lt;/b&gt;&lt;p&gt;Настроить панели инструментов. В этом диалоге Вы можете изменить имеющиеся панели инструментов, а так же создать новые.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
-      <source>Keyboard Shortcuts</source>
-      <translation>Горячие клавиши</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3383" />
+      <source>Keyboard Shortcuts</source>
+      <translation>Горячие клавиши</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Горячие &amp;клавиши...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3389" />
-      <source>Set the keyboard shortcuts</source>
-      <translation>Определение горячих клавиш</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3391" />
+      <source>Set the keyboard shortcuts</source>
+      <translation>Определение горячих клавиш</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Горячие клавиши&lt;/b&gt;&lt;p&gt;Определите горячие клавиши приложения согласно вашим предпочтениям.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7600" />
-      <location filename="../UI/UserInterface.py" line="7581" />
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7555" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Экспорт горячих клавиш</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Экспорт горячих клавиш...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Экспортировать горячие клавиши</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3411" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Экспортировать горячие клавиши</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3413" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Экспорт горячих клавиш&lt;/b&gt;
 &lt;p&gt;Экспортировать горячие клавиши приложения.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7619" />
-      <location filename="../UI/UserInterface.py" line="3420" />
+      <location filename="../UI/UserInterface.py" line="7593" />
+      <location filename="../UI/UserInterface.py" line="3422" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Импорт горячих клавиш</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Импорт горячих клавиш...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3428" />
-      <source>Import the keyboard shortcuts</source>
-      <translation>Импортировать горячие клавиши</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3430" />
+      <source>Import the keyboard shortcuts</source>
+      <translation>Импортировать горячие клавиши</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3432" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Импорт горячих клавиш&lt;/b&gt;
 &lt;p&gt;Импортировать горячие клавиши приложения.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3440" />
-      <source>Manage SSL Certificates</source>
-      <translation>Менеджер SSL сертификатов</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3442" />
+      <source>Manage SSL Certificates</source>
+      <translation>Менеджер SSL сертификатов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3444" />
       <source>Manage SSL Certificates...</source>
       <translation>Менеджер SSL сертификатов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Manage the saved SSL certificates</source>
       <translation>Управление сохранёнными SSL сертификатами</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3454" />
       <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Менеджер SSL сертификатов...&lt;/b&gt;&lt;p&gt;Менеджер сохранённых SSL сертификатов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3462" />
-      <source>Edit Message Filters</source>
-      <translation>Редактировать фильтры сообщений</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3464" />
+      <source>Edit Message Filters</source>
+      <translation>Редактировать фильтры сообщений</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3466" />
       <source>Edit Message Filters...</source>
       <translation>Редактировать фильтры сообщений...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation>Редактировать фильтры нежелательных сообщений</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3474" />
+      <location filename="../UI/UserInterface.py" line="3476" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Редактировать фильтры сообщений&lt;/b&gt;&lt;p&gt;Редактировать фильтры нежелательных сообщений об ошибках.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <location filename="../UI/UserInterface.py" line="3487" />
-      <location filename="../UI/UserInterface.py" line="3485" />
-      <source>Clear private data</source>
-      <translation>Очистить приватные данные</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3489" />
+      <location filename="../UI/UserInterface.py" line="3487" />
+      <source>Clear private data</source>
+      <translation>Очистить приватные данные</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Очистить приватные данные&lt;/b&gt;&lt;p&gt;Очистка приватных данных, таких как различные списки недавно открытых файлов, проектов или мультипроектов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3506" />
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3508" />
+      <location filename="../UI/UserInterface.py" line="3507" />
       <source>Activate current editor</source>
       <translation>Активировать текущий редактор</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3507" />
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3518" />
-      <location filename="../UI/UserInterface.py" line="3517" />
+      <location filename="../UI/UserInterface.py" line="3520" />
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>Show next</source>
       <translation>Показать следующую</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3519" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3530" />
-      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <source>Show previous</source>
       <translation>Показать предыдущую</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3533" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3542" />
-      <location filename="../UI/UserInterface.py" line="3541" />
+      <location filename="../UI/UserInterface.py" line="3544" />
+      <location filename="../UI/UserInterface.py" line="3543" />
       <source>Switch between tabs</source>
       <translation>Переключение между вкладками</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3543" />
+      <location filename="../UI/UserInterface.py" line="3545" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3553" />
-      <source>Plugin Infos</source>
-      <translation>Информация о плагинах</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3555" />
+      <source>Plugin Infos</source>
+      <translation>Информация о плагинах</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>&amp;Plugin Infos...</source>
       <translation>Ин&amp;формация о плагинах...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3561" />
-      <source>Show Plugin Infos</source>
-      <translation>Отображение информации о плагинах</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3563" />
+      <source>Show Plugin Infos</source>
+      <translation>Отображение информации о плагинах</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3565" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Информация о плагинах...&lt;/b&gt;
 &lt;p&gt;Открытие диалога, отображающего информацию о загруженных плагинах.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3581" />
-      <location filename="../UI/UserInterface.py" line="3573" />
+      <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3575" />
       <source>Install Plugins</source>
       <translation>Установить плагины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3575" />
+      <location filename="../UI/UserInterface.py" line="3577" />
       <source>&amp;Install Plugins...</source>
       <translation>&amp;Установить плагины...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Установить плагины...&lt;/b&gt;&lt;p&gt;Открытие диалога установки или обновления плагинов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3600" />
-      <location filename="../UI/UserInterface.py" line="3592" />
-      <source>Uninstall Plugin</source>
-      <translation>Удалить плагин</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>Уда&amp;лить плагин...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3602" />
+      <location filename="../UI/UserInterface.py" line="3594" />
+      <source>Uninstall Plugin</source>
+      <translation>Удалить плагин</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3596" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>Уда&amp;лить плагин...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Деинсталлировать плагин...&lt;/b&gt;&lt;p&gt;Открытие диалога деинсталляции плагина.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3615" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Репозиторий плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3619" />
-      <source>Show Plugins available for download</source>
-      <translation>Показать плагины, доступные для загрузки</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3621" />
+      <source>Show Plugins available for download</source>
+      <translation>Показать плагины, доступные для загрузки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3623" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Репозиторий плагинов...&lt;/b&gt;&lt;p&gt;Открытие диалога, отображающего список плагинов, доступных для скачивания с интернета.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3651" />
-      <location filename="../UI/UserInterface.py" line="3650" />
+      <location filename="../UI/UserInterface.py" line="3653" />
+      <location filename="../UI/UserInterface.py" line="3652" />
       <source>Qt5 Documentation</source>
       <translation>Документация Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>Open Qt5 Documentation</source>
-      <translation>Открыть документацию Qt5</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3659" />
+      <source>Open Qt5 Documentation</source>
+      <translation>Открыть документацию Qt5</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Документация Qt5&lt;/b&gt;&lt;p&gt;Отображение документации Qt5. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3672" />
-      <location filename="../UI/UserInterface.py" line="3671" />
+      <location filename="../UI/UserInterface.py" line="3674" />
+      <location filename="../UI/UserInterface.py" line="3673" />
       <source>Qt6 Documentation</source>
       <translation>Документация Qt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3678" />
-      <source>Open Qt6 Documentation</source>
-      <translation>Открыть документацию Qt6</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3680" />
+      <source>Open Qt6 Documentation</source>
+      <translation>Открыть документацию Qt6</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3682" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Документация Qt6&lt;/b&gt;&lt;p&gt;Отображение документации Qt6. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3693" />
-      <location filename="../UI/UserInterface.py" line="3692" />
+      <location filename="../UI/UserInterface.py" line="3695" />
+      <location filename="../UI/UserInterface.py" line="3694" />
       <source>PyQt5 Documentation</source>
       <translation>Документация PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3699" />
-      <source>Open PyQt5 Documentation</source>
-      <translation>Открыть документацию PyQt5</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Open PyQt5 Documentation</source>
+      <translation>Открыть документацию PyQt5</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Докуметация PyQt5&lt;/b&gt;&lt;p&gt;Отображение документации PyQt5. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3714" />
-      <location filename="../UI/UserInterface.py" line="3713" />
+      <location filename="../UI/UserInterface.py" line="3716" />
+      <location filename="../UI/UserInterface.py" line="3715" />
       <source>PyQt6 Documentation</source>
       <translation>Документация PyQt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3720" />
-      <source>Open PyQt6 Documentation</source>
-      <translation>Открыть документацию PyQt6</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3722" />
+      <source>Open PyQt6 Documentation</source>
+      <translation>Открыть документацию PyQt6</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3724" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Докуметация PyQt6&lt;/b&gt;&lt;p&gt;Отображение документации PyQt6. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3740" />
-      <location filename="../UI/UserInterface.py" line="3739" />
+      <location filename="../UI/UserInterface.py" line="3742" />
+      <location filename="../UI/UserInterface.py" line="3741" />
       <source>Python 3 Documentation</source>
       <translation>Документация Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3746" />
-      <source>Open Python 3 Documentation</source>
-      <translation>Открыть документацию Python 3</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3748" />
+      <source>Open Python 3 Documentation</source>
+      <translation>Открыть документацию Python 3</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3750" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Документация Python 3&lt;/b&gt;&lt;p&gt;Отображение документации Python 3. Если директория документации не настроена, то предполагается, что документация Python 3 находится в директории doc в расположении исполняемого файла Python 3 в Windows и &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i. &gt; на Юникс. Чтобы переопределить это, установите PYTHON3DOCDIR в вашей среде.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3767" />
-      <location filename="../UI/UserInterface.py" line="3766" />
+      <location filename="../UI/UserInterface.py" line="3769" />
+      <location filename="../UI/UserInterface.py" line="3768" />
       <source>eric API Documentation</source>
       <translation>Документация API Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3773" />
-      <source>Open eric API Documentation</source>
-      <translation>Открыть документацию API Eric</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3775" />
+      <source>Open eric API Documentation</source>
+      <translation>Открыть документацию API Eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3777" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Документация API eric&lt;/b&gt;&lt;p&gt;Отображение документации API eric. Местонахождение документации - директория Documentation/Source, расположенный в директории инсталляции eric.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3793" />
-      <location filename="../UI/UserInterface.py" line="3792" />
-      <source>PySide2 Documentation</source>
-      <translation>Документация PySide2</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3799" />
-      <source>Open PySide2 Documentation</source>
-      <translation>Открыть документацию PySide2</translation>
+      <location filename="../UI/UserInterface.py" line="3795" />
+      <location filename="../UI/UserInterface.py" line="3794" />
+      <source>PySide6 Documentation</source>
+      <translation>Документация PySide6</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3801" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation>&lt;b&gt;Документация PySide2&lt;/b&gt;&lt;p&gt;Отображение документации PySide2.  В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3819" />
-      <location filename="../UI/UserInterface.py" line="3818" />
-      <source>PySide6 Documentation</source>
-      <translation>Документация PySide6</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3825" />
       <source>Open PySide6 Documentation</source>
       <translation>Открыть документацию PySide6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3827" />
+      <location filename="../UI/UserInterface.py" line="3803" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Документация PySide6&lt;/b&gt;&lt;p&gt;Отображение документации PySide6.  В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3863" />
+      <location filename="../UI/UserInterface.py" line="3839" />
       <source>Sessions</source>
       <translation>Сеансы</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3944" />
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>E&amp;xtras</source>
       <translation>&amp;Дополнительно</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3954" />
+      <location filename="../UI/UserInterface.py" line="3930" />
       <source>Wi&amp;zards</source>
       <translation>&amp;Мастера</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3948" />
       <source>P&amp;lugins</source>
       <translation>Пла&amp;гины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="3957" />
       <source>Configure...</source>
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3990" />
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>&amp;Testing</source>
       <translation>&amp;Тестировать</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="3983" />
       <source>Select Tool Group</source>
       <translation>Выберите группу инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4018" />
+      <location filename="../UI/UserInterface.py" line="3994" />
       <source>Se&amp;ttings</source>
       <translation>&amp;Настройки</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4051" />
+      <location filename="../UI/UserInterface.py" line="4027" />
       <source>&amp;Window</source>
       <translation>&amp;Окно</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4060" />
+      <location filename="../UI/UserInterface.py" line="4036" />
       <source>&amp;Windows</source>
       <translation>&amp;Окна</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4064" />
+      <location filename="../UI/UserInterface.py" line="4040" />
       <source>Central Park</source>
       <translation>Центральное окно</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4068" />
+      <location filename="../UI/UserInterface.py" line="4044" />
       <source>Left Side</source>
       <translation>Левая панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4087" />
+      <location filename="../UI/UserInterface.py" line="4063" />
       <source>Right Side</source>
       <translation>Правая панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4106" />
+      <location filename="../UI/UserInterface.py" line="4082" />
       <source>Bottom Side</source>
       <translation>Нижняя панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4090" />
       <source>Plug-ins</source>
       <translation>Плагины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="4096" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Панели инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4133" />
+      <location filename="../UI/UserInterface.py" line="4109" />
       <source>&amp;Help</source>
       <translation>&amp;Справка</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4190" />
-      <location filename="../UI/UserInterface.py" line="4173" />
+      <location filename="../UI/UserInterface.py" line="4164" />
+      <location filename="../UI/UserInterface.py" line="4147" />
       <source>Tools</source>
       <translation>Инструменты</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4192" />
-      <location filename="../UI/UserInterface.py" line="4177" />
+      <location filename="../UI/UserInterface.py" line="4166" />
+      <location filename="../UI/UserInterface.py" line="4151" />
       <source>Settings</source>
       <translation>Настройки</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6361" />
-      <location filename="../UI/UserInterface.py" line="4193" />
-      <location filename="../UI/UserInterface.py" line="4178" />
+      <location filename="../UI/UserInterface.py" line="6335" />
+      <location filename="../UI/UserInterface.py" line="4167" />
+      <location filename="../UI/UserInterface.py" line="4152" />
       <source>Help</source>
       <translation>Справка</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4194" />
-      <location filename="../UI/UserInterface.py" line="4179" />
+      <location filename="../UI/UserInterface.py" line="4168" />
+      <location filename="../UI/UserInterface.py" line="4153" />
       <source>Profiles</source>
       <translation>Профили</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4195" />
-      <location filename="../UI/UserInterface.py" line="4180" />
+      <location filename="../UI/UserInterface.py" line="4169" />
+      <location filename="../UI/UserInterface.py" line="4154" />
       <source>Plugins</source>
       <translation>Плагины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4191" />
+      <location filename="../UI/UserInterface.py" line="4165" />
       <source>Unittest</source>
       <translation>Юниттест</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4368" />
+      <location filename="../UI/UserInterface.py" line="4342" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния отображается язык текущего окна редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4377" />
+      <location filename="../UI/UserInterface.py" line="4351" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния отображается текущая кодировка редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4386" />
+      <location filename="../UI/UserInterface.py" line="4360" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния отображается режим конца строки текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4395" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния отображается режим ro/rw файла, открытого в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4404" />
+      <location filename="../UI/UserInterface.py" line="4378" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния отображается номер текущей строки редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
+      <location filename="../UI/UserInterface.py" line="4387" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния отображается текущая позиция курсора в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4427" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния разрешено масштабирование редактора или оболочки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4501" />
-      <location filename="../UI/UserInterface.py" line="4460" />
+      <location filename="../UI/UserInterface.py" line="4475" />
+      <location filename="../UI/UserInterface.py" line="4434" />
       <source>External Tools/{0}</source>
       <translation>Внешние инструменты/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4609" />
+      <location filename="../UI/UserInterface.py" line="4583" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation>&lt;h2&gt;Номера версий&lt;/h2&gt;&lt;table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4679" />
+      <location filename="../UI/UserInterface.py" line="4653" />
       <source>Desktop</source>
       <translation>Рабочий стол</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4683" />
+      <location filename="../UI/UserInterface.py" line="4657" />
       <source>Session Type</source>
       <translation>Тип сеанса</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4739" />
+      <location filename="../UI/UserInterface.py" line="4713" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>Почтовый адрес или адрес почтового сервера пуст. &lt;p&gt;Настройте параметры вашей электронной почты в диалоге предпочтений.</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5048" />
+      <source>Restart application</source>
+      <translation>Перезапустить приложение</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5049" />
+      <source>The application needs to be restarted. Do it now?</source>
+      <translation>Необходимо перезапустить приложение. Сделать это сейчас?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5073" />
+      <source>Upgrade PyQt</source>
+      <translation>Обновить PyQt</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5074" />
-      <source>Restart application</source>
-      <translation>Перезапустить приложение</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5075" />
-      <source>The application needs to be restarted. Do it now?</source>
-      <translation>Необходимо перезапустить приложение. Сделать это сейчас?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5099" />
-      <source>Upgrade PyQt</source>
-      <translation>Обновить PyQt</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5100" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -93892,12 +93854,12 @@
 Выполнить обновление сейчас?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5098" />
       <source>Upgrade Eric</source>
       <translation>Обновить Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5125" />
+      <location filename="../UI/UserInterface.py" line="5099" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -93906,12 +93868,12 @@
 Выполнить обновление сейчас?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5150" />
+      <location filename="../UI/UserInterface.py" line="5124" />
       <source>Upgrade Eric and PyQt6</source>
       <translation>Обновить Eric и PyQt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5151" />
+      <location filename="../UI/UserInterface.py" line="5125" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
@@ -93920,340 +93882,352 @@
  Выполнить обновление сейчас?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5213" />
+      <location filename="../UI/UserInterface.py" line="5187" />
       <source>&amp;Builtin Tools</source>
       <translation>&amp;Встроенные инструменты</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5233" />
+      <location filename="../UI/UserInterface.py" line="5207" />
       <source>&amp;Plugin Tools</source>
       <translation>Инструменты - &amp;плагины</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5210" />
+      <source>&amp;User Tools</source>
+      <translation>&amp;Инструменты пользователя</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5236" />
-      <source>&amp;User Tools</source>
-      <translation>&amp;Инструменты пользователя</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5262" />
       <source>Configure Tool Groups ...</source>
       <translation>Настройка группы инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5266" />
+      <location filename="../UI/UserInterface.py" line="5240" />
       <source>Configure current Tool Group ...</source>
       <translation>Настроить текущую группу инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5305" />
-      <location filename="../UI/UserInterface.py" line="5285" />
+      <location filename="../UI/UserInterface.py" line="5279" />
+      <location filename="../UI/UserInterface.py" line="5259" />
       <source>No User Tools Configured</source>
       <translation>Инструменты пользователя не сконфигурированы</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5381" />
+      <location filename="../UI/UserInterface.py" line="5355" />
       <source>&amp;Show all</source>
       <translation>Показать &amp;всё</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5383" />
+      <location filename="../UI/UserInterface.py" line="5357" />
       <source>&amp;Hide all</source>
       <translation>Ск&amp;рыть всё</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6498" />
-      <location filename="../UI/UserInterface.py" line="6487" />
-      <location filename="../UI/UserInterface.py" line="6439" />
-      <location filename="../UI/UserInterface.py" line="6429" />
-      <location filename="../UI/UserInterface.py" line="6252" />
-      <location filename="../UI/UserInterface.py" line="6242" />
-      <location filename="../UI/UserInterface.py" line="6184" />
-      <location filename="../UI/UserInterface.py" line="6174" />
+      <location filename="../UI/UserInterface.py" line="6472" />
+      <location filename="../UI/UserInterface.py" line="6461" />
+      <location filename="../UI/UserInterface.py" line="6413" />
+      <location filename="../UI/UserInterface.py" line="6403" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6216" />
+      <location filename="../UI/UserInterface.py" line="6158" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <source>Problem</source>
       <translation>Проблема</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6499" />
-      <location filename="../UI/UserInterface.py" line="6488" />
-      <location filename="../UI/UserInterface.py" line="6440" />
-      <location filename="../UI/UserInterface.py" line="6430" />
-      <location filename="../UI/UserInterface.py" line="6253" />
-      <location filename="../UI/UserInterface.py" line="6243" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6175" />
+      <location filename="../UI/UserInterface.py" line="6473" />
+      <location filename="../UI/UserInterface.py" line="6462" />
+      <location filename="../UI/UserInterface.py" line="6414" />
+      <location filename="../UI/UserInterface.py" line="6404" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; либо не существует, либо нулевой длины.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6740" />
-      <location filename="../UI/UserInterface.py" line="6651" />
-      <location filename="../UI/UserInterface.py" line="6534" />
-      <location filename="../UI/UserInterface.py" line="6511" />
-      <location filename="../UI/UserInterface.py" line="6452" />
-      <location filename="../UI/UserInterface.py" line="6399" />
-      <location filename="../UI/UserInterface.py" line="6377" />
-      <location filename="../UI/UserInterface.py" line="6328" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6275" />
-      <location filename="../UI/UserInterface.py" line="6216" />
-      <location filename="../UI/UserInterface.py" line="6207" />
+      <location filename="../UI/UserInterface.py" line="6714" />
+      <location filename="../UI/UserInterface.py" line="6625" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6302" />
+      <location filename="../UI/UserInterface.py" line="6293" />
+      <location filename="../UI/UserInterface.py" line="6258" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6190" />
+      <location filename="../UI/UserInterface.py" line="6181" />
       <source>Process Generation Error</source>
       <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6208" />
+      <location filename="../UI/UserInterface.py" line="6182" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить Qt-Designer.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6191" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается найти исполняемый файл Qt-Designer.&lt;br&gt;На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6250" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить Qt-Linguist.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6285" />
+      <location filename="../UI/UserInterface.py" line="6259" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается найти исполняемый файл Qt-Linguist.&lt;br&gt;На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6320" />
+      <location filename="../UI/UserInterface.py" line="6294" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить Qt-Assistant.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6303" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается найти исполняемый файл Qt-Assistant.&lt;br&gt;На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6362" />
+      <location filename="../UI/UserInterface.py" line="6336" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>В настоящее время просмотрщик пользователя не выбран. Используйте диалог предпочтений для его выбора.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6378" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить пользовательский просмотрщик.&lt;br&gt;Убедитесь, что он находится в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6374" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить просмотрщик справки.&lt;br&gt;Убедитесь, что он доступен под именем &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6453" />
+      <location filename="../UI/UserInterface.py" line="6427" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить UI Previewer (предпросмотр интерфейсов).&lt;br&gt;Убедитесь, что он находится в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6512" />
+      <location filename="../UI/UserInterface.py" line="6486" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить Translation Previewer (предпросмотр переводов).&lt;br&gt;Убедитесь, что он находится в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6535" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить SQL браузер.&lt;br&gt;Убедитесь, что он доступен как &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6632" />
+      <location filename="../UI/UserInterface.py" line="6606" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Утилита моментального снимка недоступна для сеансов Wayland desktop.&lt; / p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6652" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить программу для создания снимка экрана.&lt;br&gt;Убедитесь что она установлена как &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6685" />
-      <location filename="../UI/UserInterface.py" line="6675" />
+      <location filename="../UI/UserInterface.py" line="6659" />
+      <location filename="../UI/UserInterface.py" line="6649" />
       <source>External Tools</source>
       <translation>Внешние инструменты</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6676" />
+      <location filename="../UI/UserInterface.py" line="6650" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation>Запись для внешнего инструмента '{0}' не найдена в группе инструментов '{1}'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6686" />
+      <location filename="../UI/UserInterface.py" line="6660" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>Запись для группы инструментов '{0}' не найдена.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6723" />
+      <location filename="../UI/UserInterface.py" line="6697" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Запускается процесс '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6741" />
+      <location filename="../UI/UserInterface.py" line="6715" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить инструмент &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6820" />
+      <location filename="../UI/UserInterface.py" line="6794" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Процесс '{0}' завершен.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7108" />
-      <location filename="../UI/UserInterface.py" line="7046" />
-      <location filename="../UI/UserInterface.py" line="7002" />
-      <location filename="../UI/UserInterface.py" line="6928" />
-      <location filename="../UI/UserInterface.py" line="6864" />
+      <location filename="../UI/UserInterface.py" line="7082" />
+      <location filename="../UI/UserInterface.py" line="7020" />
+      <location filename="../UI/UserInterface.py" line="6976" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6838" />
       <source>Documentation Missing</source>
       <translation>Документация отсутствует</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7109" />
-      <location filename="../UI/UserInterface.py" line="7047" />
-      <location filename="../UI/UserInterface.py" line="7003" />
-      <location filename="../UI/UserInterface.py" line="6929" />
-      <location filename="../UI/UserInterface.py" line="6865" />
+      <location filename="../UI/UserInterface.py" line="7083" />
+      <location filename="../UI/UserInterface.py" line="7021" />
+      <location filename="../UI/UserInterface.py" line="6977" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6839" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Стартовая директория документации "&lt;b&gt;{0}&lt;/b&gt;" не найдена.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7090" />
-      <location filename="../UI/UserInterface.py" line="6972" />
+      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="6946" />
       <source>Documentation</source>
       <translation>Документация</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6973" />
+      <location filename="../UI/UserInterface.py" line="6947" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Стартовая директория документации PyQt{0} не настроена.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7091" />
+      <location filename="../UI/UserInterface.py" line="7065" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Просмотр документации PySide{0} не настроен.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7270" />
-      <location filename="../UI/UserInterface.py" line="7206" />
+      <location filename="../UI/UserInterface.py" line="7244" />
+      <location filename="../UI/UserInterface.py" line="7180" />
       <source>Start Web Browser</source>
       <translation>Запуск web-браузера</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7207" />
+      <location filename="../UI/UserInterface.py" line="7181" />
       <source>The eric web browser could not be started.</source>
       <translation>Невозможно запустить eric web-браузер.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7271" />
+      <location filename="../UI/UserInterface.py" line="7245" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Eric web-браузер не запущен.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Open Browser</source>
       <translation>Открыть браузер</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Could not start a web browser</source>
       <translation>Невозможно запустить web-браузер</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7595" />
+      <location filename="../UI/UserInterface.py" line="7557" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation>Файл горячих клавиш (*.ekj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7601" />
+      <location filename="../UI/UserInterface.py" line="7575" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл горячих клавиш &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7805" />
+      <location filename="../UI/UserInterface.py" line="7779" />
       <source>Load crash session...</source>
       <translation>Загрузить crash-сеанс...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7808" />
+      <location filename="../UI/UserInterface.py" line="7782" />
       <source>Clean crash sessions...</source>
       <translation>Очистить crash-сеансы...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7845" />
+      <location filename="../UI/UserInterface.py" line="7819" />
       <source>Read Session</source>
       <translation>Загрузить сеанс</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7846" />
+      <location filename="../UI/UserInterface.py" line="7820" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл сеанса &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7869" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Save Session</source>
       <translation>Сохранить сеанс</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7894" />
-      <location filename="../UI/UserInterface.py" line="7871" />
+      <location filename="../UI/UserInterface.py" line="7868" />
+      <location filename="../UI/UserInterface.py" line="7845" />
       <source>eric Session Files (*.esj)</source>
       <translation>Файлы сеансов eric (*.esj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8400" />
+      <location filename="../UI/UserInterface.py" line="8374" />
       <source>Drop Error</source>
       <translation>Ошибка Drag&amp;&amp;Drop</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8401" />
+      <location filename="../UI/UserInterface.py" line="8375" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; не является файлом&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8598" />
+      <location filename="../UI/UserInterface.py" line="8550" />
       <source>Upgrade available</source>
       <translation>Доступно обновление</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8551" />
+      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Новая версия пакета &lt;b&gt;eric-ide&lt;/b&gt; доступна по адресу &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt; Установлено: {1}&lt;br/&gt;Доступно: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Должен ли &lt;b&gt;eric-ide&lt;/b&gt; быть обновлен?&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8599" />
-      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Новая версия пакета &lt;b&gt;eric-ide&lt;/b&gt; доступна по адресу &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt; Установлено: {1}&lt;br/&gt;Доступно: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Должен ли &lt;b&gt;eric-ide&lt;/b&gt; быть обновлен?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
       <source>First time usage</source>
       <translation>Первое использование</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8600" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation>Настройка eric ещё не выполнена. Сейчас будет запущен диалог конфигурации.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8622" />
       <source>Select Workspace Directory</source>
       <translation>Выбор директории рабочей области</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8790" />
       <source>Unsaved Data Detected</source>
       <translation>Обнаружены несохраненные данные</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8791" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation>Некоторые редакторы содержат несохраненные данные. Должны ли они быть сохранены?</translation>
     </message>
     <message>
+      <source>PySide2 Documentation</source>
+      <translation type="vanished">Документация PySide2</translation>
+    </message>
+    <message>
+      <source>Open PySide2 Documentation</source>
+      <translation type="vanished">Открыть документацию PySide2</translation>
+    </message>
+    <message>
+      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+      <translation type="vanished">&lt;b&gt;Документация PySide2&lt;/b&gt;&lt;p&gt;Отображение документации PySide2.  В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
+    </message>
+    <message>
       <source>Clean stale crash sessions</source>
       <translation type="vanished">Очистите устаревшие crash-сеансы</translation>
     </message>
--- a/src/eric7/i18n/eric7_tr.ts	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/i18n/eric7_tr.ts	Sun Apr 13 14:46:18 2025 +0200
@@ -1735,47 +1735,47 @@
   <context>
     <name>BackgroundService</name>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="168" />
+      <location filename="../Utilities/BackgroundService.py" line="169" />
       <source>{0} not configured.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="230" />
-      <source>Initialization of Background Service</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>Initialization of Background Service</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="232" />
       <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="244" />
-      <source>Restart background client?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="245" />
+      <source>Restart background client?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="246" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="274" />
+      <location filename="../Utilities/BackgroundService.py" line="275" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="515" />
+      <location filename="../Utilities/BackgroundService.py" line="516" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="524" />
-      <source>Background client disconnected.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="525" />
+      <source>Background client disconnected.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="526" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -3761,7 +3761,7 @@
       <translation>Sunucu listesini temizlemek için basınız</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="526" />
+      <location filename="../Cooperation/ChatWidget.py" line="528" />
       <location filename="../Cooperation/ChatWidget.ui" line="0" />
       <source>Clear</source>
       <translation>Temizle</translation>
@@ -3792,156 +3792,156 @@
       <translation>Sunucunun durumunu göster</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="322" />
+      <location filename="../Cooperation/ChatWidget.py" line="324" />
       <location filename="../Cooperation/ChatWidget.py" line="85" />
       <source>Start Server</source>
       <translation>Sunucuyu Başlat</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="153" />
+      <location filename="../Cooperation/ChatWidget.py" line="155" />
       <source>! Unknown command: {0}
 </source>
       <translation>! Bilinmeyen Komut: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="176" />
+      <location filename="../Cooperation/ChatWidget.py" line="178" />
       <source>* {0} has joined.
 </source>
       <translation>*{0} katıldı.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="193" />
+      <location filename="../Cooperation/ChatWidget.py" line="195" />
       <source>New User</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="194" />
+      <location filename="../Cooperation/ChatWidget.py" line="196" />
       <source>{0} has joined.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="217" />
+      <location filename="../Cooperation/ChatWidget.py" line="219" />
       <source>* {0} has left.
 </source>
       <translation>* {0}ayrıldı.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="226" />
+      <location filename="../Cooperation/ChatWidget.py" line="228" />
       <source>User Left</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="227" />
+      <location filename="../Cooperation/ChatWidget.py" line="229" />
       <source>{0} has left.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="255" />
+      <location filename="../Cooperation/ChatWidget.py" line="257" />
       <source>Message from &lt;{0}&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="330" />
+      <location filename="../Cooperation/ChatWidget.py" line="332" />
       <source>Stop Server</source>
       <translation>Sunucuyu durdur</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="336" />
+      <location filename="../Cooperation/ChatWidget.py" line="338" />
       <source>! Server Error: {0}
 </source>
       <translation>! Sunucu Hatası: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="347" />
+      <location filename="../Cooperation/ChatWidget.py" line="349" />
       <source>Disconnect</source>
       <translation>Bağlantı kesildi</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="351" />
+      <location filename="../Cooperation/ChatWidget.py" line="353" />
       <source>Connect</source>
       <translation>Bağlantı</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="515" />
+      <location filename="../Cooperation/ChatWidget.py" line="517" />
       <source>Copy</source>
       <translation>Kopyala</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="519" />
+      <location filename="../Cooperation/ChatWidget.py" line="521" />
       <source>Cut all</source>
       <translation>Hepsini kopar</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="522" />
+      <location filename="../Cooperation/ChatWidget.py" line="524" />
       <source>Copy all</source>
       <translation>Hepsini kopyala</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="530" />
+      <location filename="../Cooperation/ChatWidget.py" line="532" />
       <source>Save</source>
       <translation>Kaydet</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="588" />
-      <location filename="../Cooperation/ChatWidget.py" line="573" />
+      <location filename="../Cooperation/ChatWidget.py" line="590" />
+      <location filename="../Cooperation/ChatWidget.py" line="575" />
       <source>Save Chat</source>
       <translation>Sohbeti kaydediniz</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="575" />
+      <location filename="../Cooperation/ChatWidget.py" line="577" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation>Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="589" />
+      <location filename="../Cooperation/ChatWidget.py" line="591" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="604" />
+      <location filename="../Cooperation/ChatWidget.py" line="606" />
       <source>Error saving Chat</source>
       <translation>Sohbeti kaydederken hata</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="605" />
+      <location filename="../Cooperation/ChatWidget.py" line="607" />
       <source>&lt;p&gt;The chat contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Konuşma içeriği &lt;b&gt;{0}&lt;/b&gt; ne yazılamıyor&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="644" />
+      <location filename="../Cooperation/ChatWidget.py" line="646" />
       <source>Kick User</source>
       <translation>Kullanıcı geri at</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="648" />
+      <location filename="../Cooperation/ChatWidget.py" line="650" />
       <source>Ban User</source>
       <translation>Kullanıcıyı yasakla</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="652" />
+      <location filename="../Cooperation/ChatWidget.py" line="654" />
       <source>Ban and Kick User</source>
       <translation>Kullanıcıyı hem yasakla hemde geri at</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="683" />
+      <location filename="../Cooperation/ChatWidget.py" line="685" />
       <source>* {0} has been kicked.
 </source>
       <translation>* {0} geri atıldı.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="700" />
+      <location filename="../Cooperation/ChatWidget.py" line="702" />
       <source>* {0} has been banned.
 </source>
       <translation>* {0} yasaklandı.
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="717" />
+      <location filename="../Cooperation/ChatWidget.py" line="719" />
       <source>* {0} has been banned and kicked.
 </source>
       <translation>* {0} hem yasaklandı hem de geri atıldı.
@@ -4890,32 +4890,32 @@
   <context>
     <name>CodeDocumentationViewer</name>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="220" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="222" />
       <source>Code Info Provider:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="238" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="240" />
       <source>Select the code info provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="239" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="241" />
       <source>&lt;disabled&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="420" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="422" />
       <source>No documentation available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="441" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="443" />
       <source>No source code documentation provider has been registered. This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="449" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="451" />
       <source>This function has been disabled.</source>
       <translation type="unfinished" />
     </message>
@@ -8824,10 +8824,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="608" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="505" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="467" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="455" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="604" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="501" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="463" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="451" />
       <location filename="../Project/CreateDialogCodeDialog.py" line="419" />
       <source>Code Generation</source>
       <translation>Kod üretici</translation>
@@ -8838,22 +8838,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="456" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="452" />
       <source>&lt;p&gt;No code template file available for project type "{0}".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="468" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="464" />
       <source>&lt;p&gt;Could not open the code template file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Kod şablon dosyası "{0}" açılamıyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="506" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="502" />
       <source>&lt;p&gt;Could not open the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Kaynak dosyası açılamıyor "{0}".&lt;/p&gt;&lt;p&gt;.Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="609" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="605" />
       <source>&lt;p&gt;Could not write the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Kaynak dosyası "{0}"yazılamıyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
@@ -9358,676 +9358,676 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="207" />
+      <location filename="../Debugger/DebugUI.py" line="210" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="234" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="237" />
       <source>Run Script</source>
       <translation>Betiği Çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="236" />
+      <location filename="../Debugger/DebugUI.py" line="239" />
       <source>&amp;Run Script...</source>
       <translation>Betiiğ Çalıştı&amp;r...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="242" />
+      <location filename="../Debugger/DebugUI.py" line="245" />
       <source>Run the current Script</source>
       <translation>Geçerli betiği çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="244" />
+      <location filename="../Debugger/DebugUI.py" line="247" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Betiği Çalıştır&lt;/b&gt;&lt;p&gt; KOmut satırı argumanlarını ayarla ve hata ayıklayıcının dışında çalıştır. Eğer dosyada kaydedilmemiş değişiklikler varsa önce kaydedilmelidir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2386" />
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="255" />
+      <location filename="../Debugger/DebugUI.py" line="2389" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="258" />
       <source>Run Project</source>
       <translation>Projeyi Çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="257" />
+      <location filename="../Debugger/DebugUI.py" line="260" />
       <source>Run &amp;Project...</source>
       <translation>&amp;Projeyi Çalıştır...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="263" />
+      <location filename="../Debugger/DebugUI.py" line="266" />
       <source>Run the current Project</source>
       <translation>Geçerli Projeyi Çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="265" />
+      <location filename="../Debugger/DebugUI.py" line="268" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="277" />
+      <location filename="../Debugger/DebugUI.py" line="280" />
       <source>Coverage run of Script</source>
       <translation>Betik kapsamını çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="279" />
+      <location filename="../Debugger/DebugUI.py" line="282" />
       <source>Coverage run of Script...</source>
       <translation>Betik kapsamını çalıştır...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="286" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="300" />
+      <location filename="../Debugger/DebugUI.py" line="303" />
       <source>Coverage run of Project</source>
       <translation>Proje kapsamını çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="302" />
+      <location filename="../Debugger/DebugUI.py" line="305" />
       <source>Coverage run of Project...</source>
       <translation>Proje kapsamını çalıştır...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="309" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="324" />
+      <location filename="../Debugger/DebugUI.py" line="327" />
       <source>Profile Script</source>
       <translation>Betik Kesiti</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="326" />
+      <location filename="../Debugger/DebugUI.py" line="329" />
       <source>Profile Script...</source>
       <translation>Betik Kesiti...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="332" />
+      <location filename="../Debugger/DebugUI.py" line="335" />
       <source>Profile the current Script</source>
       <translation>Geçerli Betiğin Kesiti</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="334" />
+      <location filename="../Debugger/DebugUI.py" line="337" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Betik Kesiti&lt;/b&gt;&lt;p&gt;Komut satırından gerekli argumanları giriniz ve betiğin kesitini alınız Eğer dosyada kaydedilmemiş değişiklikler varsa önce kaydedilmelidir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="344" />
+      <location filename="../Debugger/DebugUI.py" line="347" />
       <source>Profile Project</source>
       <translation>Proje Kesiti</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="346" />
+      <location filename="../Debugger/DebugUI.py" line="349" />
       <source>Profile Project...</source>
       <translation>Proje Kesiti...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="352" />
+      <location filename="../Debugger/DebugUI.py" line="355" />
       <source>Profile the current Project</source>
       <translation>Geçerli Projenin Kesiti</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="354" />
+      <location filename="../Debugger/DebugUI.py" line="357" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="365" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="368" />
       <source>Debug Script</source>
       <translation>Betik Hata Ayıklama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="367" />
+      <location filename="../Debugger/DebugUI.py" line="370" />
       <source>&amp;Debug Script...</source>
       <translation>Be&amp;tik Hata Ayıklama...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="373" />
+      <location filename="../Debugger/DebugUI.py" line="376" />
       <source>Debug the current Script</source>
       <translation>Geçerli betikte hata ayıklama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="375" />
+      <location filename="../Debugger/DebugUI.py" line="378" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2579" />
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="387" />
+      <location filename="../Debugger/DebugUI.py" line="2582" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="390" />
       <source>Debug Project</source>
       <translation>Proje Hata Ayıklama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="389" />
+      <location filename="../Debugger/DebugUI.py" line="392" />
       <source>Debug &amp;Project...</source>
       <translation>&amp;Proje Hata Ayıklama...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="395" />
+      <location filename="../Debugger/DebugUI.py" line="398" />
       <source>Debug the current Project</source>
       <translation>Geçeli Projede Hata Ayıklama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="397" />
+      <location filename="../Debugger/DebugUI.py" line="400" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2895" />
-      <location filename="../Debugger/DebugUI.py" line="411" />
-      <location filename="../Debugger/DebugUI.py" line="409" />
+      <location filename="../Debugger/DebugUI.py" line="2898" />
+      <location filename="../Debugger/DebugUI.py" line="414" />
+      <location filename="../Debugger/DebugUI.py" line="412" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="417" />
+      <location filename="../Debugger/DebugUI.py" line="420" />
       <source>Restart the last debugged script</source>
       <translation>En son hata ayıklama yapılan betiği yeniden çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="419" />
+      <location filename="../Debugger/DebugUI.py" line="422" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="628" />
-      <location filename="../Debugger/DebugUI.py" line="433" />
-      <location filename="../Debugger/DebugUI.py" line="431" />
+      <location filename="../Debugger/DebugUI.py" line="631" />
+      <location filename="../Debugger/DebugUI.py" line="436" />
+      <location filename="../Debugger/DebugUI.py" line="434" />
       <source>Stop</source>
       <translation>Dur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="439" />
+      <location filename="../Debugger/DebugUI.py" line="442" />
       <source>Stop the running script.</source>
       <translation>Çalışan betiği durdur.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="441" />
+      <location filename="../Debugger/DebugUI.py" line="444" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="452" />
+      <location filename="../Debugger/DebugUI.py" line="455" />
       <source>Continue</source>
       <translation>Devam et</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="454" />
+      <location filename="../Debugger/DebugUI.py" line="457" />
       <source>&amp;Continue</source>
       <translation>&amp;Devam et</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="460" />
+      <location filename="../Debugger/DebugUI.py" line="463" />
       <source>Continue running the program from the current line</source>
       <translation>Geçerli satırdan itibaren programı çalıştırmaya devam et</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="462" />
+      <location filename="../Debugger/DebugUI.py" line="465" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Devam Et&lt;/b&gt;&lt;p&gt;Geçerli satırdan itibaren programı çalıştırmaya devam et. Proğram sonlandırıldığında yada bir bekleme nokatsına ulaştığında durur.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="473" />
+      <location filename="../Debugger/DebugUI.py" line="476" />
       <source>Continue to Cursor</source>
       <translation>İmlece kadar devam et</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="475" />
+      <location filename="../Debugger/DebugUI.py" line="478" />
       <source>Continue &amp;To Cursor</source>
       <translation>İmlece Kadar Devam E&amp;t</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="482" />
+      <location filename="../Debugger/DebugUI.py" line="485" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Geçerli satırdan geçerli imleç pozisyonuna kadar programı çalıştırmaya devam et</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="488" />
+      <location filename="../Debugger/DebugUI.py" line="491" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;İmlece Kadar Devam Et&lt;/b&gt;&lt;p&gt;Geçerli satırdan geçerli imleç pozisyonuna kadar programı çalıştırmaya devam et.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="498" />
+      <location filename="../Debugger/DebugUI.py" line="501" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="500" />
+      <location filename="../Debugger/DebugUI.py" line="503" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="507" />
+      <location filename="../Debugger/DebugUI.py" line="510" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="513" />
+      <location filename="../Debugger/DebugUI.py" line="516" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="524" />
+      <location filename="../Debugger/DebugUI.py" line="527" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="526" />
+      <location filename="../Debugger/DebugUI.py" line="529" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="533" />
+      <location filename="../Debugger/DebugUI.py" line="536" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="539" />
+      <location filename="../Debugger/DebugUI.py" line="542" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="553" />
+      <location filename="../Debugger/DebugUI.py" line="556" />
       <source>Single Step</source>
       <translation>Tekli Adım</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="555" />
+      <location filename="../Debugger/DebugUI.py" line="558" />
       <source>Sin&amp;gle Step</source>
       <translation>Tek&amp;li Adım</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="561" />
+      <location filename="../Debugger/DebugUI.py" line="564" />
       <source>Execute a single Python statement</source>
       <translation>Tekbir Python ifadesini girçekleştir</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="563" />
+      <location filename="../Debugger/DebugUI.py" line="566" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="575" />
+      <location filename="../Debugger/DebugUI.py" line="578" />
       <source>Step Over</source>
       <translation>Sona Kadar Adımla</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="577" />
+      <location filename="../Debugger/DebugUI.py" line="580" />
       <source>Step &amp;Over</source>
       <translation>S&amp;ona Kadar Adımla</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="584" />
+      <location filename="../Debugger/DebugUI.py" line="587" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="590" />
+      <location filename="../Debugger/DebugUI.py" line="593" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="603" />
+      <location filename="../Debugger/DebugUI.py" line="606" />
       <source>Step Out</source>
       <translation>Adımlamadan Çık</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="605" />
+      <location filename="../Debugger/DebugUI.py" line="608" />
       <source>Step Ou&amp;t</source>
       <translation>Adımdan Çı&amp;k</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="612" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="630" />
+      <location filename="../Debugger/DebugUI.py" line="633" />
       <source>&amp;Stop</source>
       <translation>D&amp;ur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="636" />
+      <location filename="../Debugger/DebugUI.py" line="639" />
       <source>Stop debugging</source>
       <translation>Hata ayıklamayı durdur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="638" />
+      <location filename="../Debugger/DebugUI.py" line="641" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dur&lt;/b&gt;&lt;p&gt;Çalışan hata ayıklama oturumunu durdur.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="644" />
+      <location filename="../Debugger/DebugUI.py" line="647" />
       <source>Variables Type Filter</source>
       <translation>Değişken Tipi Süzgeçi</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="645" />
+      <location filename="../Debugger/DebugUI.py" line="648" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>Değişken Tipi Süzgeçi&amp;b...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="651" />
+      <location filename="../Debugger/DebugUI.py" line="654" />
       <source>Configure variables type filter</source>
       <translation>Değişken Tipi Süzgeçi Yapılandır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="653" />
+      <location filename="../Debugger/DebugUI.py" line="656" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="664" />
+      <location filename="../Debugger/DebugUI.py" line="667" />
       <source>Exceptions Filter</source>
       <translation>İstisnai Süzgeç</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="665" />
+      <location filename="../Debugger/DebugUI.py" line="668" />
       <source>&amp;Exceptions Filter...</source>
       <translation>İstisnai Süz&amp;eç...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="671" />
+      <location filename="../Debugger/DebugUI.py" line="674" />
       <source>Configure exceptions filter</source>
       <translation>İstisnai Süzgeçi ayarla</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="673" />
+      <location filename="../Debugger/DebugUI.py" line="676" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="685" />
+      <location filename="../Debugger/DebugUI.py" line="688" />
       <source>Ignored Exceptions</source>
       <translation>Yoksayılan İstisnalar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="686" />
+      <location filename="../Debugger/DebugUI.py" line="689" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>Yoksayılan İst&amp;isnalar...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="692" />
+      <location filename="../Debugger/DebugUI.py" line="695" />
       <source>Configure ignored exceptions</source>
       <translation>Yoksayılan istisnaları ayarla</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="694" />
+      <location filename="../Debugger/DebugUI.py" line="697" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Yoksayılan İstisnalar&lt;/b&gt;&lt;p&gt;Yoksayılan istisnaları ayarla.hata ayıklama süreci içinde vurgulanan istisnaları listeleme.&lt;/p&gt;&lt;p&gt;Lütfen dikkat, ele alınmamış istisnalar yoksayılamaz.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="716" />
-      <location filename="../Debugger/DebugUI.py" line="710" />
-      <location filename="../Debugger/DebugUI.py" line="708" />
+      <location filename="../Debugger/DebugUI.py" line="719" />
+      <location filename="../Debugger/DebugUI.py" line="713" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Toggle Breakpoint</source>
       <translation>Beklemenoktası Açkapa</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="714" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="718" />
+      <location filename="../Debugger/DebugUI.py" line="721" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Açkapa Beklemenoktası&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicinin geçerli satırırında bir bekleme noktasını açkapa.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="736" />
-      <location filename="../Debugger/DebugUI.py" line="728" />
+      <location filename="../Debugger/DebugUI.py" line="739" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Edit Breakpoint</source>
       <translation>Bekleme Noktasını Düzenle</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="730" />
+      <location filename="../Debugger/DebugUI.py" line="733" />
       <source>Edit Breakpoint...</source>
       <translation>Bekleme Noktasını Düzenle...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="734" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="738" />
+      <location filename="../Debugger/DebugUI.py" line="741" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="756" />
-      <location filename="../Debugger/DebugUI.py" line="750" />
-      <location filename="../Debugger/DebugUI.py" line="748" />
+      <location filename="../Debugger/DebugUI.py" line="759" />
+      <location filename="../Debugger/DebugUI.py" line="753" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Next Breakpoint</source>
       <translation>Sonraki Beklemenoktası</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="754" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="758" />
+      <location filename="../Debugger/DebugUI.py" line="761" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="775" />
-      <location filename="../Debugger/DebugUI.py" line="769" />
-      <location filename="../Debugger/DebugUI.py" line="767" />
+      <location filename="../Debugger/DebugUI.py" line="778" />
+      <location filename="../Debugger/DebugUI.py" line="772" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Previous Breakpoint</source>
       <translation>Önceki Beklemenoktası</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="773" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="777" />
+      <location filename="../Debugger/DebugUI.py" line="780" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="793" />
-      <location filename="../Debugger/DebugUI.py" line="787" />
-      <location filename="../Debugger/DebugUI.py" line="786" />
+      <location filename="../Debugger/DebugUI.py" line="796" />
+      <location filename="../Debugger/DebugUI.py" line="790" />
+      <location filename="../Debugger/DebugUI.py" line="789" />
       <source>Clear Breakpoints</source>
       <translation>Beklemenoktalarını Temizle</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="795" />
+      <location filename="../Debugger/DebugUI.py" line="798" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="819" />
+      <location filename="../Debugger/DebugUI.py" line="822" />
       <source>&amp;Debug</source>
       <translation>Hata Ayık&amp;lama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="821" />
+      <location filename="../Debugger/DebugUI.py" line="824" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="823" />
+      <location filename="../Debugger/DebugUI.py" line="826" />
       <source>&amp;Breakpoints</source>
       <translation>&amp;Durmanoktası</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="866" />
-      <location filename="../Debugger/DebugUI.py" line="864" />
+      <location filename="../Debugger/DebugUI.py" line="869" />
+      <location filename="../Debugger/DebugUI.py" line="867" />
       <source>Start</source>
       <translation>Başla</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="879" />
-      <location filename="../Debugger/DebugUI.py" line="877" />
+      <location filename="../Debugger/DebugUI.py" line="882" />
+      <location filename="../Debugger/DebugUI.py" line="880" />
       <source>Debug</source>
       <translation>Hata Ayıklama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1342" />
+      <location filename="../Debugger/DebugUI.py" line="1345" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1348" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1353" />
+      <location filename="../Debugger/DebugUI.py" line="1356" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1365" />
+      <location filename="../Debugger/DebugUI.py" line="1368" />
       <source>Program terminated</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1401" />
+      <location filename="../Debugger/DebugUI.py" line="1404" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>Uygulama belirtilmemiş sözdizimi hatalarını belirlemeye başladı.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1421" />
+      <location filename="../Debugger/DebugUI.py" line="1424" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1449" />
+      <location filename="../Debugger/DebugUI.py" line="1452" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1498" />
+      <location filename="../Debugger/DebugUI.py" line="1501" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1516" />
+      <location filename="../Debugger/DebugUI.py" line="1519" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1532" />
+      <location filename="../Debugger/DebugUI.py" line="1535" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1594" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1609" />
+      <location filename="../Debugger/DebugUI.py" line="1612" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>Hata ayıklanmaya başlanan program beklenmeyen bir şekilde sonlandı.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1670" />
+      <location filename="../Debugger/DebugUI.py" line="1673" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1717" />
+      <location filename="../Debugger/DebugUI.py" line="1720" />
       <source>Breakpoint Condition Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1718" />
+      <location filename="../Debugger/DebugUI.py" line="1721" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1779" />
+      <location filename="../Debugger/DebugUI.py" line="1782" />
       <source>Watch Expression Error</source>
       <translation>Gözetleme İfade hatası</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1780" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1810" />
+      <location filename="../Debugger/DebugUI.py" line="1813" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1815" />
+      <location filename="../Debugger/DebugUI.py" line="1818" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1821" />
+      <location filename="../Debugger/DebugUI.py" line="1824" />
       <source>Watch expression already exists</source>
       <translation>Hali hazırda gözetleme ifadesi var</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1986" />
-      <location filename="../Debugger/DebugUI.py" line="1977" />
+      <location filename="../Debugger/DebugUI.py" line="1989" />
+      <location filename="../Debugger/DebugUI.py" line="1980" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1979" />
+      <location filename="../Debugger/DebugUI.py" line="1982" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2387" />
-      <location filename="../Debugger/DebugUI.py" line="2189" />
-      <location filename="../Debugger/DebugUI.py" line="1987" />
+      <location filename="../Debugger/DebugUI.py" line="2390" />
+      <location filename="../Debugger/DebugUI.py" line="2192" />
+      <location filename="../Debugger/DebugUI.py" line="1990" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2188" />
-      <location filename="../Debugger/DebugUI.py" line="2179" />
+      <location filename="../Debugger/DebugUI.py" line="2191" />
+      <location filename="../Debugger/DebugUI.py" line="2182" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2181" />
+      <location filename="../Debugger/DebugUI.py" line="2184" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2580" />
+      <location filename="../Debugger/DebugUI.py" line="2583" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3252" />
+      <location filename="../Debugger/DebugUI.py" line="3255" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -33427,7 +33427,6 @@
   <context>
     <name>HelpDocumentationPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="64" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="60" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="56" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="52" />
@@ -33554,21 +33553,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>Enter the PySide2 documentation directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
@@ -33984,29 +33968,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="453" />
@@ -34015,76 +33989,79 @@
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="454" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="455" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="512" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="514" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="513" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="701" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="700" />
       <source>Help Engine</source>
       <translation type="unfinished">Yardım Motoru</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="725" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="724" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">Dökümanlara bakılıyor...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="736" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="735" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">OtHelp Dökümanlları Yönetimi</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="764" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="763" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Belgeyi Yeniden İindexle</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="769" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="768" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="862" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="842" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="861" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="841" />
       <source>Clear History</source>
       <translation type="unfinished">Geçmişi Sil</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="966" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="965" />
       <source>Updating search index</source>
       <translation type="unfinished">Arama index yenileniyor</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1024" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1023" />
       <source>Filtered by: </source>
       <translation type="unfinished">Süzülen: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1060" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1054" />
       <source>Unfiltered</source>
       <translation type="unfinished">Süzülmemiş</translation>
     </message>
+    <message>
+      <source>Qt5 Documentation</source>
+      <translation type="vanished">Qt4 Belgeleri {5 ?}</translation>
+    </message>
+    <message>
+      <source>PyQt5 Documentation</source>
+      <translation type="vanished">PyQt4 Belgeleri {5 ?}</translation>
+    </message>
   </context>
   <context>
     <name>HelpViewersPage</name>
@@ -52236,7 +52213,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="415" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="416" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="221" />
       <source>No connection to Internet.</source>
       <translation type="unfinished" />
@@ -52272,24 +52249,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="435" />
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="411" />
-      <source>Error downloading dictionary file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="436" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="412" />
+      <source>Error downloading dictionary file</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="437" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="413" />
       <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="450" />
-      <source>Error downloading dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="451" />
+      <source>Error downloading dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="452" />
       <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -54164,7 +54141,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="459" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="460" />
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
@@ -54180,25 +54157,25 @@
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="192" />
       <source>%n supported serial device(s) detected.</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="205" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="206" />
       <source>{0} - {1} ({2})</source>
       <comment>board name, description, port name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="228" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="229" />
       <source>No supported serial devices detected.</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="233" />
       <source>
 %n unknown device(s) for manual selection.</source>
       <translation type="unfinished">
@@ -54207,17 +54184,17 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="239" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="240" />
       <source>Manual Selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="250" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="251" />
       <source>WebREPL (manual)</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="270" />
       <source>
 %n WebREPL connection(s) defined.</source>
       <translation type="unfinished">
@@ -54225,39 +54202,39 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="329" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="300" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
       <source>Unknown MicroPython Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="302" />
       <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href="mailto:{1}"&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="313" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="314" />
       <source>{0} (0x{1:04x}/0x{2:04x})</source>
       <comment>description, VID, PID</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="331" />
       <source>Would you like to add them to the list of manually configured devices?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="454" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="455" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="491" />
-      <source>No device attached</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="492" />
+      <source>No device attached</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="493" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -54266,353 +54243,353 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="523" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="731" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="718" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="720" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="726" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1198" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1190" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="729" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="730" />
       <source>unknown</source>
       <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="772" />
-      <source>Run Script</source>
-      <translation type="unfinished">Betiği Çalıştır</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
-      <source>There is no editor open. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
-      <source>The current editor does not contain a script. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
+      <source>Run Script</source>
+      <translation type="unfinished">Betiği Çalıştır</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="774" />
+      <source>There is no editor open. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="783" />
+      <source>The current editor does not contain a script. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="792" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="827" />
-      <source>Start Chart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="828" />
+      <source>Start Chart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="829" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="843" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="844" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="860" />
-      <source>Unsaved Chart Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="861" />
+      <source>Unsaved Chart Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="862" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="909" />
-      <source>Start File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="910" />
+      <source>Start File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="911" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="930" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="931" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1017" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1018" />
       <source>Downloads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
       <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1067" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Implementation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1071" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1079" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1080" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Local Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1083" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1084" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1087" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1088" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1691" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1099" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1091" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1092" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1730" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1727" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1095" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1096" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1503" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1105" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1504" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1106" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1529" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1520" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1109" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1530" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1110" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1130" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1131" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1137" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1140" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1141" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1150" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Configure</source>
       <translation type="unfinished">Yapılandırma</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1153" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1154" />
       <source>Quit</source>
       <translation type="unfinished">Çık</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1162" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1163" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1173" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
-      <source>Device Version Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1174" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1170" />
+      <source>Device Version Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1175" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1204" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1205" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1220" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1211" />
-      <source>Device Implementation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
-      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
+      <source>Device Implementation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1213" />
+      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1296" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1297" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1304" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1305" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1320" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1321" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1332" />
-      <source>Local Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1333" />
+      <source>Local Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1334" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1374" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1357" />
-      <source>Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
-      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1375" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
+      <source>Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1359" />
+      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1376" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1399" />
-      <source>Error handling device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1400" />
+      <source>Error handling device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1401" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1442" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1443" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1468" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1469" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Python Dosyaları (*.py);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1478" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1479" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1488" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1489" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1522" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1613" />
-      <source>Add Unknown Devices</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1614" />
+      <source>Add Unknown Devices</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1664" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1665" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1716" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1717" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -54620,17 +54597,17 @@
   <context>
     <name>MicroPythonWindow</name>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="81" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="83" />
       <source>MicroPython / CircuitPython Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
@@ -59803,164 +59780,164 @@
   <context>
     <name>Pip</name>
     <message>
-      <location filename="../PipInterface/Pip.py" line="157" />
+      <location filename="../PipInterface/Pip.py" line="161" />
       <source>python exited with an error ({0}).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="166" />
+      <location filename="../PipInterface/Pip.py" line="170" />
       <source>python did not finish within 30 seconds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="168" />
+      <location filename="../PipInterface/Pip.py" line="172" />
       <source>python could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="229" />
+      <location filename="../PipInterface/Pip.py" line="233" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="254" />
+      <location filename="../PipInterface/Pip.py" line="258" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="255" />
+      <location filename="../PipInterface/Pip.py" line="259" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="308" />
+      <location filename="../PipInterface/Pip.py" line="312" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="355" />
+      <location filename="../PipInterface/Pip.py" line="359" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="487" />
-      <location filename="../PipInterface/Pip.py" line="469" />
+      <location filename="../PipInterface/Pip.py" line="491" />
+      <location filename="../PipInterface/Pip.py" line="473" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="470" />
+      <location filename="../PipInterface/Pip.py" line="474" />
       <source>There are no packages except 'eric-ide' or 'PyQt6' left for upgrade.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="533" />
+      <location filename="../PipInterface/Pip.py" line="537" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="564" />
+      <location filename="../PipInterface/Pip.py" line="568" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="586" />
+      <location filename="../PipInterface/Pip.py" line="590" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="621" />
-      <location filename="../PipInterface/Pip.py" line="611" />
+      <location filename="../PipInterface/Pip.py" line="625" />
+      <location filename="../PipInterface/Pip.py" line="615" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="612" />
+      <location filename="../PipInterface/Pip.py" line="753" />
+      <location filename="../PipInterface/Pip.py" line="616" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="622" />
+      <location filename="../PipInterface/Pip.py" line="626" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="642" />
+      <location filename="../PipInterface/Pip.py" line="646" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="776" />
-      <location filename="../PipInterface/Pip.py" line="702" />
-      <location filename="../PipInterface/Pip.py" line="672" />
-      <location filename="../PipInterface/Pip.py" line="663" />
+      <location filename="../PipInterface/Pip.py" line="780" />
+      <location filename="../PipInterface/Pip.py" line="706" />
+      <location filename="../PipInterface/Pip.py" line="676" />
+      <location filename="../PipInterface/Pip.py" line="667" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
-      <location filename="../PipInterface/Pip.py" line="703" />
-      <location filename="../PipInterface/Pip.py" line="664" />
+      <location filename="../PipInterface/Pip.py" line="781" />
+      <location filename="../PipInterface/Pip.py" line="707" />
+      <location filename="../PipInterface/Pip.py" line="668" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="720" />
+      <location filename="../PipInterface/Pip.py" line="724" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="759" />
-      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="763" />
+      <location filename="../PipInterface/Pip.py" line="752" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="760" />
+      <location filename="../PipInterface/Pip.py" line="764" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="787" />
+      <location filename="../PipInterface/Pip.py" line="791" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1198" />
+      <location filename="../PipInterface/Pip.py" line="1203" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1224" />
-      <location filename="../PipInterface/Pip.py" line="1215" />
+      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1220" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1216" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1248" />
-      <location filename="../PipInterface/Pip.py" line="1241" />
+      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1246" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1242" />
+      <location filename="../PipInterface/Pip.py" line="1247" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1273" />
-      <location filename="../PipInterface/Pip.py" line="1265" />
+      <location filename="../PipInterface/Pip.py" line="1278" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1266" />
+      <location filename="../PipInterface/Pip.py" line="1271" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -60880,205 +60857,205 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="737" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="731" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
       <source>Cleanup Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="733" />
       <source>The environment cleanup was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="739" />
       <source>Some leftover package directories could not been removed. Delete them manually.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="834" />
-      <source>Search PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="835" />
+      <source>Search PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="836" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="854" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="855" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="856" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="857" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="860" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="862" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="863" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="869" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="870" />
       <source>Install</source>
       <translation type="unfinished">Kur</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1048" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="871" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1049" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="872" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="874" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="875" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="877" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="878" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="884" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="885" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="886" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="887" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="889" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="890" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="892" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="893" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="896" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="897" />
       <source>Install from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="900" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="901" />
       <source>Uninstall from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="905" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="906" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="912" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="913" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="914" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="915" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="917" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="918" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="920" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="921" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="923" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="924" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="940" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="941" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="944" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="945" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="948" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="949" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="952" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="953" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="959" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="960" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="962" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="963" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="967" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="968" />
       <source>Configure...</source>
       <translation type="unfinished">Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1211" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1198" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1187" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1212" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1199" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1188" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1213" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1200" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1189" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1421" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1422" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1442" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1443" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1445" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1446" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1585" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1560" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1586" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1561" />
       <source>unknown</source>
       <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1582" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1583" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
@@ -61105,7 +61082,7 @@
   <context>
     <name>PipPackagesWindow</name>
     <message>
-      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <location filename="../PipInterface/PipPackagesWindow.py" line="60" />
       <source>Manage Packages</source>
       <translation type="unfinished" />
     </message>
@@ -61622,52 +61599,52 @@
   <context>
     <name>PluginManager</name>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="230" />
+      <location filename="../PluginManager/PluginManager.py" line="232" />
       <source>Could not create a package for {0}.</source>
       <translation>{0} için paket üretilemiyor.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="262" />
+      <location filename="../PluginManager/PluginManager.py" line="264" />
       <source>The internal plugin directory &lt;b&gt;{0}&lt;/b&gt; does not exits.</source>
       <translation>Dahili eklenti dizini &lt;b&gt;{0}&lt;/b&gt; mevcut değil.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="439" />
+      <location filename="../PluginManager/PluginManager.py" line="441" />
       <source>Module is missing the 'autoactivate' attribute.</source>
       <translation>Modülün 'otomatikaktileşme' niteliği eksik.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="450" />
+      <location filename="../PluginManager/PluginManager.py" line="452" />
       <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source>
       <translation>Modülün 'eklentitipi' ve/veya 'eklentiTipadı' niteliği eksik.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="478" />
+      <location filename="../PluginManager/PluginManager.py" line="480" />
       <source>Module failed to load. Error: {0}</source>
       <translation>Modül yüklemede başarısızlık. Hata: {0}</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="661" />
+      <location filename="../PluginManager/PluginManager.py" line="663" />
       <source>Incompatible plugin activation method.</source>
       <translation>Eklenti etkinleştirme yöntemi uyuşmuyor.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1269" />
+      <location filename="../PluginManager/PluginManager.py" line="1271" />
       <source>Plugin Manager Error</source>
       <translation>Eklenti Yöneticisi Hatası</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1270" />
+      <location filename="../PluginManager/PluginManager.py" line="1272" />
       <source>&lt;p&gt;The plugin download directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Please configure it via the configuration dialog.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;eklenti dizini &lt;b&gt;{0}&lt;/b&gt; oluşturulamıyor. Lütfen ayarlama diyaloğu aracılığı ile düzenleyin.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1358" />
+      <location filename="../PluginManager/PluginManager.py" line="1360" />
       <source>Error downloading file</source>
       <translation type="unfinished">Dosya yüklenirken hata</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1359" />
+      <location filename="../PluginManager/PluginManager.py" line="1361" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -62552,18 +62529,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1911" />
+      <location filename="../Preferences/__init__.py" line="1891" />
       <source>Export Preferences</source>
       <translation>Seçenekleri Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1940" />
-      <location filename="../Preferences/__init__.py" line="1913" />
+      <location filename="../Preferences/__init__.py" line="1920" />
+      <location filename="../Preferences/__init__.py" line="1893" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1938" />
+      <location filename="../Preferences/__init__.py" line="1918" />
       <source>Import Preferences</source>
       <translation>Seçenekleri İçe Aktar</translation>
     </message>
@@ -63091,113 +63068,98 @@
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="204" />
-      <source>Translation Extractor (Python, PySide2)</source>
+      <source>Translation Extractor (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="213" />
-      <source>Forms Compiler (Python, PySide2)</source>
+      <source>Forms Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="222" />
-      <source>Resource Compiler (Python, PySide2)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="232" />
-      <source>Translation Extractor (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="241" />
-      <source>Forms Compiler (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="250" />
       <source>Resource Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="265" />
+      <location filename="../Preferences/ProgramsDialog.py" line="237" />
       <source>conda Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="275" />
+      <location filename="../Preferences/ProgramsDialog.py" line="247" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="527" />
-      <location filename="../Preferences/ProgramsDialog.py" line="524" />
-      <location filename="../Preferences/ProgramsDialog.py" line="508" />
-      <location filename="../Preferences/ProgramsDialog.py" line="378" />
-      <location filename="../Preferences/ProgramsDialog.py" line="311" />
-      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <location filename="../Preferences/ProgramsDialog.py" line="499" />
+      <location filename="../Preferences/ProgramsDialog.py" line="496" />
+      <location filename="../Preferences/ProgramsDialog.py" line="480" />
+      <location filename="../Preferences/ProgramsDialog.py" line="350" />
+      <location filename="../Preferences/ProgramsDialog.py" line="283" />
+      <location filename="../Preferences/ProgramsDialog.py" line="266" />
       <source>(unknown)</source>
       <translation>(bilinmeyen)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="298" />
+      <location filename="../Preferences/ProgramsDialog.py" line="270" />
       <source>Spell Checker - PyEnchant</source>
       <translation>Heceleme Kontrolü - PyEnchant</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="315" />
+      <location filename="../Preferences/ProgramsDialog.py" line="287" />
       <source>Source Highlighter - Pygments</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <source>MicroPython - MPY Cross Compiler</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="301" />
+      <source>MicroPython - ESP Tool</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="312" />
+      <source>MicroPython - PyBoard Flasher</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ProgramsDialog.py" line="322" />
-      <source>MicroPython - MPY Cross Compiler</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="329" />
-      <source>MicroPython - ESP Tool</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="340" />
-      <source>MicroPython - PyBoard Flasher</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="350" />
       <source>MicroPython - STLink Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="360" />
+      <location filename="../Preferences/ProgramsDialog.py" line="332" />
       <source>MicroPython - STLink Flasher</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="382" />
+      <location filename="../Preferences/ProgramsDialog.py" line="354" />
       <source>Code Assistant - Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="462" />
+      <location filename="../Preferences/ProgramsDialog.py" line="434" />
       <source>(not configured)</source>
       <translation>(ayarlanmadı)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="497" />
+      <location filename="../Preferences/ProgramsDialog.py" line="469" />
       <source>(module not found)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="530" />
+      <location filename="../Preferences/ProgramsDialog.py" line="502" />
       <source>(not executable)</source>
       <translation>(yürütülemez)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="576" />
-      <location filename="../Preferences/ProgramsDialog.py" line="544" />
-      <location filename="../Preferences/ProgramsDialog.py" line="542" />
+      <location filename="../Preferences/ProgramsDialog.py" line="548" />
+      <location filename="../Preferences/ProgramsDialog.py" line="516" />
+      <location filename="../Preferences/ProgramsDialog.py" line="514" />
       <source>(not found)</source>
       <translation>(bulunamadı)</translation>
     </message>
@@ -63256,379 +63218,369 @@
     </message>
     <message>
       <location filename="../Project/Project.py" line="362" />
-      <source>PySide2 GUI</source>
+      <source>PySide6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="363" />
-      <source>PySide2 Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="367" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="466" />
-      <location filename="../Project/Project.py" line="454" />
-      <location filename="../Project/Project.py" line="443" />
+      <location filename="../Project/Project.py" line="461" />
+      <location filename="../Project/Project.py" line="449" />
+      <location filename="../Project/Project.py" line="438" />
       <source>Registering Project Type</source>
       <translation>Kaydedilmiş Proje Türü</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="444" />
+      <location filename="../Project/Project.py" line="439" />
       <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="455" />
+      <location filename="../Project/Project.py" line="450" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="467" />
+      <location filename="../Project/Project.py" line="462" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="772" />
+      <location filename="../Project/Project.py" line="767" />
       <source>All Files (*)</source>
       <translation type="unfinished">Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1321" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1579" />
-      <location filename="../Project/Project.py" line="1553" />
-      <location filename="../Project/Project.py" line="1517" />
-      <location filename="../Project/Project.py" line="1435" />
-      <location filename="../Project/Project.py" line="1396" />
-      <location filename="../Project/Project.py" line="1371" />
-      <location filename="../Project/Project.py" line="1334" />
+      <location filename="../Project/Project.py" line="1567" />
+      <location filename="../Project/Project.py" line="1541" />
+      <location filename="../Project/Project.py" line="1505" />
+      <location filename="../Project/Project.py" line="1423" />
+      <location filename="../Project/Project.py" line="1384" />
+      <location filename="../Project/Project.py" line="1359" />
+      <location filename="../Project/Project.py" line="1322" />
       <source>Please save the project first.</source>
       <translation>Lütfen ilkolarak projeyi kaydedin.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1370" />
+      <location filename="../Project/Project.py" line="1358" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1412" />
-      <location filename="../Project/Project.py" line="1395" />
+      <location filename="../Project/Project.py" line="1400" />
+      <location filename="../Project/Project.py" line="1383" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1402" />
+      <location filename="../Project/Project.py" line="1390" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1421" />
+      <location filename="../Project/Project.py" line="1409" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1422" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1516" />
+      <location filename="../Project/Project.py" line="1504" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1552" />
+      <location filename="../Project/Project.py" line="1540" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1595" />
-      <location filename="../Project/Project.py" line="1578" />
+      <location filename="../Project/Project.py" line="1583" />
+      <location filename="../Project/Project.py" line="1566" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1585" />
+      <location filename="../Project/Project.py" line="1573" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1604" />
+      <location filename="../Project/Project.py" line="1592" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1777" />
+      <location filename="../Project/Project.py" line="1765" />
       <source>Add Language</source>
       <translation>Dil Ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1778" />
+      <location filename="../Project/Project.py" line="1766" />
       <source>You have to specify a translation pattern first.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1919" />
+      <location filename="../Project/Project.py" line="1905" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1946" />
-      <location filename="../Project/Project.py" line="1920" />
+      <location filename="../Project/Project.py" line="1932" />
+      <location filename="../Project/Project.py" line="1906" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1945" />
+      <location filename="../Project/Project.py" line="1931" />
       <source>Delete translation</source>
       <translation>Çeviriyi silin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2098" />
-      <location filename="../Project/Project.py" line="2081" />
+      <location filename="../Project/Project.py" line="2084" />
+      <location filename="../Project/Project.py" line="2067" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2200" />
-      <location filename="../Project/Project.py" line="2082" />
+      <location filename="../Project/Project.py" line="2186" />
+      <location filename="../Project/Project.py" line="2068" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2099" />
+      <location filename="../Project/Project.py" line="2085" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2097" />
       <source>Add file</source>
       <translation>Dosya ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2296" />
-      <location filename="../Project/Project.py" line="2112" />
+      <location filename="../Project/Project.py" line="2282" />
+      <location filename="../Project/Project.py" line="2098" />
       <source>The target directory must not be empty.</source>
       <translation>Hedef dizin boş olamaz.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2172" />
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2185" />
+      <location filename="../Project/Project.py" line="2158" />
+      <location filename="../Project/Project.py" line="2138" />
       <source>Add Directory</source>
       <translation type="unfinished">Dizin Ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2153" />
+      <location filename="../Project/Project.py" line="2139" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2173" />
+      <location filename="../Project/Project.py" line="2159" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2307" />
-      <location filename="../Project/Project.py" line="2295" />
+      <location filename="../Project/Project.py" line="2293" />
+      <location filename="../Project/Project.py" line="2281" />
       <source>Add directory</source>
       <translation>Dizin Ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2308" />
+      <location filename="../Project/Project.py" line="2294" />
       <source>The source directory must not be empty.</source>
       <translation>Kaynak dizin boş olamaz.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2422" />
-      <location filename="../Project/Project.py" line="2404" />
-      <location filename="../Project/Project.py" line="2388" />
-      <location filename="../Project/Project.py" line="2381" />
+      <location filename="../Project/Project.py" line="2408" />
+      <location filename="../Project/Project.py" line="2390" />
+      <location filename="../Project/Project.py" line="2374" />
+      <location filename="../Project/Project.py" line="2367" />
       <source>Rename File</source>
       <translation>Dosya adını Değiştir</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8089" />
-      <location filename="../Project/Project.py" line="3909" />
-      <location filename="../Project/Project.py" line="2405" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2423" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2690" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2691" />
-      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2719" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2720" />
-      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2853" />
-      <source>Create project directory</source>
-      <translation>Proje dizinin oluştur</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2854" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Proje dizini &lt;b&gt;{0}&lt;/b&gt; oluşturulamıyor.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3682" />
-      <location filename="../Project/Project.py" line="2954" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3683" />
-      <location filename="../Project/Project.py" line="2955" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2995" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2996" />
-      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3463" />
-      <location filename="../Project/Project.py" line="3020" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3464" />
-      <location filename="../Project/Project.py" line="3021" />
-      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3712" />
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3144" />
-      <location filename="../Project/Project.py" line="3112" />
-      <location filename="../Project/Project.py" line="3094" />
-      <location filename="../Project/Project.py" line="3069" />
-      <location filename="../Project/Project.py" line="3031" />
-      <source>New Project</source>
-      <translation>Yeni Proje</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3032" />
-      <source>Add existing files to the project?</source>
-      <translation>Var olan dosyalar projeye eklensin mi?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3713" />
-      <location filename="../Project/Project.py" line="3070" />
-      <source>Select Version Control System</source>
-      <translation>Sürüm Kontrol Sistemini Seç</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3174" />
-      <location filename="../Project/Project.py" line="3095" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>VCS komut seçeneklerini düzenlemek istiyor musunuz?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3113" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Proje dosyaları kaynak havuzuna aktarılacak mı?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3150" />
-      <location filename="../Project/Project.py" line="3139" />
-      <source>None</source>
-      <translation>Yok</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3145" />
-      <source>Select version control system for the project</source>
-      <translation>proje için sürüm kontrol sistemini seçin</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3356" />
-      <source>Translation Pattern</source>
-      <translation>Çeviri Kalıbı</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3357" />
-      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
-      <translation>Çeviri dosylarınınyol kalıbını giriniz (kullanılan '% dil %'dil kodu):</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3661" />
-      <source>Open Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="8075" />
-      <location filename="../Project/Project.py" line="8069" />
-      <location filename="../Project/Project.py" line="8059" />
-      <location filename="../Project/Project.py" line="3894" />
-      <location filename="../Project/Project.py" line="3884" />
-      <location filename="../Project/Project.py" line="3663" />
+      <location filename="../Project/Project.py" line="3895" />
+      <location filename="../Project/Project.py" line="2391" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2409" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2676" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2677" />
+      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2705" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2706" />
+      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2839" />
+      <source>Create project directory</source>
+      <translation>Proje dizinin oluştur</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2840" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Proje dizini &lt;b&gt;{0}&lt;/b&gt; oluşturulamıyor.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3668" />
+      <location filename="../Project/Project.py" line="2940" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3669" />
+      <location filename="../Project/Project.py" line="2941" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2981" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2982" />
+      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3449" />
+      <location filename="../Project/Project.py" line="3006" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3450" />
+      <location filename="../Project/Project.py" line="3007" />
+      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3698" />
+      <location filename="../Project/Project.py" line="3159" />
+      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3098" />
+      <location filename="../Project/Project.py" line="3080" />
+      <location filename="../Project/Project.py" line="3055" />
+      <location filename="../Project/Project.py" line="3017" />
+      <source>New Project</source>
+      <translation>Yeni Proje</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3018" />
+      <source>Add existing files to the project?</source>
+      <translation>Var olan dosyalar projeye eklensin mi?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3699" />
+      <location filename="../Project/Project.py" line="3056" />
+      <source>Select Version Control System</source>
+      <translation>Sürüm Kontrol Sistemini Seç</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3160" />
+      <location filename="../Project/Project.py" line="3081" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>VCS komut seçeneklerini düzenlemek istiyor musunuz?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3099" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Proje dosyaları kaynak havuzuna aktarılacak mı?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3125" />
+      <source>None</source>
+      <translation>Yok</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3131" />
+      <source>Select version control system for the project</source>
+      <translation>proje için sürüm kontrol sistemini seçin</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3342" />
+      <source>Translation Pattern</source>
+      <translation>Çeviri Kalıbı</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3343" />
+      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
+      <translation>Çeviri dosylarınınyol kalıbını giriniz (kullanılan '% dil %'dil kodu):</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3647" />
+      <source>Open Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8061" />
+      <location filename="../Project/Project.py" line="8055" />
+      <location filename="../Project/Project.py" line="8045" />
+      <location filename="../Project/Project.py" line="3880" />
+      <location filename="../Project/Project.py" line="3870" />
+      <location filename="../Project/Project.py" line="3649" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="3892" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3878" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3947" />
+      <location filename="../Project/Project.py" line="3933" />
       <source>Close Project</source>
       <translation>Projeyi Kapat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3948" />
+      <location filename="../Project/Project.py" line="3934" />
       <source>The current project has unsaved changes.</source>
       <translation>Geçerli projede kaydedilmemiş dosyalar var.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4134" />
+      <location filename="../Project/Project.py" line="4098" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4149" />
-      <location filename="../Project/Project.py" line="4113" />
+      <location filename="../Project/Project.py" line="4135" />
+      <location filename="../Project/Project.py" line="4099" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation type="unfinished">
         <numerusform />
@@ -63636,1268 +63588,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4793" />
       <source>New project</source>
       <translation>Yeni Proje</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4809" />
+      <location filename="../Project/Project.py" line="4795" />
       <source>&amp;New...</source>
       <translation>Ye&amp;ni...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4801" />
+      <source>Generate a new project</source>
+      <translation>Yeni bir proje üret</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4803" />
+      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Yeni...&lt;/b&gt;&lt;p&gt;Bu yeni bir proje için bilgilerin girileceği bir diyalog açar.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4813" />
+      <source>Open project</source>
+      <translation>Projeyi aç</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4815" />
-      <source>Generate a new project</source>
-      <translation>Yeni bir proje üret</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4817" />
-      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Yeni...&lt;/b&gt;&lt;p&gt;Bu yeni bir proje için bilgilerin girileceği bir diyalog açar.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4827" />
-      <source>Open project</source>
-      <translation>Projeyi aç</translation>
+      <source>&amp;Open...</source>
+      <translation>&amp;Aç...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4821" />
+      <source>Open an existing project</source>
+      <translation>Var olan bir projeyi aç</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4823" />
+      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Aç...&lt;/b&gt;&lt;p&gt;Bu varolan bir projeyi açar.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4829" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Aç...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4835" />
-      <source>Open an existing project</source>
-      <translation>Var olan bir projeyi aç</translation>
+      <source>Open remote project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4831" />
+      <source>Open (Remote)...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4837" />
-      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Aç...&lt;/b&gt;&lt;p&gt;Bu varolan bir projeyi açar.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4843" />
-      <source>Open remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4845" />
-      <source>Open (Remote)...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4853" />
+      <location filename="../Project/Project.py" line="4839" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4862" />
+      <location filename="../Project/Project.py" line="4848" />
       <source>Reload project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4850" />
+      <source>Re&amp;load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4856" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4858" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4864" />
-      <source>Re&amp;load</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4870" />
-      <source>Reload the current project</source>
-      <translation type="unfinished" />
+      <source>Close project</source>
+      <translation>Projeyi kapat</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4866" />
+      <source>&amp;Close</source>
+      <translation>&amp;Kapat</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4872" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4878" />
-      <source>Close project</source>
-      <translation>Projeyi kapat</translation>
+      <source>Close the current project</source>
+      <translation>Geçerli projeyi kapat</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4874" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Kapat&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi kapatır.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4880" />
-      <source>&amp;Close</source>
-      <translation>&amp;Kapat</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4886" />
-      <source>Close the current project</source>
-      <translation>Geçerli projeyi kapat</translation>
+      <source>Save project</source>
+      <translation>Projeyi kaydet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5177" />
+      <location filename="../Project/Project.py" line="4882" />
+      <source>&amp;Save</source>
+      <translation>&amp;Kaydet</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4888" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Kapat&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi kapatır.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4894" />
-      <source>Save project</source>
-      <translation>Projeyi kaydet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5191" />
-      <location filename="../Project/Project.py" line="4896" />
-      <source>&amp;Save</source>
-      <translation>&amp;Kaydet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Geçerli projeyi kapat</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4890" />
+      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi kaydeder.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
+      <source>Save project as</source>
+      <translation>projeyi farklı adda kaydet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4898" />
+      <source>Save &amp;as...</source>
+      <translation>Farklı k&amp;aydet...</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4904" />
-      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi kaydeder.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4910" />
-      <source>Save project as</source>
-      <translation>projeyi farklı adda kaydet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4912" />
-      <source>Save &amp;as...</source>
-      <translation>Farklı k&amp;aydet...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation>Geçerli projeyi yeni bir dosya olarak kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4920" />
+      <location filename="../Project/Project.py" line="4906" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Farklı kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi yeni bir dosya olarak kaydeder.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4929" />
+      <location filename="../Project/Project.py" line="4915" />
       <source>Save project as (Remote)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4931" />
+      <location filename="../Project/Project.py" line="4917" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4938" />
+      <location filename="../Project/Project.py" line="4924" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4927" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4957" />
+      <location filename="../Project/Project.py" line="4943" />
       <source>Add files to project</source>
       <translation>Projeye dosyalar ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4959" />
+      <location filename="../Project/Project.py" line="4945" />
       <source>Add &amp;files...</source>
       <translation>Dosyaları &amp;ekle...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4965" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>Add files to the current project</source>
       <translation>Geçerli projeye dosyalar ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4967" />
+      <location filename="../Project/Project.py" line="4953" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dosya ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir dosya eklemek için bir diyalog açar. Alana belirlenmiş uzantıda bir dosya eklenir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4978" />
+      <location filename="../Project/Project.py" line="4964" />
       <source>Add directory to project</source>
       <translation>Projeye dizin ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4980" />
+      <location filename="../Project/Project.py" line="4966" />
       <source>Add directory...</source>
       <translation>Dizin ekle...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4987" />
+      <location filename="../Project/Project.py" line="4973" />
       <source>Add a directory to the current project</source>
       <translation>Geçerli projeye bir dizin ekleyiniz</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4990" />
+      <location filename="../Project/Project.py" line="4976" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dizin Ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir dizin eklemek için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5000" />
+      <location filename="../Project/Project.py" line="4986" />
       <source>Add translation to project</source>
       <translation>Projeye çeviri ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5002" />
+      <location filename="../Project/Project.py" line="4988" />
       <source>Add &amp;translation...</source>
       <translation>Çeviri &amp;ekle...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4995" />
+      <source>Add a translation to the current project</source>
+      <translation>Geçerli projeye çeviri ekle</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4998" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Çeviri ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir çeviri eklemek için bir diyalog açar.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5008" />
+      <source>Search new files</source>
+      <translation>Yeni dosyaları ara</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5009" />
-      <source>Add a translation to the current project</source>
-      <translation>Geçerli projeye çeviri ekle</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5012" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Çeviri ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir çeviri eklemek için bir diyalog açar.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5022" />
-      <source>Search new files</source>
-      <translation>Yeni dosyaları ara</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>Yeni dosyaları a&amp;ra...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5015" />
+      <source>Search new files in the project directory.</source>
+      <translation>Proje dizininde yeni dosyaları ara.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5017" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5027" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5028" />
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5029" />
-      <source>Search new files in the project directory.</source>
-      <translation>Proje dizininde yeni dosyaları ara.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5031" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5042" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5048" />
+      <location filename="../Project/Project.py" line="5034" />
       <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5050" />
+      <location filename="../Project/Project.py" line="5036" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5059" />
+      <location filename="../Project/Project.py" line="5045" />
       <source>Project properties</source>
       <translation>Proje özellikleri</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5061" />
+      <location filename="../Project/Project.py" line="5047" />
       <source>&amp;Properties...</source>
       <translation>&amp;Özellikler...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5067" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Show the project properties</source>
       <translation>Proje özelliklerini göster</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5069" />
+      <location filename="../Project/Project.py" line="5055" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5078" />
+      <location filename="../Project/Project.py" line="5064" />
       <source>User project properties</source>
       <translation>Kullanıcı projesi özellikleri</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5080" />
+      <location filename="../Project/Project.py" line="5066" />
       <source>&amp;User Properties...</source>
       <translation>K&amp;ullanıcı Özellikleri...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5073" />
+      <source>Show the user specific project properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5076" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5086" />
+      <source>Filetype Associations</source>
+      <translation>Dosyatipi Birleştirme</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5087" />
-      <source>Show the user specific project properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5090" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5100" />
-      <source>Filetype Associations</source>
-      <translation>Dosyatipi Birleştirme</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation>Dosyatipi Birleştirme...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5108" />
+      <location filename="../Project/Project.py" line="5094" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5097" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5110" />
+      <source>Lexer Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5111" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5124" />
-      <source>Lexer Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5132" />
+      <location filename="../Project/Project.py" line="5118" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5135" />
+      <location filename="../Project/Project.py" line="5121" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5153" />
+      <location filename="../Project/Project.py" line="5139" />
       <source>Debugger Properties</source>
       <translation>Hata Ayıklayıcı Özellikleri</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5154" />
+      <location filename="../Project/Project.py" line="5140" />
       <source>Debugger &amp;Properties...</source>
       <translation>Hata Ayıklayıcı &amp;Özellikleri...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5160" />
+      <location filename="../Project/Project.py" line="5146" />
       <source>Show the debugger properties</source>
       <translation>Hata ayıklayıcı özelliklerini göster</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5162" />
+      <location filename="../Project/Project.py" line="5148" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5158" />
       <source>Load</source>
       <translation>Yükle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5173" />
+      <location filename="../Project/Project.py" line="5159" />
       <source>&amp;Load</source>
       <translation>Yük&amp;le</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5179" />
+      <location filename="../Project/Project.py" line="5165" />
       <source>Load the debugger properties</source>
       <translation>Hata ayıklayıcı özelliklerini yükle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5181" />
+      <location filename="../Project/Project.py" line="5167" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
+      <location filename="../Project/Project.py" line="5176" />
       <source>Save</source>
       <translation>Kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5197" />
+      <location filename="../Project/Project.py" line="5183" />
       <source>Save the debugger properties</source>
       <translation>Hata ayıklayıcı özelliklerini kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5199" />
+      <location filename="../Project/Project.py" line="5185" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5208" />
+      <location filename="../Project/Project.py" line="5194" />
       <source>Delete</source>
       <translation>Sil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5209" />
+      <location filename="../Project/Project.py" line="5195" />
       <source>&amp;Delete</source>
       <translation>&amp;Sil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5215" />
+      <location filename="../Project/Project.py" line="5201" />
       <source>Delete the debugger properties</source>
       <translation>Hata ayıklayıcı özelliklerini sil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5217" />
+      <location filename="../Project/Project.py" line="5203" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5227" />
+      <location filename="../Project/Project.py" line="5213" />
       <source>Reset</source>
       <translation>Başadön</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5228" />
+      <location filename="../Project/Project.py" line="5214" />
       <source>&amp;Reset</source>
       <translation>Başad&amp;ön</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5234" />
+      <location filename="../Project/Project.py" line="5220" />
       <source>Reset the debugger properties</source>
       <translation>Hata ayıklayıcı özelliklerini başa döndür</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5236" />
+      <location filename="../Project/Project.py" line="5222" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5252" />
-      <location filename="../Project/Project.py" line="5251" />
+      <location filename="../Project/Project.py" line="5238" />
+      <location filename="../Project/Project.py" line="5237" />
       <source>Load session</source>
       <translation>Oturum yükleniyor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5258" />
+      <location filename="../Project/Project.py" line="5244" />
       <source>Load the projects session file.</source>
       <translation>Projelerin oturm dosyasını yükle.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5260" />
+      <location filename="../Project/Project.py" line="5246" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5276" />
-      <location filename="../Project/Project.py" line="5275" />
+      <location filename="../Project/Project.py" line="5262" />
+      <location filename="../Project/Project.py" line="5261" />
       <source>Save session</source>
       <translation>Oturumu kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5282" />
+      <location filename="../Project/Project.py" line="5268" />
       <source>Save the projects session file.</source>
       <translation>Proje oturum dosyasını kaydet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5284" />
+      <location filename="../Project/Project.py" line="5270" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5300" />
-      <location filename="../Project/Project.py" line="5299" />
+      <location filename="../Project/Project.py" line="5286" />
+      <location filename="../Project/Project.py" line="5285" />
       <source>Delete session</source>
       <translation>Oturumu sil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5306" />
+      <location filename="../Project/Project.py" line="5292" />
       <source>Delete the projects session file.</source>
       <translation>Proje oturum dosyasını sil.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5308" />
+      <location filename="../Project/Project.py" line="5294" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Oturumu Sil&lt;/b&gt;&lt;p&gt;Bu proje dosya oturumunu siler&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5323" />
+      <location filename="../Project/Project.py" line="5309" />
       <source>Code Metrics</source>
       <translation>Metrik Kod</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5324" />
+      <location filename="../Project/Project.py" line="5310" />
       <source>&amp;Code Metrics...</source>
       <translation>Me&amp;trik Kod...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5317" />
+      <source>Show some code metrics for the project.</source>
+      <translation>Proje için bazı metrik kodları göster.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5320" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Metrik Kodlar...&lt;/b&gt;&lt;p&gt;Bu proje içindeki tüm Python dosyalarının bazı metrik kodlarını gösterir.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5330" />
+      <source>Python Code Coverage</source>
+      <translation>Python Kod Koruyucu</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5331" />
-      <source>Show some code metrics for the project.</source>
-      <translation>Proje için bazı metrik kodları göster.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5334" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Metrik Kodlar...&lt;/b&gt;&lt;p&gt;Bu proje içindeki tüm Python dosyalarının bazı metrik kodlarını gösterir.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5344" />
-      <source>Python Code Coverage</source>
-      <translation>Python Kod Koruyucu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation>Kod Koru&amp;yucu...</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5338" />
+      <source>Show code coverage information for the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5341" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6775" />
+      <location filename="../Project/Project.py" line="6762" />
+      <location filename="../Project/Project.py" line="5351" />
+      <source>Profile Data</source>
+      <translation>Veri Kesiti</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5352" />
-      <source>Show code coverage information for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5355" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6789" />
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="5365" />
-      <source>Profile Data</source>
-      <translation>Veri Kesiti</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Veri kesiti...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5373" />
+      <location filename="../Project/Project.py" line="5359" />
       <source>Show profiling data for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5376" />
+      <location filename="../Project/Project.py" line="5362" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="6827" />
+      <location filename="../Project/Project.py" line="5377" />
       <source>Application Diagram</source>
       <translation>Uygulama Şeması</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5392" />
+      <location filename="../Project/Project.py" line="5378" />
       <source>&amp;Application Diagram...</source>
       <translation>Uygulama Şem&amp;ası...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5399" />
+      <location filename="../Project/Project.py" line="5385" />
       <source>Show a diagram of the project.</source>
       <translation>Projenin bir şemasını göster.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5402" />
+      <location filename="../Project/Project.py" line="5388" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Uygulama Şeması...&lt;/b&gt;&lt;p&gt;Bu projenin bir şemasını gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5411" />
+      <location filename="../Project/Project.py" line="5397" />
       <source>Load Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5412" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5418" />
+      <location filename="../Project/Project.py" line="5404" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5420" />
+      <location filename="../Project/Project.py" line="5406" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
-      <location filename="../Project/Project.py" line="6954" />
-      <location filename="../Project/Project.py" line="5435" />
+      <location filename="../Project/Project.py" line="6995" />
+      <location filename="../Project/Project.py" line="6940" />
+      <location filename="../Project/Project.py" line="5421" />
       <source>Create Package List</source>
       <translation>Paket Listesini Oluştur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5437" />
+      <location filename="../Project/Project.py" line="5423" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished">Eklenti &amp;Arşivi Oluştur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5444" />
+      <location filename="../Project/Project.py" line="5430" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="5433" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7080" />
-      <location filename="../Project/Project.py" line="5458" />
+      <location filename="../Project/Project.py" line="7066" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5460" />
+      <location filename="../Project/Project.py" line="5446" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5452" />
+      <source>Create eric plugin archive files.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5454" />
+      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5466" />
-      <source>Create eric plugin archive files.</source>
+      <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5468" />
-      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5480" />
-      <source>Create Plugin Archives (Snapshot)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5489" />
+      <location filename="../Project/Project.py" line="5475" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5492" />
+      <location filename="../Project/Project.py" line="5478" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7536" />
-      <location filename="../Project/Project.py" line="7507" />
-      <location filename="../Project/Project.py" line="7461" />
-      <location filename="../Project/Project.py" line="7413" />
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="5497" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5512" />
+      <location filename="../Project/Project.py" line="5498" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5518" />
+      <location filename="../Project/Project.py" line="5504" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5520" />
+      <location filename="../Project/Project.py" line="5506" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7513" />
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="7499" />
+      <location filename="../Project/Project.py" line="5516" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5531" />
+      <location filename="../Project/Project.py" line="5517" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5524" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5541" />
+      <location filename="../Project/Project.py" line="5527" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5559" />
+      <location filename="../Project/Project.py" line="5545" />
       <source>Create SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5560" />
+      <location filename="../Project/Project.py" line="5546" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5553" />
+      <source>Create a SBOM file of the project dependencies.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5556" />
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5567" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5570" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5581" />
       <source>Clear Byte Code Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5582" />
+      <location filename="../Project/Project.py" line="5568" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5589" />
+      <location filename="../Project/Project.py" line="5575" />
       <source>Clear the byte code caches of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5592" />
+      <location filename="../Project/Project.py" line="5578" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5608" />
+      <location filename="../Project/Project.py" line="5594" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5609" />
+      <location filename="../Project/Project.py" line="5595" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5601" />
+      <source>Show some information about 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5603" />
+      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5615" />
-      <source>Show some information about 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5617" />
-      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5629" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5630" />
+      <location filename="../Project/Project.py" line="5616" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5637" />
+      <location filename="../Project/Project.py" line="5623" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5640" />
+      <location filename="../Project/Project.py" line="5626" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5652" />
+      <location filename="../Project/Project.py" line="5638" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5653" />
+      <location filename="../Project/Project.py" line="5639" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5660" />
+      <location filename="../Project/Project.py" line="5646" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5651" />
+      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5664" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5665" />
-      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <source>Code Formatting &amp;Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5672" />
+      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5678" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5679" />
-      <source>Code Formatting &amp;Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5686" />
-      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5792" />
       <location filename="../Project/Project.py" line="5692" />
-      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <location filename="../Project/Project.py" line="5807" />
-      <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5706" />
-      <location filename="../Project/Project.py" line="5705" />
+      <location filename="../Project/Project.py" line="5691" />
       <source>Configure</source>
       <translation type="unfinished">Yapılandırma</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5713" />
+      <location filename="../Project/Project.py" line="5699" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5718" />
+      <location filename="../Project/Project.py" line="5704" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5734" />
+      <location filename="../Project/Project.py" line="5720" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5735" />
+      <location filename="../Project/Project.py" line="5721" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5741" />
+      <location filename="../Project/Project.py" line="5727" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5743" />
+      <location filename="../Project/Project.py" line="5729" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5756" />
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5763" />
+      <location filename="../Project/Project.py" line="5749" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5752" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5766" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5780" />
-      <location filename="../Project/Project.py" line="5779" />
+      <location filename="../Project/Project.py" line="5765" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5787" />
+      <location filename="../Project/Project.py" line="5773" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5814" />
+      <location filename="../Project/Project.py" line="5800" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5820" />
+      <location filename="../Project/Project.py" line="5806" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5836" />
+      <location filename="../Project/Project.py" line="5822" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5823" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5830" />
+      <source>Install the project into the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5833" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5844" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5851" />
+      <source>Configure the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5854" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5864" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5865" />
-      <source>Configure the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5868" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5878" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5871" />
+      <source>Upgrade the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5873" />
+      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5885" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5887" />
-      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5900" />
+      <location filename="../Project/Project.py" line="5886" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5906" />
+      <location filename="../Project/Project.py" line="5892" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5908" />
+      <location filename="../Project/Project.py" line="5894" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5926" />
+      <source>&amp;Project</source>
+      <translation>&amp;Proje</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5927" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Geçmiş P&amp;rojeleri Aç</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5929" />
+      <source>Session</source>
+      <translation>Oturum</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5930" />
+      <source>Debugger</source>
+      <translation>Hata Ayıklayıcı</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5931" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5933" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5934" />
+      <source>&amp;Version Control</source>
+      <translation>S&amp;ürüm Kontrol</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5938" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Kontrol</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5940" />
-      <source>&amp;Project</source>
-      <translation>&amp;Proje</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5941" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Geçmiş P&amp;rojeleri Aç</translation>
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5942" />
+      <source>Sho&amp;w</source>
+      <translation>G&amp;öster</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Session</source>
-      <translation>Oturum</translation>
+      <source>&amp;Diagrams</source>
+      <translation>Şemalar &amp;D</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
-      <source>Debugger</source>
-      <translation>Hata Ayıklayıcı</translation>
+      <source>Pac&amp;kagers</source>
+      <translation>Pa&amp;ketleyici</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
+      <source>Source &amp;Documentation</source>
+      <translation>Kaynak Belgeleme &amp;D</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Project-T&amp;ools</source>
+      <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
-      <source>&amp;Version Control</source>
-      <translation>S&amp;ürüm Kontrol</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5952" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Kontrol</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5954" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5956" />
-      <source>Sho&amp;w</source>
-      <translation>G&amp;öster</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5957" />
-      <source>&amp;Diagrams</source>
-      <translation>Şemalar &amp;D</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5958" />
-      <source>Pac&amp;kagers</source>
-      <translation>Pa&amp;ketleyici</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5959" />
-      <source>Source &amp;Documentation</source>
-      <translation>Kaynak Belgeleme &amp;D</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5961" />
-      <source>Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6124" />
-      <location filename="../Project/Project.py" line="6122" />
+      <location filename="../Project/Project.py" line="6110" />
+      <location filename="../Project/Project.py" line="6108" />
       <source>Project</source>
       <translation>Proje</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6206" />
+      <location filename="../Project/Project.py" line="6192" />
       <source>&amp;Clear</source>
       <translation>T&amp;emizle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6403" />
+      <location filename="../Project/Project.py" line="6389" />
       <source>Search New Files</source>
       <translation>Yeni Dosyaları Ara</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6404" />
+      <location filename="../Project/Project.py" line="6390" />
       <source>There were no new files found to be added.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6565" />
-      <location filename="../Project/Project.py" line="6552" />
+      <location filename="../Project/Project.py" line="6551" />
+      <location filename="../Project/Project.py" line="6538" />
       <source>Version Control System</source>
       <translation>Sürüm Kontrol Sistemi</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6553" />
+      <location filename="../Project/Project.py" line="6539" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6566" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="6709" />
+      <source>Coverage Data</source>
+      <translation>Veri Kapsamı</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6763" />
+      <location filename="../Project/Project.py" line="6710" />
+      <source>There is no main script defined for the current project. Aborting</source>
+      <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6722" />
+      <source>Code Coverage</source>
+      <translation>Kod Koruyucu</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="6723" />
-      <source>Coverage Data</source>
-      <translation>Veri Kapsamı</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6777" />
-      <location filename="../Project/Project.py" line="6724" />
-      <source>There is no main script defined for the current project. Aborting</source>
-      <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6736" />
-      <source>Code Coverage</source>
-      <translation>Kod Koruyucu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Lütfen bir koruyucu dosya seçiniz</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6790" />
+      <location filename="../Project/Project.py" line="6776" />
       <source>Please select a profile file</source>
       <translation>Lütfen kesit dosyasını seçiniz</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6842" />
+      <location filename="../Project/Project.py" line="6828" />
       <source>Include module names?</source>
       <translation>Modül isimleri dahil edilsin mi?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6955" />
+      <location filename="../Project/Project.py" line="6941" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7010" />
+      <location filename="../Project/Project.py" line="6996" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7321" />
-      <location filename="../Project/Project.py" line="7277" />
-      <location filename="../Project/Project.py" line="7227" />
-      <location filename="../Project/Project.py" line="7216" />
-      <location filename="../Project/Project.py" line="7198" />
-      <location filename="../Project/Project.py" line="7151" />
-      <location filename="../Project/Project.py" line="7121" />
-      <location filename="../Project/Project.py" line="7093" />
-      <location filename="../Project/Project.py" line="7063" />
-      <location filename="../Project/Project.py" line="7048" />
-      <location filename="../Project/Project.py" line="7031" />
+      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7137" />
+      <location filename="../Project/Project.py" line="7107" />
+      <location filename="../Project/Project.py" line="7079" />
+      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7034" />
+      <location filename="../Project/Project.py" line="7017" />
       <source>Create Plugin Archive</source>
       <translation>Eklenti Arşivi Oluştur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7032" />
+      <location filename="../Project/Project.py" line="7018" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7035" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7064" />
+      <location filename="../Project/Project.py" line="7050" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7072" />
+      <location filename="../Project/Project.py" line="7058" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7073" />
+      <location filename="../Project/Project.py" line="7059" />
       <source>Abort</source>
       <translation type="unfinished">Vazgeç</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7076" />
+      <location filename="../Project/Project.py" line="7062" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7094" />
+      <location filename="../Project/Project.py" line="7080" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7122" />
+      <location filename="../Project/Project.py" line="7108" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7152" />
+      <location filename="../Project/Project.py" line="7138" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7199" />
+      <location filename="../Project/Project.py" line="7185" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7217" />
+      <location filename="../Project/Project.py" line="7203" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7228" />
+      <location filename="../Project/Project.py" line="7214" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7278" />
+      <location filename="../Project/Project.py" line="7264" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7322" />
+      <location filename="../Project/Project.py" line="7308" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7414" />
+      <location filename="../Project/Project.py" line="7400" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7462" />
+      <location filename="../Project/Project.py" line="7448" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7508" />
+      <location filename="../Project/Project.py" line="7494" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7516" />
+      <location filename="../Project/Project.py" line="7502" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
+      <location filename="../Project/Project.py" line="7507" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7537" />
+      <location filename="../Project/Project.py" line="7523" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7975" />
+      <location filename="../Project/Project.py" line="7961" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7976" />
+      <location filename="../Project/Project.py" line="7962" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8057" />
+      <location filename="../Project/Project.py" line="8043" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8088" />
-      <location filename="../Project/Project.py" line="8073" />
+      <location filename="../Project/Project.py" line="8074" />
+      <location filename="../Project/Project.py" line="8059" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65146,9 +65098,9 @@
   <context>
     <name>ProjectFormsBrowser</name>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1141" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1092" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1055" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1131" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
       <location filename="../Project/ProjectFormsBrowser.py" line="142" />
       <location filename="../Project/ProjectFormsBrowser.py" line="77" />
       <source>Forms</source>
@@ -65421,102 +65373,102 @@
       <translation>Formları derle</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="701" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="732" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="719" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="700" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="683" />
       <source>New Form</source>
       <translation>Yeni Form</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="685" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
       <source>Select a form type:</source>
       <translation>Form tipini seç:</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="703" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="702" />
       <source>Qt User-Interface Files (*.ui);;All Files (*)</source>
       <translation>Qt Kullanıcı-Arayüz Dosyaları (*.ui);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="721" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Bu dosya halihazırda var! Üzerine yazılsın mı?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="734" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
       <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectFormsBrowser.py" line="759" />
+      <source>Delete forms</source>
+      <translation>Formları sil</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFormsBrowser.py" line="760" />
-      <source>Delete forms</source>
-      <translation>Formları sil</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="761" />
       <source>Do you really want to delete these forms from the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="893" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="882" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="875" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="888" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="877" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="870" />
       <source>Form Compilation</source>
       <translation>Form Derleme</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="876" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="871" />
       <source>The compilation of the form file was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="883" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="878" />
       <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="894" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="889" />
       <source>The compilation of the form file failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="986" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="977" />
       <source>Process Generation Error</source>
       <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="987" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="978" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1074" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1037" />
       <source>Compiling forms...</source>
       <translation>Formlar derleniyor...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1134" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1084" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1047" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1075" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1038" />
       <source>Abort</source>
       <translation>Vazgeç</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1137" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1087" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1050" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1127" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1078" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1041" />
       <source>%v/%m Forms</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1133" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1123" />
       <source>Determining changed forms...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1163" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1153" />
       <source>Compiling changed forms...</source>
       <translation>Değişen formlar derleniyor...</translation>
     </message>
@@ -65968,9 +65920,9 @@
   <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="956" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="880" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="844" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="940" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="864" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="828" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="87" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="68" />
       <source>Resources</source>
@@ -65997,219 +65949,219 @@
       <translation type="unfinished">Kaynaklar Gözatıcısı</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="165" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="163" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="150" />
       <source>Compile resource</source>
       <translation>Kaynağı derle</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="396" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="385" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="344" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="333" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="247" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="235" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="172" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="154" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="384" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="373" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="334" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="323" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="241" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="229" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="170" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
       <source>Compile all resources</source>
       <translation>Tüm kaynakları derle</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="389" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="337" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="296" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="239" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="158" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="377" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="327" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="288" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="233" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="156" />
       <source>Configure rcc Compiler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="308" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="300" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="179" />
       <source>Open</source>
       <translation>Aç</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
       <source>Rename file</source>
       <translation>Dosya adını değiştir</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="349" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="310" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="339" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="302" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
       <source>Remove from project</source>
       <translation>Projeden çıkar</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="351" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="187" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="341" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="304" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
       <source>Delete</source>
       <translation>Sil</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="345" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="249" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="236" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="200" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="195" />
+      <source>New resource...</source>
+      <translation>Yeni kaynaklar...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="390" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="346" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="254" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
+      <source>Add resources...</source>
+      <translation>Kaynak ekle...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="393" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="348" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="257" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="206" />
+      <source>Add resources directory...</source>
+      <translation>Kaynak dizini ekle...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="353" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="211" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectResourcesBrowser.py" line="355" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="255" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="242" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="199" />
-      <source>New resource...</source>
-      <translation>Yeni kaynaklar...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="402" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="356" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="260" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="208" />
-      <source>Add resources...</source>
-      <translation>Kaynak ekle...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="405" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="358" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="210" />
-      <source>Add resources directory...</source>
-      <translation>Kaynak dizini ekle...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="363" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="269" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="365" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="217" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="213" />
       <source>Copy Path to Clipboard</source>
       <translation>Yolu Panoya kopyala</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="410" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="367" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="315" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="272" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="219" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="398" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="357" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="307" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="266" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
       <source>Expand all directories</source>
       <translation>Tüm dizinleri genişlet</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="413" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="369" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="317" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="274" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="220" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="401" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="359" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="309" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="268" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="216" />
       <source>Collapse all directories</source>
       <translation>Tüm dizinleri daralt</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="416" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="372" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="320" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="277" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="222" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="404" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="362" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="271" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="218" />
       <source>Configure...</source>
       <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="303" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="292" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="295" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="284" />
       <source>Compile resources</source>
       <translation>Kaynakları derle</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="595" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="574" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="555" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="583" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="562" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="543" />
       <source>New Resource</source>
       <translation>Yeni Kaynak</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="557" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="545" />
       <source>Qt Resource Files (*.qrc)</source>
       <translation>Qt Kaynak Dosyaları (*.qrc)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="575" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="563" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Bu dosya halihazırda var! Üzerine yazılsın mı?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="596" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="584" />
       <source>&lt;p&gt;The new resource file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="622" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="610" />
       <source>Delete resources</source>
       <translation>Kaynakları sil</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="623" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="611" />
       <source>Do you really want to delete these resources from the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="717" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="708" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="701" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="705" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="696" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="689" />
       <source>Resource Compilation</source>
       <translation>Kaynak Derleme</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="702" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="690" />
       <source>The compilation of the resource file was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="709" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="697" />
       <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="718" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="706" />
       <source>The compilation of the resource file failed.</source>
       <translation>Kaynağın derlenmesinde hata.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="805" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="789" />
       <source>Process Generation Error</source>
       <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="806" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="790" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="871" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="835" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="855" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="819" />
       <source>Compiling resources...</source>
       <translation>Kaynaklar derleniyor...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="949" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="872" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="836" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="933" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="856" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="820" />
       <source>Abort</source>
       <translation>Vazgeç</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="952" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="875" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="839" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="936" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="859" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="823" />
       <source>%v/%m Resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="948" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="932" />
       <source>Determining changed resources...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="986" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="970" />
       <source>Compiling changed resources...</source>
       <translation>Değişen kaynaklar derleniyor...</translation>
     </message>
@@ -66745,250 +66697,250 @@
       <translation type="unfinished">Çevirilier Gözatıcısı</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="514" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="456" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="296" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="238" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="213" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="182" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="508" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="236" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="180" />
       <source>Open in Editor</source>
       <translation>Düzenleyicide Aç</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="255" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="253" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation</source>
       <translation>Çeviriyii üret</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="193" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="263" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="191" />
       <source>Generate translation (with obsolete)</source>
       <translation>Çeviriyi üret (eskileri ile beraber)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="580" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="551" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="274" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="199" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="572" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="543" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="378" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="272" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="197" />
       <source>Generate all translations</source>
       <translation>Tüm çevirileri üret</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="581" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="281" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
+      <source>Generate all translations (with obsolete)</source>
+      <translation>Tüm çevirileri üret (eskileri ile beraber)</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="446" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="207" />
+      <source>Open in Qt-Linguist</source>
+      <translation>Qt-Linguist'te Aç</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="301" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <source>Release translation</source>
+      <translation>Çeviriyi yayımla</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="589" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="391" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="283" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
-      <source>Generate all translations (with obsolete)</source>
-      <translation>Tüm çevirileri üret (eskileri ile beraber)</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="452" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
-      <source>Open in Qt-Linguist</source>
-      <translation>Qt-Linguist'te Aç</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
-      <source>Release translation</source>
-      <translation>Çeviriyi yayımla</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="597" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="560" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="399" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="363" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="552" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="395" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="359" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Release all translations</source>
       <translation>Tüm çevirileri yayımla</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="226" />
       <source>Preview translation</source>
       <translation>Çeviri öngörünümü</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="368" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="232" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="557" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="364" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
       <source>Preview all translations</source>
       <translation>Tüm çevirilerin öngörünümü</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="481" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="374" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="246" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="475" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="370" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="244" />
       <source>Extract messages</source>
       <translation>Masajı Genişlet</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="291" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="289" />
       <source>Open</source>
       <translation type="unfinished">Aç</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="319" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Remove from project</source>
       <translation>Projeden çıkar</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="595" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="526" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="320" />
+      <source>Delete</source>
+      <translation>Sil</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="600" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="402" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="324" />
+      <source>New translation...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="603" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="532" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="322" />
-      <source>Delete</source>
-      <translation>Sil</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="608" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="406" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="326" />
-      <source>New translation...</source>
-      <translation type="unfinished" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="327" />
+      <source>Add translation files...</source>
+      <translation>Çeviri dosyası ekle...</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="607" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="609" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Yolu Panoya kopyala</translation>
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="611" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="329" />
-      <source>Add translation files...</source>
-      <translation>Çeviri dosyası ekle...</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="615" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="413" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="617" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Yolu Panoya kopyala</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="619" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="535" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="416" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="338" />
       <source>Configure...</source>
       <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="490" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="440" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="484" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
       <source>Generate translations</source>
       <translation>Çevirileri üret</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="500" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="445" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
       <source>Generate translations (with obsolete)</source>
       <translation>Çevirileri üret (eskileri ile beraber)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="515" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="455" />
       <source>Release translations</source>
       <translation>Çevirileri yayımla</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
       <source>Preview translations</source>
       <translation>Çeviri öngörünümü</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="882" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="866" />
       <source>Delete translation files</source>
       <translation>Çeviri dosyalarını sil</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="883" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="867" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation>Bu çeviri dosyalarını gerçekten projeden silmek mi istiyorsunuz?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1582" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1051" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1011" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1560" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1035" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="995" />
       <source>Write temporary project file</source>
       <translation>Geçici proje dosyasını yaz</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1583" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1307" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1012" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1561" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1287" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="996" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Hiç çeviri dosyası (*.ts) seçilmedi.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1052" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1036" />
       <source>&lt;p&gt;The temporary project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1306" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1189" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1177" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1286" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1173" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1161" />
       <source>Translation file generation</source>
       <translation>Çeviri dosyası üreteci</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1178" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1162" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation>Çeviri dosyaları (*.ts) tam olarak üretildi.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1184" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1168" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1190" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1174" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1612" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1360" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1590" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1388" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1340" />
       <source>Process Generation Error</source>
       <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1361" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1389" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1341" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1497" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1479" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1477" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1459" />
       <source>Translation file release</source>
       <translation>Yayımlanmış çeviri dosyası</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1480" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1460" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation>Çeviri dosyaları (*.qm) tam olarak yayımlandı.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1498" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1478" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation>Çeviri dosyalarının (*qm) yayımı başarısız oldu.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1613" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1591" />
       <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -69507,38 +69459,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="214" />
+      <location filename="../UI/PythonAstViewer.py" line="216" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="224" />
+      <location filename="../UI/PythonAstViewer.py" line="226" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="230" />
+      <location filename="../UI/PythonAstViewer.py" line="232" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="248" />
+      <location filename="../UI/PythonAstViewer.py" line="250" />
       <source>Module</source>
       <translation type="unfinished">Modül</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="280" />
+      <location filename="../UI/PythonAstViewer.py" line="282" />
       <source>{0}: {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="297" />
-      <location filename="../UI/PythonAstViewer.py" line="287" />
+      <location filename="../UI/PythonAstViewer.py" line="299" />
+      <location filename="../UI/PythonAstViewer.py" line="289" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="304" />
+      <location filename="../UI/PythonAstViewer.py" line="306" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -71636,7 +71588,7 @@
   <context>
     <name>QtPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="154" />
+      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="139" />
       <source>Sample: {0}designer{1}</source>
       <translation type="unfinished" />
     </message>
@@ -71680,7 +71632,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Tools Directory:</source>
       <translation type="unfinished" />
     </message>
@@ -71765,7 +71716,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Virtual Environment:</source>
       <translation type="unfinished" />
     </message>
@@ -71773,7 +71723,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Select the virtual environment to be used</source>
       <translation type="unfinished" />
     </message>
@@ -71781,7 +71730,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to open the virtual environment manager dialog</source>
       <translation type="unfinished" />
     </message>
@@ -71789,7 +71737,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to refresh the list of vitual environments</source>
       <translation type="unfinished" />
     </message>
@@ -71818,7 +71765,6 @@
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Generate imports relative to '.'</source>
       <translation type="unfinished" />
     </message>
@@ -71851,26 +71797,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>pyside2-uic Options</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>PySide6</source>
       <translation type="unfinished" />
     </message>
@@ -87717,64 +87643,64 @@
       <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="575" />
+      <location filename="../Templates/TemplateViewer.py" line="577" />
       <source>Remove Template</source>
       <translation>Şablonu Kaldır</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="576" />
+      <location filename="../Templates/TemplateViewer.py" line="578" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Gerçekten &lt;b&gt;{0}&lt;/b&gt; ni kaldırmak mı istiyorsunuz?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="604" />
+      <location filename="../Templates/TemplateViewer.py" line="606" />
       <source>Import Templates</source>
       <translation>Şablonları İçe Aktar</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="621" />
-      <location filename="../Templates/TemplateViewer.py" line="606" />
+      <location filename="../Templates/TemplateViewer.py" line="623" />
+      <location filename="../Templates/TemplateViewer.py" line="608" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
-      <location filename="../Templates/TemplateViewer.py" line="619" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
+      <location filename="../Templates/TemplateViewer.py" line="621" />
       <source>Export Templates</source>
       <translation>Şablonları Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="654" />
+      <location filename="../Templates/TemplateViewer.py" line="656" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="655" />
+      <location filename="../Templates/TemplateViewer.py" line="657" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="675" />
+      <location filename="../Templates/TemplateViewer.py" line="677" />
       <source>Template Help</source>
       <translation>Şablon Yardımı</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="676" />
+      <location filename="../Templates/TemplateViewer.py" line="678" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="938" />
+      <location filename="../Templates/TemplateViewer.py" line="940" />
       <source>Edit Template Group</source>
       <translation>Şablon Grubunu Düzenle</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="939" />
+      <location filename="../Templates/TemplateViewer.py" line="941" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -91238,2585 +91164,2569 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="263" />
+      <location filename="../UI/UserInterface.py" line="265" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="319" />
+      <location filename="../UI/UserInterface.py" line="321" />
       <source>Initializing Plugin Manager...</source>
       <translation>Eklenti Yöneticisi Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="327" />
+      <location filename="../UI/UserInterface.py" line="329" />
       <source>Generating Main User Interface...</source>
       <translation>Ana Kullanıcı Arayüzü Üretiliyor...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="386" />
       <location filename="../UI/UserInterface.py" line="384" />
-      <location filename="../UI/UserInterface.py" line="382" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="593" />
+      <location filename="../UI/UserInterface.py" line="595" />
       <source>Initializing Tools...</source>
       <translation>Araçlar Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="605" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Registering Objects...</source>
       <translation>Nesneler Kaydediliyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="640" />
+      <location filename="../UI/UserInterface.py" line="642" />
       <source>Initializing Actions...</source>
       <translation>İşlemler Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="643" />
+      <location filename="../UI/UserInterface.py" line="645" />
       <source>Initializing Menus...</source>
       <translation>Menüler Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="648" />
       <source>Initializing Toolbars...</source>
       <translation>Araççubuğu Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Statusbar...</source>
       <translation>Durumçubuğu Hazırlanıyor...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="676" />
       <location filename="../UI/UserInterface.py" line="674" />
-      <location filename="../UI/UserInterface.py" line="672" />
       <source>Initializing Single Application Server...</source>
       <translation>Tekli Uygulama Senveri Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="683" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Activating Plugins...</source>
       <translation>Eklentiler Aktif oluyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="688" />
+      <location filename="../UI/UserInterface.py" line="690" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="692" />
+      <location filename="../UI/UserInterface.py" line="694" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
+      <location filename="../UI/UserInterface.py" line="705" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Araççubuğu Yöneticisi Yeniden yapılandırılıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="714" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="726" />
+      <location filename="../UI/UserInterface.py" line="728" />
       <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="732" />
+      <location filename="../UI/UserInterface.py" line="734" />
       <source>Reading Templates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="738" />
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2212" />
-      <location filename="../UI/UserInterface.py" line="1099" />
+      <location filename="../UI/UserInterface.py" line="2214" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2258" />
-      <location filename="../UI/UserInterface.py" line="1109" />
+      <location filename="../UI/UserInterface.py" line="2260" />
+      <location filename="../UI/UserInterface.py" line="1111" />
       <source>Horizontal Toolbox</source>
       <translation>Yatay Araçkutusu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2235" />
-      <location filename="../UI/UserInterface.py" line="1120" />
+      <location filename="../UI/UserInterface.py" line="2237" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2054" />
-      <location filename="../UI/UserInterface.py" line="1316" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1132" />
       <source>Multiproject-Viewer</source>
       <translation>Çokluproje-Görüntüleyici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2032" />
-      <location filename="../UI/UserInterface.py" line="1322" />
-      <location filename="../UI/UserInterface.py" line="1136" />
+      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="1324" />
+      <location filename="../UI/UserInterface.py" line="1138" />
       <source>Project-Viewer</source>
       <translation>Proje-Görüntüleyici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2594" />
-      <location filename="../UI/UserInterface.py" line="2593" />
-      <location filename="../UI/UserInterface.py" line="1329" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="2596" />
+      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="1331" />
+      <location filename="../UI/UserInterface.py" line="1145" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
-      <location filename="../UI/UserInterface.py" line="2616" />
-      <location filename="../UI/UserInterface.py" line="1336" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2619" />
+      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="1338" />
+      <location filename="../UI/UserInterface.py" line="1152" />
       <source>Find File</source>
       <translation type="unfinished">Dosya Bul</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1156" />
+      <location filename="../UI/UserInterface.py" line="1344" />
+      <location filename="../UI/UserInterface.py" line="1158" />
       <source>VCS Status</source>
       <translation type="unfinished">VCS Durumu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2187" />
-      <location filename="../UI/UserInterface.py" line="1349" />
-      <location filename="../UI/UserInterface.py" line="1163" />
+      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="1351" />
+      <location filename="../UI/UserInterface.py" line="1165" />
       <source>Template-Viewer</source>
       <translation>Şablon-Gösterici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2120" />
-      <location filename="../UI/UserInterface.py" line="1356" />
-      <location filename="../UI/UserInterface.py" line="1170" />
+      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="1358" />
+      <location filename="../UI/UserInterface.py" line="1172" />
       <source>File-Browser</source>
       <translation>Dosya-Gözatıcısı</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1177" />
+      <location filename="../UI/UserInterface.py" line="1365" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Symbols</source>
       <translation>Semboller</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2076" />
-      <location filename="../UI/UserInterface.py" line="1385" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1187" />
+      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="1387" />
+      <location filename="../UI/UserInterface.py" line="1381" />
+      <location filename="../UI/UserInterface.py" line="1189" />
       <source>Debug-Viewer</source>
       <translation>Hata Ayıklama Göstericisi</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <location filename="../UI/UserInterface.py" line="2447" />
-      <location filename="../UI/UserInterface.py" line="1392" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="1394" />
+      <location filename="../UI/UserInterface.py" line="1196" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2663" />
-      <location filename="../UI/UserInterface.py" line="2662" />
-      <location filename="../UI/UserInterface.py" line="1399" />
-      <location filename="../UI/UserInterface.py" line="1201" />
+      <location filename="../UI/UserInterface.py" line="2665" />
+      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="1401" />
+      <location filename="../UI/UserInterface.py" line="1203" />
       <source>Help Viewer</source>
       <translation type="unfinished">Yardım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3611" />
-      <location filename="../UI/UserInterface.py" line="2543" />
-      <location filename="../UI/UserInterface.py" line="2542" />
-      <location filename="../UI/UserInterface.py" line="1405" />
-      <location filename="../UI/UserInterface.py" line="1207" />
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1209" />
       <source>Plugin Repository</source>
       <translation>Eklenti Havuzu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
-      <location filename="../UI/UserInterface.py" line="2566" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1213" />
+      <location filename="../UI/UserInterface.py" line="2569" />
+      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2475" />
-      <location filename="../UI/UserInterface.py" line="2474" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1220" />
+      <location filename="../UI/UserInterface.py" line="2477" />
+      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>PyPI Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2497" />
-      <location filename="../UI/UserInterface.py" line="2496" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1225" />
+      <location filename="../UI/UserInterface.py" line="2499" />
+      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="1427" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1232" />
+      <location filename="../UI/UserInterface.py" line="1434" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>Cooperation</source>
       <translation>İşbirliği</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2375" />
-      <location filename="../UI/UserInterface.py" line="1436" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1239" />
       <source>IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
-      <location filename="../UI/UserInterface.py" line="2518" />
-      <location filename="../UI/UserInterface.py" line="1442" />
-      <location filename="../UI/UserInterface.py" line="1244" />
+      <location filename="../UI/UserInterface.py" line="2521" />
+      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2098" />
-      <location filename="../UI/UserInterface.py" line="1450" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1254" />
       <source>Shell</source>
       <translation>Kabuk</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <location filename="../UI/UserInterface.py" line="1456" />
-      <location filename="../UI/UserInterface.py" line="1256" />
+      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
       <source>Task-Viewer</source>
       <translation>Görev-Gösterici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2142" />
-      <location filename="../UI/UserInterface.py" line="1462" />
-      <location filename="../UI/UserInterface.py" line="1260" />
+      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="1464" />
+      <location filename="../UI/UserInterface.py" line="1262" />
       <source>Log-Viewer</source>
       <translation>Kayıt-Gösterici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1469" />
-      <location filename="../UI/UserInterface.py" line="1267" />
+      <location filename="../UI/UserInterface.py" line="1471" />
+      <location filename="../UI/UserInterface.py" line="1269" />
       <source>Numbers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1844" />
+      <location filename="../UI/UserInterface.py" line="1846" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - Pasif Mod</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <location filename="../UI/UserInterface.py" line="1847" />
+      <location filename="../UI/UserInterface.py" line="1855" />
+      <location filename="../UI/UserInterface.py" line="1849" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} - {1} -Pasif Mod</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
+      <location filename="../UI/UserInterface.py" line="1861" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} - {1} - {2} - Pasif Mod</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1885" />
-      <source>Quit</source>
-      <translation>Çık</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1887" />
+      <source>Quit</source>
+      <translation>Çık</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1889" />
       <source>&amp;Quit</source>
       <translation>&amp;Çıkış</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1888" />
+      <location filename="../UI/UserInterface.py" line="1890" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Quit the IDE</source>
-      <translation>IDE den Çık</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1895" />
+      <source>Quit the IDE</source>
+      <translation>IDE den Çık</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1897" />
       <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1911" />
       <location filename="../UI/UserInterface.py" line="1909" />
-      <location filename="../UI/UserInterface.py" line="1907" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1910" />
+      <location filename="../UI/UserInterface.py" line="1912" />
       <source>Ctrl+Shift+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1915" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1917" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1919" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <location filename="../UI/UserInterface.py" line="1928" />
-      <source>Save session</source>
-      <translation>Oturumu kaydet</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1937" />
+      <location filename="../UI/UserInterface.py" line="1930" />
+      <source>Save session</source>
+      <translation>Oturumu kaydet</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1931" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7892" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <location filename="../UI/UserInterface.py" line="1947" />
+      <location filename="../UI/UserInterface.py" line="7866" />
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1949" />
       <source>Load session</source>
       <translation type="unfinished">Oturum yükleniyor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
+      <location filename="../UI/UserInterface.py" line="1950" />
       <source>Load session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1958" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1966" />
-      <source>New Window</source>
-      <translation type="unfinished">Yeni Pencere</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1968" />
+      <source>New Window</source>
+      <translation type="unfinished">Yeni Pencere</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1970" />
       <source>New &amp;Window</source>
       <translation type="unfinished">Yeni &amp;Pencere</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1969" />
+      <location filename="../UI/UserInterface.py" line="1971" />
       <source>Ctrl+Shift+N</source>
       <comment>File|New Window</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1974" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1976" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1978" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1992" />
       <location filename="../UI/UserInterface.py" line="1990" />
-      <location filename="../UI/UserInterface.py" line="1988" />
       <source>Edit Profile</source>
       <translation>Düzenleme Kesiti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1997" />
-      <source>Activate the edit view profile</source>
-      <translation>Düzenleyici görüntü kesitini aktif yap</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Activate the edit view profile</source>
+      <translation>Düzenleyici görüntü kesitini aktif yap</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2001" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2014" />
       <location filename="../UI/UserInterface.py" line="2012" />
-      <location filename="../UI/UserInterface.py" line="2010" />
       <source>Debug Profile</source>
       <translation>Hata Ayıklama Kesiti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2019" />
-      <source>Activate the debug view profile</source>
-      <translation>Debug görüntü kesitini aktif et</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Activate the debug view profile</source>
+      <translation>Debug görüntü kesitini aktif et</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2033" />
+      <location filename="../UI/UserInterface.py" line="2035" />
       <source>&amp;Project-Viewer</source>
       <translation>&amp;proje-Görüntüleyici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="2036" />
       <source>Alt+Shift+P</source>
       <translation>Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2040" />
+      <location filename="../UI/UserInterface.py" line="2042" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2043" />
+      <location filename="../UI/UserInterface.py" line="2045" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2055" />
+      <location filename="../UI/UserInterface.py" line="2057" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>Çokluproje-Görü&amp;ntüleyici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="2058" />
       <source>Alt+Shift+M</source>
       <translation>Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2062" />
+      <location filename="../UI/UserInterface.py" line="2064" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2065" />
+      <location filename="../UI/UserInterface.py" line="2067" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2077" />
+      <location filename="../UI/UserInterface.py" line="2079" />
       <source>&amp;Debug-Viewer</source>
       <translation>Ha&amp;ta Ayıklama-Göstericisi</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="2080" />
       <source>Alt+Shift+D</source>
       <translation>Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2084" />
+      <location filename="../UI/UserInterface.py" line="2086" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2087" />
+      <location filename="../UI/UserInterface.py" line="2089" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2099" />
+      <location filename="../UI/UserInterface.py" line="2101" />
       <source>&amp;Shell</source>
       <translation>&amp;Kabuk</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="2102" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2106" />
+      <location filename="../UI/UserInterface.py" line="2108" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2109" />
+      <location filename="../UI/UserInterface.py" line="2111" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2121" />
+      <location filename="../UI/UserInterface.py" line="2123" />
       <source>&amp;File-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="2124" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2128" />
+      <location filename="../UI/UserInterface.py" line="2130" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2131" />
+      <location filename="../UI/UserInterface.py" line="2133" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2143" />
+      <location filename="../UI/UserInterface.py" line="2145" />
       <source>Lo&amp;g-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="2146" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2150" />
+      <location filename="../UI/UserInterface.py" line="2152" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="2155" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2165" />
+      <location filename="../UI/UserInterface.py" line="2167" />
       <source>&amp;Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="2168" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2174" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2190" />
       <source>Templ&amp;ate-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="2191" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2197" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2198" />
+      <location filename="../UI/UserInterface.py" line="2200" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2213" />
+      <location filename="../UI/UserInterface.py" line="2215" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2220" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2222" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2236" />
+      <location filename="../UI/UserInterface.py" line="2238" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2243" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2245" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2259" />
+      <location filename="../UI/UserInterface.py" line="2261" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Ya&amp;tay Araçkutusu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2266" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation>Yatay Araçkutusu penceresini açkapa</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2268" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation>Yatay Araçkutusu penceresini açkapa</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2281" />
+      <location filename="../UI/UserInterface.py" line="2283" />
       <source>Left Sidebar</source>
       <translation>Sol Durumçubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2282" />
+      <location filename="../UI/UserInterface.py" line="2284" />
       <source>&amp;Left Sidebar</source>
       <translation>So&amp;l Durumçubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2289" />
-      <source>Toggle the left sidebar window</source>
-      <translation>Sol Durum çubuğu penceresini açkapa</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2291" />
+      <source>Toggle the left sidebar window</source>
+      <translation>Sol Durum çubuğu penceresini açkapa</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sol durum çubuğu penceresini açkapa&lt;/b&gt;&lt;p&gt;Eğer sol durum çubuğu penceresi gizli ise onu görünür yap. Eğer görünüyor ise kapat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2304" />
+      <location filename="../UI/UserInterface.py" line="2306" />
       <source>Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2305" />
+      <location filename="../UI/UserInterface.py" line="2307" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2312" />
-      <source>Toggle the right sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2314" />
+      <source>Toggle the right sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2329" />
       <source>Bottom Sidebar</source>
       <translation>Alt Durumçubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2328" />
+      <location filename="../UI/UserInterface.py" line="2330" />
       <source>&amp;Bottom Sidebar</source>
       <translation>Alt Durumçu&amp;buğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation>Alt Durum çubuğu penceresini açkapa</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2337" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation>Alt Durum çubuğu penceresini açkapa</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2350" />
-      <source>Cooperation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2351" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2352" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2353" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2354" />
       <source>Alt+Shift+O</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
+      <location filename="../UI/UserInterface.py" line="2360" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2361" />
+      <location filename="../UI/UserInterface.py" line="2363" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2376" />
+      <location filename="../UI/UserInterface.py" line="2378" />
       <source>&amp;IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="2379" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2383" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2386" />
+      <location filename="../UI/UserInterface.py" line="2388" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2397" />
-      <source>Symbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2398" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2399" />
+      <source>Symbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2400" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2401" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2407" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2408" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2422" />
-      <source>Numbers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2423" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2424" />
+      <source>Numbers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2426" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
+      <location filename="../UI/UserInterface.py" line="2432" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2433" />
+      <location filename="../UI/UserInterface.py" line="2435" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="2451" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2455" />
+      <location filename="../UI/UserInterface.py" line="2457" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2460" />
+      <location filename="../UI/UserInterface.py" line="2462" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="2478" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2482" />
+      <location filename="../UI/UserInterface.py" line="2484" />
       <source>Switch the input focus to the PyPI Package Management window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2487" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="2500" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2504" />
+      <location filename="../UI/UserInterface.py" line="2506" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="2522" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2528" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2529" />
+      <location filename="../UI/UserInterface.py" line="2531" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="2546" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2552" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2553" />
+      <location filename="../UI/UserInterface.py" line="2555" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="2570" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2574" />
+      <location filename="../UI/UserInterface.py" line="2576" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2579" />
+      <location filename="../UI/UserInterface.py" line="2581" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="2597" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2603" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="2620" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2626" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2641" />
-      <location filename="../UI/UserInterface.py" line="2640" />
+      <location filename="../UI/UserInterface.py" line="2643" />
+      <location filename="../UI/UserInterface.py" line="2642" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2642" />
+      <location filename="../UI/UserInterface.py" line="2644" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2648" />
+      <location filename="../UI/UserInterface.py" line="2650" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2653" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="2666" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
+      <location filename="../UI/UserInterface.py" line="2672" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2673" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2686" />
-      <source>What's This?</source>
-      <translation>Bu nedir?</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2688" />
+      <source>What's This?</source>
+      <translation>Bu nedir?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2690" />
       <source>&amp;What's This?</source>
       <translation>Bu &amp;Nedir?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2689" />
+      <location filename="../UI/UserInterface.py" line="2691" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>Context sensitive help</source>
-      <translation>Duyarlı yardım</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2696" />
+      <source>Context sensitive help</source>
+      <translation>Duyarlı yardım</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Duyarlı yardım içeriğini görüntüle&lt;/b&gt;&lt;p&gt;Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2709" />
-      <source>Helpviewer</source>
-      <translation>Yardımgösterici</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2711" />
+      <source>Helpviewer</source>
+      <translation>Yardımgösterici</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2713" />
       <source>&amp;Helpviewer...</source>
       <translation>&amp;Yardım Gösterici...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2714" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2717" />
-      <source>Open the helpviewer window</source>
-      <translation>Yardımgösterici penceresini aç</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2719" />
+      <source>Open the helpviewer window</source>
+      <translation>Yardımgösterici penceresini aç</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2739" />
+      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Versions</source>
       <translation>Sürümü Göster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2740" />
+      <location filename="../UI/UserInterface.py" line="2742" />
       <source>Show &amp;Versions</source>
       <translation>Sürümü G&amp;öster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <source>Display version information</source>
-      <translation>Sürüm bilgisini görüntüle</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2748" />
+      <source>Display version information</source>
+      <translation>Sürüm bilgisini görüntüle</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sürümleri Göster&lt;/b&gt;&lt;p&gt;Sürüm bilgisini göster.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2754" />
+      <location filename="../UI/UserInterface.py" line="2756" />
       <source>Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2757" />
       <source>&amp;Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2764" />
       <source>Copy version information to the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2765" />
+      <location filename="../UI/UserInterface.py" line="2767" />
       <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2781" />
-      <location filename="../UI/UserInterface.py" line="2774" />
-      <source>Show Error Log</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Show Error &amp;Log...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2783" />
+      <location filename="../UI/UserInterface.py" line="2776" />
+      <source>Show Error Log</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2777" />
+      <source>Show Error &amp;Log...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2785" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
+      <location filename="../UI/UserInterface.py" line="2794" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2795" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
-      <source>Show Installation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Show Installation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4738" />
-      <location filename="../UI/UserInterface.py" line="2811" />
+      <location filename="../UI/UserInterface.py" line="4712" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>Report Bug</source>
       <translation>Hata Raporu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2811" />
-      <source>Report &amp;Bug...</source>
-      <translation>Hata &amp;Raporu...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2813" />
-      <source>Report a bug</source>
-      <translation>Bir hata rapor et</translation>
+      <source>Report &amp;Bug...</source>
+      <translation>Hata &amp;Raporu...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2815" />
+      <source>Report a bug</source>
+      <translation>Bir hata rapor et</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2821" />
+      <location filename="../UI/UserInterface.py" line="2823" />
       <source>Request Feature</source>
       <translation>İhtiyaç Duyulan Özellikler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2824" />
       <source>Request &amp;Feature...</source>
       <translation>İhtiyaç Duyulan Özellikler &amp;F...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2828" />
-      <source>Send a feature request</source>
-      <translation>ihtiyaç duyuulan bir özelliği gönder</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2830" />
+      <source>Send a feature request</source>
+      <translation>ihtiyaç duyuulan bir özelliği gönder</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4174" />
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="4148" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2843" />
+      <location filename="../UI/UserInterface.py" line="2845" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2849" />
-      <source>Start the testing dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2851" />
+      <source>Start the testing dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
-      <source>Restart Last Test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2864" />
+      <source>Restart Last Test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2866" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2870" />
-      <source>Restarts the last test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2872" />
+      <source>Restarts the last test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2882" />
-      <source>Rerun Failed Tests</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2884" />
+      <source>Rerun Failed Tests</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2886" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
+      <location filename="../UI/UserInterface.py" line="2896" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2906" />
+      <source>Test Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2908" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2914" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2916" />
       <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2923" />
+      <source>Test Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2925" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Run tests of the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2931" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2933" />
       <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
-      <source>Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2942" />
+      <source>Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2944" />
       <source>Qt-&amp;Designer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2950" />
+      <source>Start Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2959" />
-      <source>Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2961" />
+      <source>Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2963" />
       <source>Qt-&amp;Linguist...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2967" />
-      <source>Start Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2969" />
+      <source>Start Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2971" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>UI Previewer</source>
-      <translation>UI Öngörünümü</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2979" />
+      <source>UI Previewer</source>
+      <translation>UI Öngörünümü</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
       <source>&amp;UI Previewer...</source>
       <translation>&amp;UI Öngörünümü...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
-      <source>Start the UI Previewer</source>
-      <translation>UI Öngörünümünü Başlat</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2987" />
+      <source>Start the UI Previewer</source>
+      <translation>UI Öngörünümünü Başlat</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;UI Öngörünümü&lt;/b&gt;&lt;p&gt;UI Öngörünümünü Başlat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2993" />
-      <source>Translations Previewer</source>
-      <translation>Çevirilerin Öngörünümleri</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2995" />
+      <source>Translations Previewer</source>
+      <translation>Çevirilerin Öngörünümleri</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2997" />
       <source>&amp;Translations Previewer...</source>
       <translation>Çevirilerin &amp;Öngörünümleri...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <source>Start the Translations Previewer</source>
-      <translation>Çevirilerin Öngörünümlerini Başlat</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3003" />
+      <source>Start the Translations Previewer</source>
+      <translation>Çevirilerin Öngörünümlerini Başlat</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3005" />
       <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Çeviri Öngörünümü&lt;/b&gt;&lt;p&gt;Çeviri Öngörünümünü Başlat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3012" />
-      <source>Compare Files</source>
-      <translation>Dosyaları Karşılaştır</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3014" />
+      <source>Compare Files</source>
+      <translation>Dosyaları Karşılaştır</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3016" />
       <source>&amp;Compare Files...</source>
       <translation>D&amp;osyaları Karşılaştır...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
-      <location filename="../UI/UserInterface.py" line="3020" />
+      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3022" />
       <source>Compare two files</source>
       <translation>İki dosyayı karşılaştır</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3024" />
       <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dosyaları Karşılaştır&lt;/b&gt;&lt;p&gt;İki dosyayı karşılaştırmak için diyalog aç.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3031" />
-      <source>Compare Files side by side</source>
-      <translation>Dosyaları yan yana karşılaştır</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3033" />
+      <source>Compare Files side by side</source>
+      <translation>Dosyaları yan yana karşılaştır</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3035" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3043" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dosyaları biribir karşılaştır&lt;/b&gt;&lt;p&gt;İki dosyayı karşılaştırmak için bir diyalog aç ve sonuçları yan yana göster.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>SQL Browser</source>
-      <translation>SQL Gözatıcısı</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3053" />
+      <source>SQL Browser</source>
+      <translation>SQL Gözatıcısı</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3055" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL &amp;Gözatıcısı...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>Browse a SQL database</source>
-      <translation>Bir SQL veritabanına gözat</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3061" />
+      <source>Browse a SQL database</source>
+      <translation>Bir SQL veritabanına gözat</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
       <translation>&lt;b&gt;SQL Gözatıcısı&lt;/b&gt;&lt;p&gt;Bir SQL veritabanına gözat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3075" />
-      <location filename="../UI/UserInterface.py" line="3067" />
-      <source>Mini Editor</source>
-      <translation>Mini Düzenleyici</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini &amp;Düzenleyici...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <location filename="../UI/UserInterface.py" line="3069" />
+      <source>Mini Editor</source>
+      <translation>Mini Düzenleyici</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3071" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini &amp;Düzenleyici...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3079" />
       <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mini Düzenleyici&lt;/b&gt;&lt;p&gt;Basit bir düzenleyci ile bir diyalog açılır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3086" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3088" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3090" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3094" />
-      <source>Start the eric Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>Start the eric Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3106" />
-      <source>eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3108" />
+      <source>eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3110" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3114" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3116" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3118" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3126" />
-      <source>FIDO2 Security Key Management</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3128" />
+      <source>FIDO2 Security Key Management</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3130" />
       <source>FIDO2 Security Key Management...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3135" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>Start the FIDO2 Security Key Management tool</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
+      <location filename="../UI/UserInterface.py" line="3140" />
       <source>&lt;b&gt;FIDO2 Security Key Management&lt;/b&gt;&lt;p&gt;Start a tool to manage FIDO2 securit y keys.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Icon Editor</source>
-      <translation>İkon Düzenleyici</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3151" />
+      <source>Icon Editor</source>
+      <translation>İkon Düzenleyici</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3153" />
       <source>&amp;Icon Editor...</source>
       <translation>&amp;İkon Düzenleyici...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
-      <source>Start the eric Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3159" />
+      <source>Start the eric Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3161" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6631" />
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="6605" />
+      <location filename="../UI/UserInterface.py" line="3173" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3173" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <source>Take snapshots of a screen region</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3181" />
+      <source>Take snapshots of a screen region</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3193" />
+      <source>eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>eric PDF &amp;Viewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3199" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3201" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
-      <source>Preferences</source>
-      <translation>Seçenekler</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3212" />
+      <source>Preferences</source>
+      <translation>Seçenekler</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Seçenekler...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Set the prefered configuration</source>
-      <translation>tercih edilen ayarları yapınız</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3220" />
+      <source>Set the prefered configuration</source>
+      <translation>tercih edilen ayarları yapınız</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3222" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Tercihler&lt;/b&gt;&lt;p&gt;Uygulamanın ayarlama maddelerini tercih ettiğiniz değerlerle ayarlayınız.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Export Preferences</source>
-      <translation>Seçenekleri Dışa Aktar</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3233" />
+      <source>Export Preferences</source>
+      <translation>Seçenekleri Dışa Aktar</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>E&amp;xport Preferences...</source>
       <translation>Tercihleri Dı&amp;şa Aktar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
-      <source>Export the current configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3241" />
+      <source>Export the current configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
-      <source>Import Preferences</source>
-      <translation>Seçenekleri İçe Aktar</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3252" />
+      <source>Import Preferences</source>
+      <translation>Seçenekleri İçe Aktar</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
       <source>I&amp;mport Preferences...</source>
       <translation>Tercihleri İ&amp;çeri Aktar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3261" />
       <source>Import a previously exported configuration</source>
       <translation>daha önce dışa aktarılan ayrlamaları içe aktar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3262" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
-      <source>Export Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3273" />
+      <source>Export Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3281" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3290" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3292" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
-      <source>Import a previously exported theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3300" />
+      <source>Import a previously exported theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3302" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload APIs</source>
-      <translation>API'leri yeniden yükle</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload &amp;APIs</source>
-      <translation>&amp;API'leri yeniden yükle</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3311" />
-      <source>Reload the API information</source>
-      <translation>API bilgisini yeniden yükle</translation>
+      <source>Reload APIs</source>
+      <translation>API'leri yeniden yükle</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3311" />
+      <source>Reload &amp;APIs</source>
+      <translation>&amp;API'leri yeniden yükle</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Reload the API information</source>
+      <translation>API bilgisini yeniden yükle</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <location filename="../UI/UserInterface.py" line="3319" />
-      <source>Show external tools</source>
-      <translation>Harici araçları göster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Show external &amp;tools</source>
-      <translation>Karak&amp;ter tablosunu göster</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3329" />
+      <location filename="../UI/UserInterface.py" line="3321" />
+      <source>Show external tools</source>
+      <translation>Harici araçları göster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3323" />
+      <source>Show external &amp;tools</source>
+      <translation>Karak&amp;ter tablosunu göster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3331" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>View Profiles</source>
-      <translation>Görünüm Kesiti</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3341" />
+      <source>View Profiles</source>
+      <translation>Görünüm Kesiti</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3343" />
       <source>&amp;View Profiles...</source>
       <translation>&amp;Görünüm Kesiti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Configure view profiles</source>
-      <translation>Görünüm kesitlerini ayarla</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Configure view profiles</source>
+      <translation>Görünüm kesitlerini ayarla</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
-      <source>Toolbars</source>
-      <translation>Araççubuğu</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3362" />
+      <source>Toolbars</source>
+      <translation>Araççubuğu</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3364" />
       <source>Tool&amp;bars...</source>
       <translation>Araççu&amp;buğu...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
-      <source>Configure toolbars</source>
-      <translation>Araççubuğunu ayarla</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3370" />
+      <source>Configure toolbars</source>
+      <translation>Araççubuğunu ayarla</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3372" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
-      <source>Keyboard Shortcuts</source>
-      <translation>Klavye Kısayolları</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3383" />
+      <source>Keyboard Shortcuts</source>
+      <translation>Klavye Kısayolları</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Klavye Kı&amp;sayolları...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3389" />
-      <source>Set the keyboard shortcuts</source>
-      <translation>Klavye kısayollarını ayarla</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3391" />
+      <source>Set the keyboard shortcuts</source>
+      <translation>Klavye kısayollarını ayarla</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7600" />
-      <location filename="../UI/UserInterface.py" line="7581" />
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7555" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Kılavye Kısa Yollarını Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>Kılavye Kısa Yo&amp;llarını Dışa Aktar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Kılavye kısa yollarını dışa aktar</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3411" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Kılavye kısa yollarını dışa aktar</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3413" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7619" />
-      <location filename="../UI/UserInterface.py" line="3420" />
+      <location filename="../UI/UserInterface.py" line="7593" />
+      <location filename="../UI/UserInterface.py" line="3422" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Klavye kısayollarını İçe Aktar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>Klavye K&amp;ısayollarını İçe Aktar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3428" />
-      <source>Import the keyboard shortcuts</source>
-      <translation>Klavye kısayolları içeri aktarılıyor</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3430" />
+      <source>Import the keyboard shortcuts</source>
+      <translation>Klavye kısayolları içeri aktarılıyor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3432" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3440" />
-      <source>Manage SSL Certificates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3442" />
+      <source>Manage SSL Certificates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3444" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Manage the saved SSL certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3454" />
       <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3462" />
-      <source>Edit Message Filters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3464" />
+      <source>Edit Message Filters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3466" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3474" />
+      <location filename="../UI/UserInterface.py" line="3476" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <location filename="../UI/UserInterface.py" line="3487" />
-      <location filename="../UI/UserInterface.py" line="3485" />
-      <source>Clear private data</source>
-      <translation type="unfinished">Özel verileri temizle</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3489" />
+      <location filename="../UI/UserInterface.py" line="3487" />
+      <source>Clear private data</source>
+      <translation type="unfinished">Özel verileri temizle</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3506" />
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3508" />
+      <location filename="../UI/UserInterface.py" line="3507" />
       <source>Activate current editor</source>
       <translation>Geçerli düzenleyiciyi aktif yap</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3507" />
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3518" />
-      <location filename="../UI/UserInterface.py" line="3517" />
+      <location filename="../UI/UserInterface.py" line="3520" />
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>Show next</source>
       <translation>Sonrakini göster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3519" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3530" />
-      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <source>Show previous</source>
       <translation>Öncekini göster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3533" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3542" />
-      <location filename="../UI/UserInterface.py" line="3541" />
+      <location filename="../UI/UserInterface.py" line="3544" />
+      <location filename="../UI/UserInterface.py" line="3543" />
       <source>Switch between tabs</source>
       <translation>Sekmeler arasında değiştir</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3543" />
+      <location filename="../UI/UserInterface.py" line="3545" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3553" />
-      <source>Plugin Infos</source>
-      <translation>Eklenti Bilgisi</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3555" />
+      <source>Plugin Infos</source>
+      <translation>Eklenti Bilgisi</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>&amp;Plugin Infos...</source>
       <translation>Eklenti Bil&amp;gisi...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3561" />
-      <source>Show Plugin Infos</source>
-      <translation>Eklenti Bilgisini Göster</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3563" />
+      <source>Show Plugin Infos</source>
+      <translation>Eklenti Bilgisini Göster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3565" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eklenti Bilgileri...&lt;/b&gt;&lt;p&gt;Bu yüklenen eklentiler hakkında bazı bilgileri gösteren bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3581" />
-      <location filename="../UI/UserInterface.py" line="3573" />
-      <source>Install Plugins</source>
-      <translation>Eklenti Kur</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3575" />
-      <source>&amp;Install Plugins...</source>
-      <translation>Ekle&amp;nti Kur...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <source>Install Plugins</source>
+      <translation>Eklenti Kur</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>&amp;Install Plugins...</source>
+      <translation>Ekle&amp;nti Kur...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eklenti Kur...&lt;/b&gt;&lt;p&gt;Bu eklenti kurmak yada güncellemek için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3600" />
-      <location filename="../UI/UserInterface.py" line="3592" />
-      <source>Uninstall Plugin</source>
-      <translation>Eklenti Kaldır</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>Ekle&amp;nti Kaldır...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3602" />
+      <location filename="../UI/UserInterface.py" line="3594" />
+      <source>Uninstall Plugin</source>
+      <translation>Eklenti Kaldır</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3596" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>Ekle&amp;nti Kaldır...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eklenti Kaldır...&lt;/b&gt;&lt;p&gt;Bu bir eklentiyi kaldırmak için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3615" />
       <source>Plugin &amp;Repository...</source>
       <translation>Eklenti Hav&amp;uzu...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3619" />
-      <source>Show Plugins available for download</source>
-      <translation>İndirme için uygun olan eklentileri göster</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3621" />
+      <source>Show Plugins available for download</source>
+      <translation>İndirme için uygun olan eklentileri göster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3623" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eklenti Kaynak Havuzu...&lt;/b&gt;&lt;p&gt;Bu internette hazır olan eklentilerin listelendiği bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3651" />
-      <location filename="../UI/UserInterface.py" line="3650" />
+      <location filename="../UI/UserInterface.py" line="3653" />
+      <location filename="../UI/UserInterface.py" line="3652" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>Open Qt5 Documentation</source>
-      <translation type="unfinished">QT4 Belgelerini Aç {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3659" />
+      <source>Open Qt5 Documentation</source>
+      <translation type="unfinished">QT4 Belgelerini Aç {5 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3672" />
-      <location filename="../UI/UserInterface.py" line="3671" />
+      <location filename="../UI/UserInterface.py" line="3674" />
+      <location filename="../UI/UserInterface.py" line="3673" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3678" />
-      <source>Open Qt6 Documentation</source>
-      <translation type="unfinished">QT4 Belgelerini Aç {6 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3680" />
+      <source>Open Qt6 Documentation</source>
+      <translation type="unfinished">QT4 Belgelerini Aç {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3682" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3693" />
-      <location filename="../UI/UserInterface.py" line="3692" />
+      <location filename="../UI/UserInterface.py" line="3695" />
+      <location filename="../UI/UserInterface.py" line="3694" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3699" />
-      <source>Open PyQt5 Documentation</source>
-      <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Open PyQt5 Documentation</source>
+      <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3714" />
-      <location filename="../UI/UserInterface.py" line="3713" />
+      <location filename="../UI/UserInterface.py" line="3716" />
+      <location filename="../UI/UserInterface.py" line="3715" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">PyQt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3720" />
-      <source>Open PyQt6 Documentation</source>
-      <translation type="unfinished">PyQt4 Begelerini aç {6 ?}</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3722" />
+      <source>Open PyQt6 Documentation</source>
+      <translation type="unfinished">PyQt4 Begelerini aç {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3724" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3740" />
-      <location filename="../UI/UserInterface.py" line="3739" />
+      <location filename="../UI/UserInterface.py" line="3742" />
+      <location filename="../UI/UserInterface.py" line="3741" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3746" />
-      <source>Open Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3748" />
+      <source>Open Python 3 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3750" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3767" />
-      <location filename="../UI/UserInterface.py" line="3766" />
+      <location filename="../UI/UserInterface.py" line="3769" />
+      <location filename="../UI/UserInterface.py" line="3768" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3773" />
-      <source>Open eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3775" />
+      <source>Open eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3777" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3793" />
-      <location filename="../UI/UserInterface.py" line="3792" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3799" />
-      <source>Open PySide2 Documentation</source>
+      <location filename="../UI/UserInterface.py" line="3795" />
+      <location filename="../UI/UserInterface.py" line="3794" />
+      <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3801" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3819" />
-      <location filename="../UI/UserInterface.py" line="3818" />
-      <source>PySide6 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3825" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3827" />
+      <location filename="../UI/UserInterface.py" line="3803" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3863" />
+      <location filename="../UI/UserInterface.py" line="3839" />
       <source>Sessions</source>
       <translation type="unfinished">Oturumlar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3944" />
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>E&amp;xtras</source>
       <translation>İla&amp;veler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3954" />
+      <location filename="../UI/UserInterface.py" line="3930" />
       <source>Wi&amp;zards</source>
       <translation>Sihirba&amp;z</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3948" />
       <source>P&amp;lugins</source>
       <translation>Ek&amp;lentiler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="3957" />
       <source>Configure...</source>
       <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3990" />
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="3983" />
       <source>Select Tool Group</source>
       <translation>Araç Grubunu Seç</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4018" />
+      <location filename="../UI/UserInterface.py" line="3994" />
       <source>Se&amp;ttings</source>
       <translation>Ayar&amp;lar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4051" />
+      <location filename="../UI/UserInterface.py" line="4027" />
       <source>&amp;Window</source>
       <translation>&amp;Pencere</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4060" />
+      <location filename="../UI/UserInterface.py" line="4036" />
       <source>&amp;Windows</source>
       <translation type="unfinished">&amp;Pencereler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4064" />
+      <location filename="../UI/UserInterface.py" line="4040" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4068" />
+      <location filename="../UI/UserInterface.py" line="4044" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4087" />
+      <location filename="../UI/UserInterface.py" line="4063" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4106" />
+      <location filename="../UI/UserInterface.py" line="4082" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4090" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="4096" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Araççubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4133" />
+      <location filename="../UI/UserInterface.py" line="4109" />
       <source>&amp;Help</source>
       <translation>&amp;Yardım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4190" />
-      <location filename="../UI/UserInterface.py" line="4173" />
+      <location filename="../UI/UserInterface.py" line="4164" />
+      <location filename="../UI/UserInterface.py" line="4147" />
       <source>Tools</source>
       <translation>Araçlar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4192" />
-      <location filename="../UI/UserInterface.py" line="4177" />
+      <location filename="../UI/UserInterface.py" line="4166" />
+      <location filename="../UI/UserInterface.py" line="4151" />
       <source>Settings</source>
       <translation>Ayarlar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6361" />
-      <location filename="../UI/UserInterface.py" line="4193" />
-      <location filename="../UI/UserInterface.py" line="4178" />
+      <location filename="../UI/UserInterface.py" line="6335" />
+      <location filename="../UI/UserInterface.py" line="4167" />
+      <location filename="../UI/UserInterface.py" line="4152" />
       <source>Help</source>
       <translation>Yardım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4194" />
-      <location filename="../UI/UserInterface.py" line="4179" />
+      <location filename="../UI/UserInterface.py" line="4168" />
+      <location filename="../UI/UserInterface.py" line="4153" />
       <source>Profiles</source>
       <translation>Kesitler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4195" />
-      <location filename="../UI/UserInterface.py" line="4180" />
+      <location filename="../UI/UserInterface.py" line="4169" />
+      <location filename="../UI/UserInterface.py" line="4154" />
       <source>Plugins</source>
       <translation>Eklentiler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4191" />
+      <location filename="../UI/UserInterface.py" line="4165" />
       <source>Unittest</source>
       <translation>Birimtest</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4368" />
+      <location filename="../UI/UserInterface.py" line="4342" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4377" />
+      <location filename="../UI/UserInterface.py" line="4351" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4386" />
+      <location filename="../UI/UserInterface.py" line="4360" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4395" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4404" />
+      <location filename="../UI/UserInterface.py" line="4378" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
+      <location filename="../UI/UserInterface.py" line="4387" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4427" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4501" />
-      <location filename="../UI/UserInterface.py" line="4460" />
+      <location filename="../UI/UserInterface.py" line="4475" />
+      <location filename="../UI/UserInterface.py" line="4434" />
       <source>External Tools/{0}</source>
       <translation>Harici Araçlar/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4609" />
+      <location filename="../UI/UserInterface.py" line="4583" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation type="unfinished">&lt;h3&gt;Sürüm Numaraları&lt;/h3&gt;&lt;table&gt; {2&gt;?} {2&gt;?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4679" />
+      <location filename="../UI/UserInterface.py" line="4653" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4683" />
+      <location filename="../UI/UserInterface.py" line="4657" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4739" />
+      <location filename="../UI/UserInterface.py" line="4713" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>E-posta adresi veya posta  sunucu adresi  boş. Lütfen e-posta ayarlarını özellikler diyaloğundan giriniz.</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5048" />
+      <source>Restart application</source>
+      <translation>Uygulmayı yeniden başlat</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5049" />
+      <source>The application needs to be restarted. Do it now?</source>
+      <translation>Uygulama yeniden başlatılmaya ihtiyaç duyuyor. Şimdi yapılsın mı?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5073" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5074" />
-      <source>Restart application</source>
-      <translation>Uygulmayı yeniden başlat</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5075" />
-      <source>The application needs to be restarted. Do it now?</source>
-      <translation>Uygulama yeniden başlatılmaya ihtiyaç duyuyor. Şimdi yapılsın mı?</translation>
+      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+
+Shall the upgrade be done now?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5098" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5099" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5100" />
-      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5124" />
-      <source>Upgrade Eric</source>
+      <source>Upgrade Eric and PyQt6</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5125" />
-      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
-
-Shall the upgrade be done now?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5150" />
-      <source>Upgrade Eric and PyQt6</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5151" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5213" />
+      <location filename="../UI/UserInterface.py" line="5187" />
       <source>&amp;Builtin Tools</source>
       <translation>Ya&amp;pılandırma Araçları</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5233" />
+      <location filename="../UI/UserInterface.py" line="5207" />
       <source>&amp;Plugin Tools</source>
       <translation>Eklen&amp;ti Araçları</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5210" />
+      <source>&amp;User Tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5236" />
-      <source>&amp;User Tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5262" />
       <source>Configure Tool Groups ...</source>
       <translation>Alet Grupları Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5266" />
+      <location filename="../UI/UserInterface.py" line="5240" />
       <source>Configure current Tool Group ...</source>
       <translation>Geçerli alet grubunu ayarla...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5305" />
-      <location filename="../UI/UserInterface.py" line="5285" />
+      <location filename="../UI/UserInterface.py" line="5279" />
+      <location filename="../UI/UserInterface.py" line="5259" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5381" />
+      <location filename="../UI/UserInterface.py" line="5355" />
       <source>&amp;Show all</source>
       <translation>Hepsini Gö&amp;ster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5383" />
+      <location filename="../UI/UserInterface.py" line="5357" />
       <source>&amp;Hide all</source>
       <translation>&amp;Hepsini gizle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6498" />
-      <location filename="../UI/UserInterface.py" line="6487" />
-      <location filename="../UI/UserInterface.py" line="6439" />
-      <location filename="../UI/UserInterface.py" line="6429" />
-      <location filename="../UI/UserInterface.py" line="6252" />
-      <location filename="../UI/UserInterface.py" line="6242" />
-      <location filename="../UI/UserInterface.py" line="6184" />
-      <location filename="../UI/UserInterface.py" line="6174" />
+      <location filename="../UI/UserInterface.py" line="6472" />
+      <location filename="../UI/UserInterface.py" line="6461" />
+      <location filename="../UI/UserInterface.py" line="6413" />
+      <location filename="../UI/UserInterface.py" line="6403" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6216" />
+      <location filename="../UI/UserInterface.py" line="6158" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <source>Problem</source>
       <translation>Problem</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6499" />
-      <location filename="../UI/UserInterface.py" line="6488" />
-      <location filename="../UI/UserInterface.py" line="6440" />
-      <location filename="../UI/UserInterface.py" line="6430" />
-      <location filename="../UI/UserInterface.py" line="6253" />
-      <location filename="../UI/UserInterface.py" line="6243" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6175" />
+      <location filename="../UI/UserInterface.py" line="6473" />
+      <location filename="../UI/UserInterface.py" line="6462" />
+      <location filename="../UI/UserInterface.py" line="6414" />
+      <location filename="../UI/UserInterface.py" line="6404" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6740" />
-      <location filename="../UI/UserInterface.py" line="6651" />
-      <location filename="../UI/UserInterface.py" line="6534" />
-      <location filename="../UI/UserInterface.py" line="6511" />
-      <location filename="../UI/UserInterface.py" line="6452" />
-      <location filename="../UI/UserInterface.py" line="6399" />
-      <location filename="../UI/UserInterface.py" line="6377" />
-      <location filename="../UI/UserInterface.py" line="6328" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6275" />
-      <location filename="../UI/UserInterface.py" line="6216" />
-      <location filename="../UI/UserInterface.py" line="6207" />
+      <location filename="../UI/UserInterface.py" line="6714" />
+      <location filename="../UI/UserInterface.py" line="6625" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6302" />
+      <location filename="../UI/UserInterface.py" line="6293" />
+      <location filename="../UI/UserInterface.py" line="6258" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6190" />
+      <location filename="../UI/UserInterface.py" line="6181" />
       <source>Process Generation Error</source>
       <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6208" />
+      <location filename="../UI/UserInterface.py" line="6182" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6191" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6250" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6285" />
+      <location filename="../UI/UserInterface.py" line="6259" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6320" />
+      <location filename="../UI/UserInterface.py" line="6294" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6303" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6362" />
+      <location filename="../UI/UserInterface.py" line="6336" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>Hali hazırda kullanıcı göstericisi seçilmedi. Lütfen .birini belirlemek için özellikler diyaloğunu kullanının.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6378" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6374" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6453" />
+      <location filename="../UI/UserInterface.py" line="6427" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6512" />
+      <location filename="../UI/UserInterface.py" line="6486" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6535" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6632" />
+      <location filename="../UI/UserInterface.py" line="6606" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6652" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6685" />
-      <location filename="../UI/UserInterface.py" line="6675" />
+      <location filename="../UI/UserInterface.py" line="6659" />
+      <location filename="../UI/UserInterface.py" line="6649" />
       <source>External Tools</source>
       <translation>Harici Araçlar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6676" />
+      <location filename="../UI/UserInterface.py" line="6650" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6686" />
+      <location filename="../UI/UserInterface.py" line="6660" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6723" />
+      <location filename="../UI/UserInterface.py" line="6697" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6741" />
+      <location filename="../UI/UserInterface.py" line="6715" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6820" />
+      <location filename="../UI/UserInterface.py" line="6794" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7108" />
-      <location filename="../UI/UserInterface.py" line="7046" />
-      <location filename="../UI/UserInterface.py" line="7002" />
-      <location filename="../UI/UserInterface.py" line="6928" />
-      <location filename="../UI/UserInterface.py" line="6864" />
+      <location filename="../UI/UserInterface.py" line="7082" />
+      <location filename="../UI/UserInterface.py" line="7020" />
+      <location filename="../UI/UserInterface.py" line="6976" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6838" />
       <source>Documentation Missing</source>
       <translation>Eksik Belgeleme</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7109" />
-      <location filename="../UI/UserInterface.py" line="7047" />
-      <location filename="../UI/UserInterface.py" line="7003" />
-      <location filename="../UI/UserInterface.py" line="6929" />
-      <location filename="../UI/UserInterface.py" line="6865" />
+      <location filename="../UI/UserInterface.py" line="7083" />
+      <location filename="../UI/UserInterface.py" line="7021" />
+      <location filename="../UI/UserInterface.py" line="6977" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6839" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7090" />
-      <location filename="../UI/UserInterface.py" line="6972" />
+      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="6946" />
       <source>Documentation</source>
       <translation>Belgeleme</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6973" />
+      <location filename="../UI/UserInterface.py" line="6947" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7091" />
+      <location filename="../UI/UserInterface.py" line="7065" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7270" />
-      <location filename="../UI/UserInterface.py" line="7206" />
+      <location filename="../UI/UserInterface.py" line="7244" />
+      <location filename="../UI/UserInterface.py" line="7180" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7207" />
+      <location filename="../UI/UserInterface.py" line="7181" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7271" />
+      <location filename="../UI/UserInterface.py" line="7245" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7595" />
+      <location filename="../UI/UserInterface.py" line="7557" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7601" />
+      <location filename="../UI/UserInterface.py" line="7575" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7805" />
+      <location filename="../UI/UserInterface.py" line="7779" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7808" />
+      <location filename="../UI/UserInterface.py" line="7782" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7845" />
+      <location filename="../UI/UserInterface.py" line="7819" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7846" />
+      <location filename="../UI/UserInterface.py" line="7820" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7869" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7894" />
-      <location filename="../UI/UserInterface.py" line="7871" />
+      <location filename="../UI/UserInterface.py" line="7868" />
+      <location filename="../UI/UserInterface.py" line="7845" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8400" />
+      <location filename="../UI/UserInterface.py" line="8374" />
       <source>Drop Error</source>
       <translation>Düşme hatası</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8401" />
+      <location filename="../UI/UserInterface.py" line="8375" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; bir dosya değil.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8598" />
+      <location filename="../UI/UserInterface.py" line="8550" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8551" />
+      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8599" />
-      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
       <source>First time usage</source>
       <translation>İlk kullanım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8600" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8622" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8790" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8791" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_zh_CN.ts	Thu Apr 10 18:39:29 2025 +0200
+++ b/src/eric7/i18n/eric7_zh_CN.ts	Sun Apr 13 14:46:18 2025 +0200
@@ -1739,47 +1739,47 @@
   <context>
     <name>BackgroundService</name>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="168" />
+      <location filename="../Utilities/BackgroundService.py" line="169" />
       <source>{0} not configured.</source>
       <translation>{0} 未被配置。</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="230" />
-      <source>Initialization of Background Service</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>Initialization of Background Service</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="232" />
       <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="244" />
-      <source>Restart background client?</source>
-      <translation>重启后台客户端?</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="245" />
+      <source>Restart background client?</source>
+      <translation>重启后台客户端?</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="246" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation>&lt;p&gt; &lt;b&gt;{0}&lt;/b&gt; 的背景客户端因意外终止。它被多种插件(如区别检查器)使用。&lt;/p&gt;&lt;p&gt; 选择 &lt;ul&gt;&lt;li&gt;&lt;b&gt;“是”&lt;/b&gt; 放弃最后任务,重启客户端 &lt;/li&gt;&lt;li&gt;&lt;b&gt;“重试”&lt;/b&gt; 重启客户端和最后任务&lt;/li&gt;&lt;li&gt;&lt;b&gt;“否”&lt;/b&gt; 关闭客户端。&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;注意:通过打开和接受首选项对话框,或重新加载、改变工程亦可重启客户端。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="274" />
+      <location filename="../Utilities/BackgroundService.py" line="275" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="515" />
+      <location filename="../Utilities/BackgroundService.py" line="516" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation>Erics 后台客户端因未知原因断开连接。</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="524" />
-      <source>Background client disconnected.</source>
-      <translation>后台客户端已断开连接。</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="525" />
+      <source>Background client disconnected.</source>
+      <translation>后台客户端已断开连接。</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="526" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation>&lt;b&gt;{0}&lt;/b&gt; 的后台客户端因未知原因中断了连接。&lt;br&gt;是否对其重新启动?</translation>
     </message>
@@ -3770,7 +3770,7 @@
       <translation>按下以清除主机列表</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="526" />
+      <location filename="../Cooperation/ChatWidget.py" line="528" />
       <location filename="../Cooperation/ChatWidget.ui" line="0" />
       <source>Clear</source>
       <translation>清除</translation>
@@ -3801,156 +3801,156 @@
       <translation>显示服务器状态</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="322" />
+      <location filename="../Cooperation/ChatWidget.py" line="324" />
       <location filename="../Cooperation/ChatWidget.py" line="85" />
       <source>Start Server</source>
       <translation>启动服务器</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="153" />
+      <location filename="../Cooperation/ChatWidget.py" line="155" />
       <source>! Unknown command: {0}
 </source>
       <translation>! 未知命令: {0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="176" />
+      <location filename="../Cooperation/ChatWidget.py" line="178" />
       <source>* {0} has joined.
 </source>
       <translation>* {0} 已连接。
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="193" />
+      <location filename="../Cooperation/ChatWidget.py" line="195" />
       <source>New User</source>
       <translation>新用户</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="194" />
+      <location filename="../Cooperation/ChatWidget.py" line="196" />
       <source>{0} has joined.</source>
       <translation>* {0} 已链接。</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="217" />
+      <location filename="../Cooperation/ChatWidget.py" line="219" />
       <source>* {0} has left.
 </source>
       <translation>* {0} 剩余。
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="226" />
+      <location filename="../Cooperation/ChatWidget.py" line="228" />
       <source>User Left</source>
       <translation>剩余用户</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="227" />
+      <location filename="../Cooperation/ChatWidget.py" line="229" />
       <source>{0} has left.</source>
       <translation>{0} 已剩下。</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="255" />
+      <location filename="../Cooperation/ChatWidget.py" line="257" />
       <source>Message from &lt;{0}&gt;</source>
       <translation>来自 &lt;{0}&gt; 的消息</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="330" />
+      <location filename="../Cooperation/ChatWidget.py" line="332" />
       <source>Stop Server</source>
       <translation>停止服务器</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="336" />
+      <location filename="../Cooperation/ChatWidget.py" line="338" />
       <source>! Server Error: {0}
 </source>
       <translation>! 服务器错误:{0}
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="347" />
+      <location filename="../Cooperation/ChatWidget.py" line="349" />
       <source>Disconnect</source>
       <translation>断开连接</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="351" />
+      <location filename="../Cooperation/ChatWidget.py" line="353" />
       <source>Connect</source>
       <translation>连接</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="515" />
+      <location filename="../Cooperation/ChatWidget.py" line="517" />
       <source>Copy</source>
       <translation>复制</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="519" />
+      <location filename="../Cooperation/ChatWidget.py" line="521" />
       <source>Cut all</source>
       <translation>剪切全部</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="522" />
+      <location filename="../Cooperation/ChatWidget.py" line="524" />
       <source>Copy all</source>
       <translation>复制全部</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="530" />
+      <location filename="../Cooperation/ChatWidget.py" line="532" />
       <source>Save</source>
       <translation>保存</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="588" />
-      <location filename="../Cooperation/ChatWidget.py" line="573" />
+      <location filename="../Cooperation/ChatWidget.py" line="590" />
+      <location filename="../Cooperation/ChatWidget.py" line="575" />
       <source>Save Chat</source>
       <translation>保存聊天</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="575" />
+      <location filename="../Cooperation/ChatWidget.py" line="577" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation>文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="589" />
+      <location filename="../Cooperation/ChatWidget.py" line="591" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="604" />
+      <location filename="../Cooperation/ChatWidget.py" line="606" />
       <source>Error saving Chat</source>
       <translation>错误保存对话</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="605" />
+      <location filename="../Cooperation/ChatWidget.py" line="607" />
       <source>&lt;p&gt;The chat contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;对话内容不能被写入 &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;原因: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="644" />
+      <location filename="../Cooperation/ChatWidget.py" line="646" />
       <source>Kick User</source>
       <translation>踢出用户</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="648" />
+      <location filename="../Cooperation/ChatWidget.py" line="650" />
       <source>Ban User</source>
       <translation>禁止用户</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="652" />
+      <location filename="../Cooperation/ChatWidget.py" line="654" />
       <source>Ban and Kick User</source>
       <translation>禁止并踢出用户</translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="683" />
+      <location filename="../Cooperation/ChatWidget.py" line="685" />
       <source>* {0} has been kicked.
 </source>
       <translation>* {0} 已被踢出。
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="700" />
+      <location filename="../Cooperation/ChatWidget.py" line="702" />
       <source>* {0} has been banned.
 </source>
       <translation>* {0} 已被禁止。
 </translation>
     </message>
     <message>
-      <location filename="../Cooperation/ChatWidget.py" line="717" />
+      <location filename="../Cooperation/ChatWidget.py" line="719" />
       <source>* {0} has been banned and kicked.
 </source>
       <translation>* {0} 已被禁止并踢出。
@@ -4900,32 +4900,32 @@
   <context>
     <name>CodeDocumentationViewer</name>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="220" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="222" />
       <source>Code Info Provider:</source>
       <translation>代码信息提供者:</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="238" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="240" />
       <source>Select the code info provider</source>
       <translation>选择代码信息提供者</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="239" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="241" />
       <source>&lt;disabled&gt;</source>
       <translation>&lt;不可用&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="420" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="422" />
       <source>No documentation available</source>
       <translation>无文档可用</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="441" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="443" />
       <source>No source code documentation provider has been registered. This function has been disabled.</source>
       <translation>没有已注册的源代码文档提供者。此功能已被禁用。</translation>
     </message>
     <message>
-      <location filename="../UI/CodeDocumentationViewer.py" line="449" />
+      <location filename="../UI/CodeDocumentationViewer.py" line="451" />
       <source>This function has been disabled.</source>
       <translation>此功能已被禁用。</translation>
     </message>
@@ -8835,10 +8835,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="608" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="505" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="467" />
-      <location filename="../Project/CreateDialogCodeDialog.py" line="455" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="604" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="501" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="463" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="451" />
       <location filename="../Project/CreateDialogCodeDialog.py" line="419" />
       <source>Code Generation</source>
       <translation>代码生成</translation>
@@ -8849,22 +8849,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="456" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="452" />
       <source>&lt;p&gt;No code template file available for project type "{0}".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="468" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="464" />
       <source>&lt;p&gt;Could not open the code template file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="506" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="502" />
       <source>&lt;p&gt;Could not open the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/CreateDialogCodeDialog.py" line="609" />
+      <location filename="../Project/CreateDialogCodeDialog.py" line="605" />
       <source>&lt;p&gt;Could not write the source file "{0}".&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9369,676 +9369,676 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="207" />
+      <location filename="../Debugger/DebugUI.py" line="210" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="234" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="237" />
       <source>Run Script</source>
       <translation>运行脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="236" />
+      <location filename="../Debugger/DebugUI.py" line="239" />
       <source>&amp;Run Script...</source>
       <translation>运行脚本(&amp;R)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="242" />
+      <location filename="../Debugger/DebugUI.py" line="245" />
       <source>Run the current Script</source>
       <translation>运行当前脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="244" />
+      <location filename="../Debugger/DebugUI.py" line="247" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;运行脚本&lt;/b&gt;&lt;p&gt;设置命令行参数,并在调试器之外运行脚本。如果文件未对更改进行保存,则可能会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2386" />
-      <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="255" />
+      <location filename="../Debugger/DebugUI.py" line="2389" />
+      <location filename="../Debugger/DebugUI.py" line="2383" />
+      <location filename="../Debugger/DebugUI.py" line="258" />
       <source>Run Project</source>
       <translation>运行项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="257" />
+      <location filename="../Debugger/DebugUI.py" line="260" />
       <source>Run &amp;Project...</source>
       <translation>运行项目(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="263" />
+      <location filename="../Debugger/DebugUI.py" line="266" />
       <source>Run the current Project</source>
       <translation>运行当前项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="265" />
+      <location filename="../Debugger/DebugUI.py" line="268" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;运行项目&lt;/b&gt;&lt;p&gt;设置命令行参数,并在调试器之外运行当前项目。如果当前项目未对更改进行保存,则可能会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="277" />
+      <location filename="../Debugger/DebugUI.py" line="280" />
       <source>Coverage run of Script</source>
       <translation>脚本覆盖率测试</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="279" />
+      <location filename="../Debugger/DebugUI.py" line="282" />
       <source>Coverage run of Script...</source>
       <translation>脚本覆盖率测试…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="286" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>对当前脚本进行覆盖率测试运行</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>对当前脚本进行覆盖率测试运行</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;脚本覆盖率测试&lt;/b&gt;&lt;p&gt;设置命令行参数,并在覆盖率分析工具的控制下运行脚本。如果文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="300" />
+      <location filename="../Debugger/DebugUI.py" line="303" />
       <source>Coverage run of Project</source>
       <translation>项目覆盖率测试</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="302" />
+      <location filename="../Debugger/DebugUI.py" line="305" />
       <source>Coverage run of Project...</source>
       <translation>项目覆盖率测试…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="309" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>对当前项目进行覆盖率测试运行</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>对当前项目进行覆盖率测试运行</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;项目覆盖率测试&lt;/b&gt;&lt;p&gt;设置命令行参数,并在覆盖率分析工具的控制下运行项目。如果当前项目的文件未保存则会先行保存。&lt;/P&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="324" />
+      <location filename="../Debugger/DebugUI.py" line="327" />
       <source>Profile Script</source>
       <translation>剖析脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="326" />
+      <location filename="../Debugger/DebugUI.py" line="329" />
       <source>Profile Script...</source>
       <translation>剖析脚本…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="332" />
+      <location filename="../Debugger/DebugUI.py" line="335" />
       <source>Profile the current Script</source>
       <translation>剖析当前脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="334" />
+      <location filename="../Debugger/DebugUI.py" line="337" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;剖析脚本&lt;/b&gt;&lt;p&gt;设置命令行参数,并剖析脚本。如果文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="344" />
+      <location filename="../Debugger/DebugUI.py" line="347" />
       <source>Profile Project</source>
       <translation>剖析项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="346" />
+      <location filename="../Debugger/DebugUI.py" line="349" />
       <source>Profile Project...</source>
       <translation>剖析项目…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="352" />
+      <location filename="../Debugger/DebugUI.py" line="355" />
       <source>Profile the current Project</source>
       <translation>剖析当前项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="354" />
+      <location filename="../Debugger/DebugUI.py" line="357" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;剖析项目&lt;/b&gt;&lt;p&gt;设置命令行参数,并剖析当前项目。如果当前项目的文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="365" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="368" />
       <source>Debug Script</source>
       <translation>调试脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="367" />
+      <location filename="../Debugger/DebugUI.py" line="370" />
       <source>&amp;Debug Script...</source>
       <translation>调试脚本(&amp;D)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="373" />
+      <location filename="../Debugger/DebugUI.py" line="376" />
       <source>Debug the current Script</source>
       <translation>调试当前脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="375" />
+      <location filename="../Debugger/DebugUI.py" line="378" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;调试脚本&lt;/b&gt;&lt;p&gt;设置命令行参数,并将当前行设为当前编辑窗口首先执行的 Python 声明。如果文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2579" />
-      <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="387" />
+      <location filename="../Debugger/DebugUI.py" line="2582" />
+      <location filename="../Debugger/DebugUI.py" line="2576" />
+      <location filename="../Debugger/DebugUI.py" line="390" />
       <source>Debug Project</source>
       <translation>调试项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="389" />
+      <location filename="../Debugger/DebugUI.py" line="392" />
       <source>Debug &amp;Project...</source>
       <translation>调试项目(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="395" />
+      <location filename="../Debugger/DebugUI.py" line="398" />
       <source>Debug the current Project</source>
       <translation>调试当前项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="397" />
+      <location filename="../Debugger/DebugUI.py" line="400" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;调试当前项目&lt;/b&gt;&lt;p&gt;设置命令行参数,并将当前行设为当前项目主脚本首先执行的 Python 声明。如果当前项目的文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2895" />
-      <location filename="../Debugger/DebugUI.py" line="411" />
-      <location filename="../Debugger/DebugUI.py" line="409" />
+      <location filename="../Debugger/DebugUI.py" line="2898" />
+      <location filename="../Debugger/DebugUI.py" line="414" />
+      <location filename="../Debugger/DebugUI.py" line="412" />
       <source>Restart</source>
       <translation type="unfinished">重启</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="417" />
+      <location filename="../Debugger/DebugUI.py" line="420" />
       <source>Restart the last debugged script</source>
       <translation>重新启动最后调试的脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="419" />
+      <location filename="../Debugger/DebugUI.py" line="422" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="628" />
-      <location filename="../Debugger/DebugUI.py" line="433" />
-      <location filename="../Debugger/DebugUI.py" line="431" />
+      <location filename="../Debugger/DebugUI.py" line="631" />
+      <location filename="../Debugger/DebugUI.py" line="436" />
+      <location filename="../Debugger/DebugUI.py" line="434" />
       <source>Stop</source>
       <translation>中止</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="439" />
+      <location filename="../Debugger/DebugUI.py" line="442" />
       <source>Stop the running script.</source>
       <translation>中止正在运行的脚本。</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="441" />
+      <location filename="../Debugger/DebugUI.py" line="444" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="452" />
+      <location filename="../Debugger/DebugUI.py" line="455" />
       <source>Continue</source>
       <translation>继续</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="454" />
+      <location filename="../Debugger/DebugUI.py" line="457" />
       <source>&amp;Continue</source>
       <translation>继续(&amp;C)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="460" />
+      <location filename="../Debugger/DebugUI.py" line="463" />
       <source>Continue running the program from the current line</source>
       <translation>从当前行继续运行程序</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="462" />
+      <location filename="../Debugger/DebugUI.py" line="465" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;继续&lt;/b&gt;&lt;p&gt;从当前行继续运行程序。当程序终止或到达断点的时候,程序也将中止。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="473" />
+      <location filename="../Debugger/DebugUI.py" line="476" />
       <source>Continue to Cursor</source>
       <translation>继续到光标</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="475" />
+      <location filename="../Debugger/DebugUI.py" line="478" />
       <source>Continue &amp;To Cursor</source>
       <translation>继续到光标(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="482" />
+      <location filename="../Debugger/DebugUI.py" line="485" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>继续运行程序从当前行到当前光标所在位置</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="488" />
+      <location filename="../Debugger/DebugUI.py" line="491" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;继续到光标&lt;/b&gt;&lt;p&gt;继续运行程序从当前行到当前光标所在位置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="498" />
+      <location filename="../Debugger/DebugUI.py" line="501" />
       <source>Continue Until</source>
       <translation type="unfinished">继续直到</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="500" />
+      <location filename="../Debugger/DebugUI.py" line="503" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished">继续&amp;直到</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="507" />
+      <location filename="../Debugger/DebugUI.py" line="510" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="513" />
+      <location filename="../Debugger/DebugUI.py" line="516" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="524" />
+      <location filename="../Debugger/DebugUI.py" line="527" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished">将指令指针移动到光标上</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="526" />
+      <location filename="../Debugger/DebugUI.py" line="529" />
       <source>&amp;Jump To Cursor</source>
       <translation>&amp;跳转到光标处</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="533" />
+      <location filename="../Debugger/DebugUI.py" line="536" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="539" />
+      <location filename="../Debugger/DebugUI.py" line="542" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="553" />
+      <location filename="../Debugger/DebugUI.py" line="556" />
       <source>Single Step</source>
       <translation>单步执行</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="555" />
+      <location filename="../Debugger/DebugUI.py" line="558" />
       <source>Sin&amp;gle Step</source>
       <translation>单步执行(&amp;Q)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="561" />
+      <location filename="../Debugger/DebugUI.py" line="564" />
       <source>Execute a single Python statement</source>
       <translation>执行单条 Python 语句</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="563" />
+      <location filename="../Debugger/DebugUI.py" line="566" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;单步执行&lt;/b&gt;&lt;p&gt;执行单条 Python 语句。如果该语句是 &lt;tt&gt;import&lt;/tt&gt; 语句、类构造函数或者函数调用的方法,则由调试器 控制下一行语句。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="575" />
+      <location filename="../Debugger/DebugUI.py" line="578" />
       <source>Step Over</source>
       <translation>跳过</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="577" />
+      <location filename="../Debugger/DebugUI.py" line="580" />
       <source>Step &amp;Over</source>
       <translation>跳过(&amp;O)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="584" />
+      <location filename="../Debugger/DebugUI.py" line="587" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>保持在当前框架中执行单条 Python 语句</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="590" />
+      <location filename="../Debugger/DebugUI.py" line="593" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;跳过&lt;/b&gt;&lt;p&gt;保持在相同框架中执行单条 Python 语句。如果该语句是 &lt;tt&gt;import&lt;/tt&gt; 语句、类构造函数或者函数调用的方法,则则由调试器控制下一行语句。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="603" />
+      <location filename="../Debugger/DebugUI.py" line="606" />
       <source>Step Out</source>
       <translation>跳出</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="605" />
+      <location filename="../Debugger/DebugUI.py" line="608" />
       <source>Step Ou&amp;t</source>
       <translation>跳出(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="612" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>执行 Python 语句直到离开当前框架</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>执行 Python 语句直到离开当前框架</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;跳出&lt;/b&gt;&lt;p&gt;执行 Python 语句直到离开当前框架。如果该语句处于 &lt;tt&gt;import&lt;/tt&gt; 声明、类构造函数或函数调用的方法中,在离开当前框架后将由调试器进行控制。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="630" />
+      <location filename="../Debugger/DebugUI.py" line="633" />
       <source>&amp;Stop</source>
       <translation>中止(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="636" />
+      <location filename="../Debugger/DebugUI.py" line="639" />
       <source>Stop debugging</source>
       <translation>中止调试</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="638" />
+      <location filename="../Debugger/DebugUI.py" line="641" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;中止&lt;/b&gt;&lt;p&gt;中止正在运行中的调试会话。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="644" />
+      <location filename="../Debugger/DebugUI.py" line="647" />
       <source>Variables Type Filter</source>
       <translation>变量类型过滤器</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="645" />
+      <location filename="../Debugger/DebugUI.py" line="648" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>变量类型过滤器(&amp;B)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="651" />
+      <location filename="../Debugger/DebugUI.py" line="654" />
       <source>Configure variables type filter</source>
       <translation>配置变量类型过滤器</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="653" />
+      <location filename="../Debugger/DebugUI.py" line="656" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;变量类型过滤器&lt;/b&gt;&lt;p&gt;配置变量类型过滤器。在调试会话期间,只有未被选择的变量类型会被显示在全局或局部变量窗口中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="664" />
+      <location filename="../Debugger/DebugUI.py" line="667" />
       <source>Exceptions Filter</source>
       <translation>异常过滤器</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="665" />
+      <location filename="../Debugger/DebugUI.py" line="668" />
       <source>&amp;Exceptions Filter...</source>
       <translation>异常过滤器(&amp;E)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="671" />
+      <location filename="../Debugger/DebugUI.py" line="674" />
       <source>Configure exceptions filter</source>
       <translation>配置异常过滤器</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="673" />
+      <location filename="../Debugger/DebugUI.py" line="676" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;异常过滤器&lt;/b&gt;&lt;p&gt;配置异常过滤器。在调试会话期间,只有已列出的异常类型会被加亮显示。&lt;/p&gt;&lt;p&gt;注意:所有未处理的异常在过滤器列表中将被取消加亮。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="685" />
+      <location filename="../Debugger/DebugUI.py" line="688" />
       <source>Ignored Exceptions</source>
       <translation>忽略的异常</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="686" />
+      <location filename="../Debugger/DebugUI.py" line="689" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>忽略的异常(&amp;I)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="692" />
+      <location filename="../Debugger/DebugUI.py" line="695" />
       <source>Configure ignored exceptions</source>
       <translation>配置忽略的异常</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="694" />
+      <location filename="../Debugger/DebugUI.py" line="697" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;忽略的异常&lt;/b&gt;&lt;p&gt;配置忽略的异常。在调试会话期间,只有已列出的异常类型会被加亮显示。&lt;/p&gt;&lt;p&gt;注意:未处理的异常不能被忽略。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="716" />
-      <location filename="../Debugger/DebugUI.py" line="710" />
-      <location filename="../Debugger/DebugUI.py" line="708" />
+      <location filename="../Debugger/DebugUI.py" line="719" />
+      <location filename="../Debugger/DebugUI.py" line="713" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Toggle Breakpoint</source>
       <translation>切换断点</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="714" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="718" />
+      <location filename="../Debugger/DebugUI.py" line="721" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;切换断点&lt;/b&gt;&lt;p&gt;在当前编辑器的当前行切换断点。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="736" />
-      <location filename="../Debugger/DebugUI.py" line="728" />
+      <location filename="../Debugger/DebugUI.py" line="739" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Edit Breakpoint</source>
       <translation>编辑断点</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="730" />
+      <location filename="../Debugger/DebugUI.py" line="733" />
       <source>Edit Breakpoint...</source>
       <translation>编辑断点…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="734" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="738" />
+      <location filename="../Debugger/DebugUI.py" line="741" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;编辑断点&lt;/b&gt;&lt;p&gt;打开一个对话框编辑断点属性。对当前编辑器的当前行起作用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="756" />
-      <location filename="../Debugger/DebugUI.py" line="750" />
-      <location filename="../Debugger/DebugUI.py" line="748" />
+      <location filename="../Debugger/DebugUI.py" line="759" />
+      <location filename="../Debugger/DebugUI.py" line="753" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Next Breakpoint</source>
       <translation>下一个断点</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="754" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="758" />
+      <location filename="../Debugger/DebugUI.py" line="761" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;下一个断点&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的下一个断点。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="775" />
-      <location filename="../Debugger/DebugUI.py" line="769" />
-      <location filename="../Debugger/DebugUI.py" line="767" />
+      <location filename="../Debugger/DebugUI.py" line="778" />
+      <location filename="../Debugger/DebugUI.py" line="772" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Previous Breakpoint</source>
       <translation>前一个断点</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="773" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="777" />
+      <location filename="../Debugger/DebugUI.py" line="780" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;前一个断点&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的前一个断点。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="793" />
-      <location filename="../Debugger/DebugUI.py" line="787" />
-      <location filename="../Debugger/DebugUI.py" line="786" />
+      <location filename="../Debugger/DebugUI.py" line="796" />
+      <location filename="../Debugger/DebugUI.py" line="790" />
+      <location filename="../Debugger/DebugUI.py" line="789" />
       <source>Clear Breakpoints</source>
       <translation>清除断点</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="795" />
+      <location filename="../Debugger/DebugUI.py" line="798" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;清除断点&lt;/b&gt;&lt;p&gt;清除所有编辑器的断点。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="819" />
+      <location filename="../Debugger/DebugUI.py" line="822" />
       <source>&amp;Debug</source>
       <translation>调试(&amp;D)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="821" />
+      <location filename="../Debugger/DebugUI.py" line="824" />
       <source>Sta&amp;rt</source>
       <translation>开始</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="823" />
+      <location filename="../Debugger/DebugUI.py" line="826" />
       <source>&amp;Breakpoints</source>
       <translation>断点(&amp;B)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="866" />
-      <location filename="../Debugger/DebugUI.py" line="864" />
+      <location filename="../Debugger/DebugUI.py" line="869" />
+      <location filename="../Debugger/DebugUI.py" line="867" />
       <source>Start</source>
       <translation>开始</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="879" />
-      <location filename="../Debugger/DebugUI.py" line="877" />
+      <location filename="../Debugger/DebugUI.py" line="882" />
+      <location filename="../Debugger/DebugUI.py" line="880" />
       <source>Debug</source>
       <translation>调试</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1342" />
+      <location filename="../Debugger/DebugUI.py" line="1345" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1348" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1353" />
+      <location filename="../Debugger/DebugUI.py" line="1356" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1365" />
+      <location filename="../Debugger/DebugUI.py" line="1368" />
       <source>Program terminated</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1401" />
+      <location filename="../Debugger/DebugUI.py" line="1404" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>被调试的程序包含一个未指定的语法错误。</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1421" />
+      <location filename="../Debugger/DebugUI.py" line="1424" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1449" />
+      <location filename="../Debugger/DebugUI.py" line="1452" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>产生了一个未处理的异常。详细信息参见命令行窗口。</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1498" />
+      <location filename="../Debugger/DebugUI.py" line="1501" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1516" />
+      <location filename="../Debugger/DebugUI.py" line="1519" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1532" />
+      <location filename="../Debugger/DebugUI.py" line="1535" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1594" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1609" />
+      <location filename="../Debugger/DebugUI.py" line="1612" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>被调试的程序意外终止。</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1670" />
+      <location filename="../Debugger/DebugUI.py" line="1673" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1717" />
+      <location filename="../Debugger/DebugUI.py" line="1720" />
       <source>Breakpoint Condition Error</source>
       <translation>断点条件错误</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1718" />
+      <location filename="../Debugger/DebugUI.py" line="1721" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1779" />
+      <location filename="../Debugger/DebugUI.py" line="1782" />
       <source>Watch Expression Error</source>
       <translation>监视表达式出错</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1780" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1810" />
+      <location filename="../Debugger/DebugUI.py" line="1813" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1815" />
+      <location filename="../Debugger/DebugUI.py" line="1818" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1821" />
+      <location filename="../Debugger/DebugUI.py" line="1824" />
       <source>Watch expression already exists</source>
       <translation>监视表达式已存在</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1986" />
-      <location filename="../Debugger/DebugUI.py" line="1977" />
+      <location filename="../Debugger/DebugUI.py" line="1989" />
+      <location filename="../Debugger/DebugUI.py" line="1980" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1979" />
+      <location filename="../Debugger/DebugUI.py" line="1982" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2387" />
-      <location filename="../Debugger/DebugUI.py" line="2189" />
-      <location filename="../Debugger/DebugUI.py" line="1987" />
+      <location filename="../Debugger/DebugUI.py" line="2390" />
+      <location filename="../Debugger/DebugUI.py" line="2192" />
+      <location filename="../Debugger/DebugUI.py" line="1990" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>当前项目未定义主脚本。终止</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2188" />
-      <location filename="../Debugger/DebugUI.py" line="2179" />
+      <location filename="../Debugger/DebugUI.py" line="2191" />
+      <location filename="../Debugger/DebugUI.py" line="2182" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2181" />
+      <location filename="../Debugger/DebugUI.py" line="2184" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2580" />
+      <location filename="../Debugger/DebugUI.py" line="2583" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>当前项目未定义主脚本。不能进行调试。</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3252" />
+      <location filename="../Debugger/DebugUI.py" line="3255" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -33439,7 +33439,6 @@
   <context>
     <name>HelpDocumentationPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="64" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="60" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="56" />
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.py" line="52" />
@@ -33566,21 +33565,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished">PySide2 文档</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>Enter the PySide2 documentation directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
-      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
-      <translation type="unfinished">&lt;b&gt;注意:&lt;/b&gt;留空将使用PYSIDE2DOCDIR环境变量(如果设置了)。</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/HelpDocumentationPage.ui" line="0" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished">PySide6 文档</translation>
     </message>
@@ -33594,6 +33578,14 @@
       <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE6DOCDIR environment variable, if set.</source>
       <translation type="unfinished">&lt;b&gt;注意:&lt;/b&gt;留空将使用PYSIDE6DOCDIR环境变量(如果设置了)。</translation>
     </message>
+    <message>
+      <source>PySide2 Documentation</source>
+      <translation type="vanished">PySide2 文档</translation>
+    </message>
+    <message>
+      <source>&lt;b&gt;Note&lt;/b&gt;: Leave empty to use the PYSIDE2DOCDIR environment variable, if set.</source>
+      <translation type="vanished">&lt;b&gt;注意:&lt;/b&gt;留空将使用PYSIDE2DOCDIR环境变量(如果设置了)。</translation>
+    </message>
   </context>
   <context>
     <name>HelpIndexWidget</name>
@@ -33996,29 +33988,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
       <source>eric API Documentation</source>
       <translation type="unfinished">eric API 文档</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Python 3 文档</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Qt5 文档</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Qt6 文档</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Python 3 文档</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">PyQt5 文档</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Qt6 文档</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="453" />
@@ -34027,76 +34009,79 @@
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="454" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="455" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="512" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="514" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="513" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="701" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="700" />
       <source>Help Engine</source>
       <translation type="unfinished">帮助引擎</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="725" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="724" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="736" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="735" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="764" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="763" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="769" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="768" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="862" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="842" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="861" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="841" />
       <source>Clear History</source>
       <translation type="unfinished">清除历史记录</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="966" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="965" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1024" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1023" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1060" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1054" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <source>Qt5 Documentation</source>
+      <translation type="vanished">Qt5 文档</translation>
+    </message>
+    <message>
+      <source>PyQt5 Documentation</source>
+      <translation type="vanished">PyQt5 文档</translation>
+    </message>
   </context>
   <context>
     <name>HelpViewersPage</name>
@@ -52202,7 +52187,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="415" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="416" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="221" />
       <source>No connection to Internet.</source>
       <translation type="unfinished" />
@@ -52238,24 +52223,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="435" />
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="411" />
-      <source>Error downloading dictionary file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="436" />
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="412" />
+      <source>Error downloading dictionary file</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="437" />
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="413" />
       <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="450" />
-      <source>Error downloading dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="451" />
+      <source>Error downloading dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="452" />
       <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -54130,7 +54115,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="459" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="460" />
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
@@ -54146,25 +54131,25 @@
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="192" />
       <source>%n supported serial device(s) detected.</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="205" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="206" />
       <source>{0} - {1} ({2})</source>
       <comment>board name, description, port name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="228" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="229" />
       <source>No supported serial devices detected.</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="233" />
       <source>
 %n unknown device(s) for manual selection.</source>
       <translation type="unfinished">
@@ -54172,17 +54157,17 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="239" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="240" />
       <source>Manual Selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="250" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="251" />
       <source>WebREPL (manual)</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../MicroPython/MicroPythonWidget.py" line="269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="270" />
       <source>
 %n WebREPL connection(s) defined.</source>
       <translation type="unfinished">
@@ -54190,39 +54175,39 @@
       </translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="329" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="300" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
       <source>Unknown MicroPython Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="301" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="302" />
       <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href="mailto:{1}"&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="313" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="314" />
       <source>{0} (0x{1:04x}/0x{2:04x})</source>
       <comment>description, VID, PID</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="331" />
       <source>Would you like to add them to the list of manually configured devices?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="454" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="455" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="491" />
-      <source>No device attached</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="492" />
+      <source>No device attached</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="493" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -54231,353 +54216,353 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="522" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="523" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="731" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="718" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="719" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="720" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="726" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1198" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1190" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="729" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1191" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="730" />
       <source>unknown</source>
       <translation type="unfinished">未知</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="772" />
-      <source>Run Script</source>
-      <translation type="unfinished">运行脚本</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
-      <source>There is no editor open. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
-      <source>The current editor does not contain a script. Abort...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="773" />
+      <source>Run Script</source>
+      <translation type="unfinished">运行脚本</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="774" />
+      <source>There is no editor open. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="783" />
+      <source>The current editor does not contain a script. Abort...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="792" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="827" />
-      <source>Start Chart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="828" />
+      <source>Start Chart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="829" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="843" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="844" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="860" />
-      <source>Unsaved Chart Data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="861" />
+      <source>Unsaved Chart Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="862" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="909" />
-      <source>Start File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="910" />
+      <source>Start File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="911" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="930" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="931" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1017" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1018" />
       <source>Downloads</source>
       <translation type="unfinished">下载</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
       <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1067" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Implementation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1071" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1079" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1080" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Local Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1083" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1084" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1087" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1088" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1691" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1099" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1091" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1092" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1730" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1727" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1095" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1096" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1503" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1105" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1504" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1106" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1529" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1520" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1109" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1530" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1110" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1130" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1131" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1137" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1140" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1141" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1150" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Configure</source>
       <translation type="unfinished">配置</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1153" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1154" />
       <source>Quit</source>
       <translation type="unfinished">退出</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1162" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1163" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1173" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
-      <source>Device Version Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1174" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1170" />
+      <source>Device Version Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1175" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1204" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1205" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1220" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1211" />
-      <source>Device Implementation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
-      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1212" />
+      <source>Device Implementation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1213" />
+      <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1296" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1297" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1304" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1305" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1320" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1321" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1332" />
-      <source>Local Date and Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1333" />
+      <source>Local Date and Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1334" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1374" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1357" />
-      <source>Date and Time</source>
-      <translation type="unfinished">日期和时间</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
-      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1375" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1358" />
+      <source>Date and Time</source>
+      <translation type="unfinished">日期和时间</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1359" />
+      <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1376" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1399" />
-      <source>Error handling device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1400" />
+      <source>Error handling device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1401" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1442" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1443" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1468" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1469" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1478" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1479" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1488" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1489" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1521" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1522" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1613" />
-      <source>Add Unknown Devices</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1614" />
+      <source>Add Unknown Devices</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1664" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1665" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1716" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1717" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -54585,17 +54570,17 @@
   <context>
     <name>MicroPythonWindow</name>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="81" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="83" />
       <source>MicroPython / CircuitPython Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Open Browser</source>
       <translation type="unfinished">打开浏览器</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWindow.py" line="231" />
+      <location filename="../MicroPython/MicroPythonWindow.py" line="235" />
       <source>Could not start a web browser</source>
       <translation type="unfinished">无法启动网络浏览器</translation>
     </message>
@@ -59873,164 +59858,164 @@
   <context>
     <name>Pip</name>
     <message>
-      <location filename="../PipInterface/Pip.py" line="157" />
+      <location filename="../PipInterface/Pip.py" line="161" />
       <source>python exited with an error ({0}).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="166" />
+      <location filename="../PipInterface/Pip.py" line="170" />
       <source>python did not finish within 30 seconds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="168" />
+      <location filename="../PipInterface/Pip.py" line="172" />
       <source>python could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="229" />
+      <location filename="../PipInterface/Pip.py" line="233" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="254" />
+      <location filename="../PipInterface/Pip.py" line="258" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="255" />
+      <location filename="../PipInterface/Pip.py" line="259" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="308" />
+      <location filename="../PipInterface/Pip.py" line="312" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="355" />
+      <location filename="../PipInterface/Pip.py" line="359" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="487" />
-      <location filename="../PipInterface/Pip.py" line="469" />
+      <location filename="../PipInterface/Pip.py" line="491" />
+      <location filename="../PipInterface/Pip.py" line="473" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="470" />
+      <location filename="../PipInterface/Pip.py" line="474" />
       <source>There are no packages except 'eric-ide' or 'PyQt6' left for upgrade.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="533" />
+      <location filename="../PipInterface/Pip.py" line="537" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="564" />
+      <location filename="../PipInterface/Pip.py" line="568" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="586" />
+      <location filename="../PipInterface/Pip.py" line="590" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="621" />
-      <location filename="../PipInterface/Pip.py" line="611" />
+      <location filename="../PipInterface/Pip.py" line="625" />
+      <location filename="../PipInterface/Pip.py" line="615" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="612" />
+      <location filename="../PipInterface/Pip.py" line="753" />
+      <location filename="../PipInterface/Pip.py" line="616" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="622" />
+      <location filename="../PipInterface/Pip.py" line="626" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="642" />
+      <location filename="../PipInterface/Pip.py" line="646" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="776" />
-      <location filename="../PipInterface/Pip.py" line="702" />
-      <location filename="../PipInterface/Pip.py" line="672" />
-      <location filename="../PipInterface/Pip.py" line="663" />
+      <location filename="../PipInterface/Pip.py" line="780" />
+      <location filename="../PipInterface/Pip.py" line="706" />
+      <location filename="../PipInterface/Pip.py" line="676" />
+      <location filename="../PipInterface/Pip.py" line="667" />
       <source>Uninstall Packages</source>
       <translation type="unfinished">卸载包</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
-      <location filename="../PipInterface/Pip.py" line="703" />
-      <location filename="../PipInterface/Pip.py" line="664" />
+      <location filename="../PipInterface/Pip.py" line="781" />
+      <location filename="../PipInterface/Pip.py" line="707" />
+      <location filename="../PipInterface/Pip.py" line="668" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="720" />
+      <location filename="../PipInterface/Pip.py" line="724" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="759" />
-      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="763" />
+      <location filename="../PipInterface/Pip.py" line="752" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="760" />
+      <location filename="../PipInterface/Pip.py" line="764" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="787" />
+      <location filename="../PipInterface/Pip.py" line="791" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1198" />
+      <location filename="../PipInterface/Pip.py" line="1203" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1224" />
-      <location filename="../PipInterface/Pip.py" line="1215" />
+      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1220" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1216" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1248" />
-      <location filename="../PipInterface/Pip.py" line="1241" />
+      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1246" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1242" />
+      <location filename="../PipInterface/Pip.py" line="1247" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1273" />
-      <location filename="../PipInterface/Pip.py" line="1265" />
+      <location filename="../PipInterface/Pip.py" line="1278" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1266" />
+      <location filename="../PipInterface/Pip.py" line="1271" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -60950,205 +60935,205 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="737" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="731" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
       <source>Cleanup Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="732" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="733" />
       <source>The environment cleanup was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="739" />
       <source>Some leftover package directories could not been removed. Delete them manually.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="834" />
-      <source>Search PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="835" />
+      <source>Search PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="836" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="854" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="855" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="856" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="857" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="860" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="862" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="863" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="869" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="870" />
       <source>Install</source>
       <translation type="unfinished">安装</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1048" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="871" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1049" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="872" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="874" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="875" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="877" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="878" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="884" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="885" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="886" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="887" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="889" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="890" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="892" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="893" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="896" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="897" />
       <source>Install from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="900" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="901" />
       <source>Uninstall from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="905" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="906" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="912" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="913" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="914" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="915" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="917" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="918" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="920" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="921" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="923" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="924" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="940" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="941" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="944" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="945" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="948" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="949" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="952" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="953" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="959" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="960" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="962" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="963" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="967" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="968" />
       <source>Configure...</source>
       <translation type="unfinished">配置…</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1211" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1198" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1187" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1212" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1199" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1188" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1213" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1200" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1189" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1421" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1422" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished">{0} {1}</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1442" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1443" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1445" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1446" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1585" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1560" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1586" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1561" />
       <source>unknown</source>
       <translation type="unfinished">未知</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1582" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1583" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
@@ -61174,7 +61159,7 @@
   <context>
     <name>PipPackagesWindow</name>
     <message>
-      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <location filename="../PipInterface/PipPackagesWindow.py" line="60" />
       <source>Manage Packages</source>
       <translation type="unfinished" />
     </message>
@@ -61691,52 +61676,52 @@
   <context>
     <name>PluginManager</name>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="230" />
+      <location filename="../PluginManager/PluginManager.py" line="232" />
       <source>Could not create a package for {0}.</source>
       <translation>无法为 {0} 创建包。</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="262" />
+      <location filename="../PluginManager/PluginManager.py" line="264" />
       <source>The internal plugin directory &lt;b&gt;{0}&lt;/b&gt; does not exits.</source>
       <translation>内置的插件目录 &lt;b&gt;{0}&lt;/b&gt; 不存在。</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="439" />
+      <location filename="../PluginManager/PluginManager.py" line="441" />
       <source>Module is missing the 'autoactivate' attribute.</source>
       <translation>模块丢失“autoactivate”属性。</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="450" />
+      <location filename="../PluginManager/PluginManager.py" line="452" />
       <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source>
       <translation>模块丢失“pluginType”和/或“pluginTypename”属性。</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="478" />
+      <location filename="../PluginManager/PluginManager.py" line="480" />
       <source>Module failed to load. Error: {0}</source>
       <translation>模块加载失败。错误:{0}</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="661" />
+      <location filename="../PluginManager/PluginManager.py" line="663" />
       <source>Incompatible plugin activation method.</source>
       <translation>插件激活方法不兼容。</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1269" />
+      <location filename="../PluginManager/PluginManager.py" line="1271" />
       <source>Plugin Manager Error</source>
       <translation>插件管理错误</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1270" />
+      <location filename="../PluginManager/PluginManager.py" line="1272" />
       <source>&lt;p&gt;The plugin download directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Please configure it via the configuration dialog.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;插件下载目录 &lt;b&gt;{0}&lt;/b&gt; 无法创建。请使用配置对话框进行配置。&lt;/p&gt;&lt;p&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1358" />
+      <location filename="../PluginManager/PluginManager.py" line="1360" />
       <source>Error downloading file</source>
       <translation>下载文件出错</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginManager.py" line="1359" />
+      <location filename="../PluginManager/PluginManager.py" line="1361" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法从 {0} 下载指定文件。&lt;/p&gt;&lt;p&gt;错误:{1}&lt;/p&gt;</translation>
     </message>
@@ -62622,18 +62607,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1911" />
+      <location filename="../Preferences/__init__.py" line="1891" />
       <source>Export Preferences</source>
       <translation>导出首选项</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1940" />
-      <location filename="../Preferences/__init__.py" line="1913" />
+      <location filename="../Preferences/__init__.py" line="1920" />
+      <location filename="../Preferences/__init__.py" line="1893" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>属性文件 (*.ini);;所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1938" />
+      <location filename="../Preferences/__init__.py" line="1918" />
       <source>Import Preferences</source>
       <translation>导入首选项</translation>
     </message>
@@ -63161,113 +63146,98 @@
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="204" />
-      <source>Translation Extractor (Python, PySide2)</source>
+      <source>Translation Extractor (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="213" />
-      <source>Forms Compiler (Python, PySide2)</source>
+      <source>Forms Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ProgramsDialog.py" line="222" />
-      <source>Resource Compiler (Python, PySide2)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="232" />
-      <source>Translation Extractor (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="241" />
-      <source>Forms Compiler (Python, PySide6)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="250" />
       <source>Resource Compiler (Python, PySide6)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="265" />
+      <location filename="../Preferences/ProgramsDialog.py" line="237" />
       <source>conda Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="275" />
+      <location filename="../Preferences/ProgramsDialog.py" line="247" />
       <source>PyPI Package Management</source>
       <translation type="unfinished">PyPi包管理</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="527" />
-      <location filename="../Preferences/ProgramsDialog.py" line="524" />
-      <location filename="../Preferences/ProgramsDialog.py" line="508" />
-      <location filename="../Preferences/ProgramsDialog.py" line="378" />
-      <location filename="../Preferences/ProgramsDialog.py" line="311" />
-      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <location filename="../Preferences/ProgramsDialog.py" line="499" />
+      <location filename="../Preferences/ProgramsDialog.py" line="496" />
+      <location filename="../Preferences/ProgramsDialog.py" line="480" />
+      <location filename="../Preferences/ProgramsDialog.py" line="350" />
+      <location filename="../Preferences/ProgramsDialog.py" line="283" />
+      <location filename="../Preferences/ProgramsDialog.py" line="266" />
       <source>(unknown)</source>
       <translation>(未知)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="298" />
+      <location filename="../Preferences/ProgramsDialog.py" line="270" />
       <source>Spell Checker - PyEnchant</source>
       <translation>拼写检查器——PyEnchant</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="315" />
+      <location filename="../Preferences/ProgramsDialog.py" line="287" />
       <source>Source Highlighter - Pygments</source>
       <translation>代码高亮工具——Pygments</translation>
     </message>
     <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="294" />
+      <source>MicroPython - MPY Cross Compiler</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="301" />
+      <source>MicroPython - ESP Tool</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ProgramsDialog.py" line="312" />
+      <source>MicroPython - PyBoard Flasher</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ProgramsDialog.py" line="322" />
-      <source>MicroPython - MPY Cross Compiler</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="329" />
-      <source>MicroPython - ESP Tool</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="340" />
-      <source>MicroPython - PyBoard Flasher</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="350" />
       <source>MicroPython - STLink Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="360" />
+      <location filename="../Preferences/ProgramsDialog.py" line="332" />
       <source>MicroPython - STLink Flasher</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="382" />
+      <location filename="../Preferences/ProgramsDialog.py" line="354" />
       <source>Code Assistant - Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="462" />
+      <location filename="../Preferences/ProgramsDialog.py" line="434" />
       <source>(not configured)</source>
       <translation>(未配置)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="497" />
+      <location filename="../Preferences/ProgramsDialog.py" line="469" />
       <source>(module not found)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="530" />
+      <location filename="../Preferences/ProgramsDialog.py" line="502" />
       <source>(not executable)</source>
       <translation>(不可执行)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ProgramsDialog.py" line="576" />
-      <location filename="../Preferences/ProgramsDialog.py" line="544" />
-      <location filename="../Preferences/ProgramsDialog.py" line="542" />
+      <location filename="../Preferences/ProgramsDialog.py" line="548" />
+      <location filename="../Preferences/ProgramsDialog.py" line="516" />
+      <location filename="../Preferences/ProgramsDialog.py" line="514" />
       <source>(not found)</source>
       <translation>(未找到)</translation>
     </message>
@@ -63326,1647 +63296,1637 @@
     </message>
     <message>
       <location filename="../Project/Project.py" line="362" />
-      <source>PySide2 GUI</source>
+      <source>PySide6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="363" />
-      <source>PySide2 Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="367" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="466" />
-      <location filename="../Project/Project.py" line="454" />
-      <location filename="../Project/Project.py" line="443" />
+      <location filename="../Project/Project.py" line="461" />
+      <location filename="../Project/Project.py" line="449" />
+      <location filename="../Project/Project.py" line="438" />
       <source>Registering Project Type</source>
       <translation>注册项目类型</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="444" />
+      <location filename="../Project/Project.py" line="439" />
       <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="455" />
+      <location filename="../Project/Project.py" line="450" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="467" />
+      <location filename="../Project/Project.py" line="462" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="772" />
+      <location filename="../Project/Project.py" line="767" />
       <source>All Files (*)</source>
       <translation type="unfinished">所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1321" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1579" />
-      <location filename="../Project/Project.py" line="1553" />
-      <location filename="../Project/Project.py" line="1517" />
-      <location filename="../Project/Project.py" line="1435" />
-      <location filename="../Project/Project.py" line="1396" />
-      <location filename="../Project/Project.py" line="1371" />
-      <location filename="../Project/Project.py" line="1334" />
+      <location filename="../Project/Project.py" line="1567" />
+      <location filename="../Project/Project.py" line="1541" />
+      <location filename="../Project/Project.py" line="1505" />
+      <location filename="../Project/Project.py" line="1423" />
+      <location filename="../Project/Project.py" line="1384" />
+      <location filename="../Project/Project.py" line="1359" />
+      <location filename="../Project/Project.py" line="1322" />
       <source>Please save the project first.</source>
       <translation>请先保存项目。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1370" />
+      <location filename="../Project/Project.py" line="1358" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1412" />
-      <location filename="../Project/Project.py" line="1395" />
+      <location filename="../Project/Project.py" line="1400" />
+      <location filename="../Project/Project.py" line="1383" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1402" />
+      <location filename="../Project/Project.py" line="1390" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1421" />
+      <location filename="../Project/Project.py" line="1409" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1422" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1516" />
+      <location filename="../Project/Project.py" line="1504" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1552" />
+      <location filename="../Project/Project.py" line="1540" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1595" />
-      <location filename="../Project/Project.py" line="1578" />
+      <location filename="../Project/Project.py" line="1583" />
+      <location filename="../Project/Project.py" line="1566" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1585" />
+      <location filename="../Project/Project.py" line="1573" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1604" />
+      <location filename="../Project/Project.py" line="1592" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1777" />
+      <location filename="../Project/Project.py" line="1765" />
       <source>Add Language</source>
       <translation>添加语言</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1778" />
+      <location filename="../Project/Project.py" line="1766" />
       <source>You have to specify a translation pattern first.</source>
       <translation>必须先指定一个翻译样式。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1919" />
+      <location filename="../Project/Project.py" line="1905" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1946" />
-      <location filename="../Project/Project.py" line="1920" />
+      <location filename="../Project/Project.py" line="1932" />
+      <location filename="../Project/Project.py" line="1906" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1945" />
+      <location filename="../Project/Project.py" line="1931" />
       <source>Delete translation</source>
       <translation>删除翻译</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2098" />
-      <location filename="../Project/Project.py" line="2081" />
+      <location filename="../Project/Project.py" line="2084" />
+      <location filename="../Project/Project.py" line="2067" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2200" />
-      <location filename="../Project/Project.py" line="2082" />
+      <location filename="../Project/Project.py" line="2186" />
+      <location filename="../Project/Project.py" line="2068" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2099" />
+      <location filename="../Project/Project.py" line="2085" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2097" />
       <source>Add file</source>
       <translation>添加文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2296" />
-      <location filename="../Project/Project.py" line="2112" />
+      <location filename="../Project/Project.py" line="2282" />
+      <location filename="../Project/Project.py" line="2098" />
       <source>The target directory must not be empty.</source>
       <translation>目标文件夹不能为空。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2172" />
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2185" />
+      <location filename="../Project/Project.py" line="2158" />
+      <location filename="../Project/Project.py" line="2138" />
       <source>Add Directory</source>
       <translation type="unfinished">添加文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2153" />
+      <location filename="../Project/Project.py" line="2139" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;源文件夹不包含任何属于所选类别的文件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2173" />
+      <location filename="../Project/Project.py" line="2159" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2307" />
-      <location filename="../Project/Project.py" line="2295" />
+      <location filename="../Project/Project.py" line="2293" />
+      <location filename="../Project/Project.py" line="2281" />
       <source>Add directory</source>
       <translation>添加文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2308" />
+      <location filename="../Project/Project.py" line="2294" />
       <source>The source directory must not be empty.</source>
       <translation>源文件夹不能为空。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2422" />
-      <location filename="../Project/Project.py" line="2404" />
-      <location filename="../Project/Project.py" line="2388" />
-      <location filename="../Project/Project.py" line="2381" />
+      <location filename="../Project/Project.py" line="2408" />
+      <location filename="../Project/Project.py" line="2390" />
+      <location filename="../Project/Project.py" line="2374" />
+      <location filename="../Project/Project.py" line="2367" />
       <source>Rename File</source>
       <translation>重命名文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8089" />
-      <location filename="../Project/Project.py" line="3909" />
-      <location filename="../Project/Project.py" line="2405" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2423" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2690" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2691" />
-      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2719" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2720" />
-      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2853" />
-      <source>Create project directory</source>
-      <translation>创建项目文件夹</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2854" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3682" />
-      <location filename="../Project/Project.py" line="2954" />
-      <source>Create project management directory</source>
-      <translation>创建项目管理目录</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3683" />
-      <location filename="../Project/Project.py" line="2955" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;项目目录 &lt;b&gt;{0}&lt;/b&gt; 不可写。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2995" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2996" />
-      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3463" />
-      <location filename="../Project/Project.py" line="3020" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3464" />
-      <location filename="../Project/Project.py" line="3021" />
-      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3712" />
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3144" />
-      <location filename="../Project/Project.py" line="3112" />
-      <location filename="../Project/Project.py" line="3094" />
-      <location filename="../Project/Project.py" line="3069" />
-      <location filename="../Project/Project.py" line="3031" />
-      <source>New Project</source>
-      <translation>新建项目</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3032" />
-      <source>Add existing files to the project?</source>
-      <translation>是否将已有文件添加到项目中?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3713" />
-      <location filename="../Project/Project.py" line="3070" />
-      <source>Select Version Control System</source>
-      <translation>选择版本控制系统</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3174" />
-      <location filename="../Project/Project.py" line="3095" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>是否编辑版本控制系统命令选项?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3113" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>是否将项目文件添加到仓库?</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3150" />
-      <location filename="../Project/Project.py" line="3139" />
-      <source>None</source>
-      <translation>无</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3145" />
-      <source>Select version control system for the project</source>
-      <translation>为项目选择版本控制系统</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3356" />
-      <source>Translation Pattern</source>
-      <translation>翻译样式</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3357" />
-      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
-      <translation>为翻译文件输入路径样式(在语言代码的相应位置使用“'%language%”):</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3661" />
-      <source>Open Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="8075" />
-      <location filename="../Project/Project.py" line="8069" />
-      <location filename="../Project/Project.py" line="8059" />
-      <location filename="../Project/Project.py" line="3894" />
-      <location filename="../Project/Project.py" line="3884" />
-      <location filename="../Project/Project.py" line="3663" />
+      <location filename="../Project/Project.py" line="3895" />
+      <location filename="../Project/Project.py" line="2391" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2409" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2676" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2677" />
+      <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2705" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2706" />
+      <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2839" />
+      <source>Create project directory</source>
+      <translation>创建项目文件夹</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2840" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3668" />
+      <location filename="../Project/Project.py" line="2940" />
+      <source>Create project management directory</source>
+      <translation>创建项目管理目录</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3669" />
+      <location filename="../Project/Project.py" line="2941" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;项目目录 &lt;b&gt;{0}&lt;/b&gt; 不可写。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2981" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2982" />
+      <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3449" />
+      <location filename="../Project/Project.py" line="3006" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3450" />
+      <location filename="../Project/Project.py" line="3007" />
+      <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3698" />
+      <location filename="../Project/Project.py" line="3159" />
+      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3098" />
+      <location filename="../Project/Project.py" line="3080" />
+      <location filename="../Project/Project.py" line="3055" />
+      <location filename="../Project/Project.py" line="3017" />
+      <source>New Project</source>
+      <translation>新建项目</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3018" />
+      <source>Add existing files to the project?</source>
+      <translation>是否将已有文件添加到项目中?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3699" />
+      <location filename="../Project/Project.py" line="3056" />
+      <source>Select Version Control System</source>
+      <translation>选择版本控制系统</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3160" />
+      <location filename="../Project/Project.py" line="3081" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>是否编辑版本控制系统命令选项?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3099" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>是否将项目文件添加到仓库?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3125" />
+      <source>None</source>
+      <translation>无</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3131" />
+      <source>Select version control system for the project</source>
+      <translation>为项目选择版本控制系统</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3342" />
+      <source>Translation Pattern</source>
+      <translation>翻译样式</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3343" />
+      <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
+      <translation>为翻译文件输入路径样式(在语言代码的相应位置使用“'%language%”):</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3647" />
+      <source>Open Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8061" />
+      <location filename="../Project/Project.py" line="8055" />
+      <location filename="../Project/Project.py" line="8045" />
+      <location filename="../Project/Project.py" line="3880" />
+      <location filename="../Project/Project.py" line="3870" />
+      <location filename="../Project/Project.py" line="3649" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="3892" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3878" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3947" />
+      <location filename="../Project/Project.py" line="3933" />
       <source>Close Project</source>
       <translation>关闭项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3948" />
+      <location filename="../Project/Project.py" line="3934" />
       <source>The current project has unsaved changes.</source>
       <translation>当前项目的更改未保存。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4134" />
+      <location filename="../Project/Project.py" line="4098" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4149" />
-      <location filename="../Project/Project.py" line="4113" />
+      <location filename="../Project/Project.py" line="4135" />
+      <location filename="../Project/Project.py" line="4099" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>项目包含 %n 文件有语法错误。</numerusform>
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4793" />
       <source>New project</source>
       <translation>新建项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4809" />
+      <location filename="../Project/Project.py" line="4795" />
       <source>&amp;New...</source>
       <translation>新建(&amp;N)…</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4801" />
+      <source>Generate a new project</source>
+      <translation>生成新项目</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4803" />
+      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;新建…&lt;/b&gt;&lt;p&gt;打开一个对话框为新项目输入信息。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4813" />
+      <source>Open project</source>
+      <translation>打开项目</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4815" />
-      <source>Generate a new project</source>
-      <translation>生成新项目</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4817" />
-      <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;新建…&lt;/b&gt;&lt;p&gt;打开一个对话框为新项目输入信息。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4827" />
-      <source>Open project</source>
-      <translation>打开项目</translation>
+      <source>&amp;Open...</source>
+      <translation>打开(&amp;O)…</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4821" />
+      <source>Open an existing project</source>
+      <translation>打开一个已有项目</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4823" />
+      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;打开…&lt;/b&gt;&lt;p&gt;打开一个已有项目。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4829" />
-      <source>&amp;Open...</source>
-      <translation>打开(&amp;O)…</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4835" />
-      <source>Open an existing project</source>
-      <translation>打开一个已有项目</translation>
+      <source>Open remote project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4831" />
+      <source>Open (Remote)...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4837" />
-      <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;打开…&lt;/b&gt;&lt;p&gt;打开一个已有项目。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4843" />
-      <source>Open remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4845" />
-      <source>Open (Remote)...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4853" />
+      <location filename="../Project/Project.py" line="4839" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4862" />
+      <location filename="../Project/Project.py" line="4848" />
       <source>Reload project</source>
       <translation>重新载入项目</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4850" />
+      <source>Re&amp;load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4856" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4858" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4864" />
-      <source>Re&amp;load</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4870" />
-      <source>Reload the current project</source>
-      <translation type="unfinished" />
+      <source>Close project</source>
+      <translation>关闭项目</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4866" />
+      <source>&amp;Close</source>
+      <translation>关闭(&amp;C)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4872" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4878" />
-      <source>Close project</source>
-      <translation>关闭项目</translation>
+      <source>Close the current project</source>
+      <translation>关闭当前项目</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4874" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;关闭&lt;/b&gt;&lt;p&gt;关闭当前项目。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4880" />
-      <source>&amp;Close</source>
-      <translation>关闭(&amp;C)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4886" />
-      <source>Close the current project</source>
-      <translation>关闭当前项目</translation>
+      <source>Save project</source>
+      <translation>保存项目</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5177" />
+      <location filename="../Project/Project.py" line="4882" />
+      <source>&amp;Save</source>
+      <translation>保存(&amp;S)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4888" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;关闭&lt;/b&gt;&lt;p&gt;关闭当前项目。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4894" />
-      <source>Save project</source>
-      <translation>保存项目</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5191" />
-      <location filename="../Project/Project.py" line="4896" />
-      <source>&amp;Save</source>
-      <translation>保存(&amp;S)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>保存当前项目</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4890" />
+      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;保存&lt;/b&gt;&lt;p&gt;保存当前项目&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
+      <source>Save project as</source>
+      <translation>项目另存为</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4898" />
+      <source>Save &amp;as...</source>
+      <translation>另存为(&amp;A)…</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="4904" />
-      <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;保存&lt;/b&gt;&lt;p&gt;保存当前项目&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4910" />
-      <source>Save project as</source>
-      <translation>项目另存为</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4912" />
-      <source>Save &amp;as...</source>
-      <translation>另存为(&amp;A)…</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation>将当前项目另存为一个新文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4920" />
+      <location filename="../Project/Project.py" line="4906" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;另存为&lt;/b&gt;&lt;p&gt;将当前项目另存为一个新文件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4929" />
+      <location filename="../Project/Project.py" line="4915" />
       <source>Save project as (Remote)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4931" />
+      <location filename="../Project/Project.py" line="4917" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4938" />
+      <location filename="../Project/Project.py" line="4924" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4927" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4957" />
+      <location filename="../Project/Project.py" line="4943" />
       <source>Add files to project</source>
       <translation>将文件添加到项目中</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4959" />
+      <location filename="../Project/Project.py" line="4945" />
       <source>Add &amp;files...</source>
       <translation>添加文件(&amp;F)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4965" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>Add files to the current project</source>
       <translation>将文件添加到当前项目中</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4967" />
+      <location filename="../Project/Project.py" line="4953" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation>&lt;b&gt;添加文件…&lt;/b&gt;&lt;p&gt;打开一个对话框为当前项目添加文件。添加的位置由文件扩展名决定。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4978" />
+      <location filename="../Project/Project.py" line="4964" />
       <source>Add directory to project</source>
       <translation>将文件夹添加到项目中</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4980" />
+      <location filename="../Project/Project.py" line="4966" />
       <source>Add directory...</source>
       <translation>添加文件夹…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4987" />
+      <location filename="../Project/Project.py" line="4973" />
       <source>Add a directory to the current project</source>
       <translation>为当前工程添加文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4990" />
+      <location filename="../Project/Project.py" line="4976" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;添加文件夹…&lt;/b&gt;&lt;p&gt;打开一个对话框将文件夹添加到当前项目中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5000" />
+      <location filename="../Project/Project.py" line="4986" />
       <source>Add translation to project</source>
       <translation>将翻译添加到项目中</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5002" />
+      <location filename="../Project/Project.py" line="4988" />
       <source>Add &amp;translation...</source>
       <translation>添加翻译(&amp;T)…</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="4995" />
+      <source>Add a translation to the current project</source>
+      <translation>将翻译添加到当前项目中</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4998" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;添加翻译…&lt;/b&gt;&lt;p&gt;打开一个对话框将翻译添加到当前项目中。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5008" />
+      <source>Search new files</source>
+      <translation>搜索新文件</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5009" />
-      <source>Add a translation to the current project</source>
-      <translation>将翻译添加到当前项目中</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5012" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;添加翻译…&lt;/b&gt;&lt;p&gt;打开一个对话框将翻译添加到当前项目中。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5022" />
-      <source>Search new files</source>
-      <translation>搜索新文件</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>搜索新文件(&amp;H)…</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5015" />
+      <source>Search new files in the project directory.</source>
+      <translation>在项目文件夹中搜索新文件。</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5017" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5027" />
+      <source>Search Project File</source>
+      <translation type="unfinished">搜索项目文件</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5028" />
+      <source>Search Project File...</source>
+      <translation type="unfinished">搜索项目文件…</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5029" />
-      <source>Search new files in the project directory.</source>
-      <translation>在项目文件夹中搜索新文件。</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5031" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File</source>
-      <translation type="unfinished">搜索项目文件</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5042" />
-      <source>Search Project File...</source>
-      <translation type="unfinished">搜索项目文件…</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5048" />
+      <location filename="../Project/Project.py" line="5034" />
       <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5050" />
+      <location filename="../Project/Project.py" line="5036" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5059" />
+      <location filename="../Project/Project.py" line="5045" />
       <source>Project properties</source>
       <translation>项目属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5061" />
+      <location filename="../Project/Project.py" line="5047" />
       <source>&amp;Properties...</source>
       <translation>属性(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5067" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Show the project properties</source>
       <translation>显示项目属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5069" />
+      <location filename="../Project/Project.py" line="5055" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;属性…&lt;/b&gt;&lt;p&gt;显示一个对话框可编辑项目属性。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5078" />
+      <location filename="../Project/Project.py" line="5064" />
       <source>User project properties</source>
       <translation>用户项目属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5080" />
+      <location filename="../Project/Project.py" line="5066" />
       <source>&amp;User Properties...</source>
       <translation>用户属性(&amp;U)…</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5073" />
+      <source>Show the user specific project properties</source>
+      <translation>显示用户指定的项目属性</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5076" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;用户属性…&lt;/b&gt;&lt;p&gt;显示一个对话框可编辑用户指定的项目属性。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5086" />
+      <source>Filetype Associations</source>
+      <translation>文件类型关联</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5087" />
-      <source>Show the user specific project properties</source>
-      <translation>显示用户指定的项目属性</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5090" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;用户属性…&lt;/b&gt;&lt;p&gt;显示一个对话框可编辑用户指定的项目属性。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5100" />
-      <source>Filetype Associations</source>
-      <translation>文件类型关联</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation>文件类型关联…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5108" />
+      <location filename="../Project/Project.py" line="5094" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5097" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5110" />
+      <source>Lexer Associations</source>
+      <translation type="unfinished">词法分析器联想</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5111" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5124" />
-      <source>Lexer Associations</source>
-      <translation type="unfinished">词法分析器联想</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation type="unfinished">词法分析器联想…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5132" />
+      <location filename="../Project/Project.py" line="5118" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5135" />
+      <location filename="../Project/Project.py" line="5121" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5153" />
+      <location filename="../Project/Project.py" line="5139" />
       <source>Debugger Properties</source>
       <translation>调试器属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5154" />
+      <location filename="../Project/Project.py" line="5140" />
       <source>Debugger &amp;Properties...</source>
       <translation>调试器属性(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5160" />
+      <location filename="../Project/Project.py" line="5146" />
       <source>Show the debugger properties</source>
       <translation>显示调试器属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5162" />
+      <location filename="../Project/Project.py" line="5148" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;调试器属性…&lt;/b&gt;&lt;p&gt;显示一个对话框以编辑项目指定的调试器设定。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5158" />
       <source>Load</source>
       <translation>载入</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5173" />
+      <location filename="../Project/Project.py" line="5159" />
       <source>&amp;Load</source>
       <translation>载入(&amp;L)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5179" />
+      <location filename="../Project/Project.py" line="5165" />
       <source>Load the debugger properties</source>
       <translation>载入调试器属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5181" />
+      <location filename="../Project/Project.py" line="5167" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;载入调试器属性&lt;/b&gt;&lt;p&gt;载入项目指定的调试器设定。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
+      <location filename="../Project/Project.py" line="5176" />
       <source>Save</source>
       <translation>保存</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5197" />
+      <location filename="../Project/Project.py" line="5183" />
       <source>Save the debugger properties</source>
       <translation>保存调试器属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5199" />
+      <location filename="../Project/Project.py" line="5185" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;保存调试器属性&lt;/b&gt;&lt;p&gt;保存项目指定的调试器设置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5208" />
+      <location filename="../Project/Project.py" line="5194" />
       <source>Delete</source>
       <translation>删除</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5209" />
+      <location filename="../Project/Project.py" line="5195" />
       <source>&amp;Delete</source>
       <translation>删除(&amp;D)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5215" />
+      <location filename="../Project/Project.py" line="5201" />
       <source>Delete the debugger properties</source>
       <translation>删除调试器属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5217" />
+      <location filename="../Project/Project.py" line="5203" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;删除调试器属性&lt;/b&gt;&lt;p&gt;删除包含项目指定调试器设置的文件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5227" />
+      <location filename="../Project/Project.py" line="5213" />
       <source>Reset</source>
       <translation>重置</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5228" />
+      <location filename="../Project/Project.py" line="5214" />
       <source>&amp;Reset</source>
       <translation>重置(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5234" />
+      <location filename="../Project/Project.py" line="5220" />
       <source>Reset the debugger properties</source>
       <translation>重围调试器属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5236" />
+      <location filename="../Project/Project.py" line="5222" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;重置调试器属性&lt;/b&gt;&lt;p&gt;重置项目指定的调试器设置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5252" />
-      <location filename="../Project/Project.py" line="5251" />
+      <location filename="../Project/Project.py" line="5238" />
+      <location filename="../Project/Project.py" line="5237" />
       <source>Load session</source>
       <translation>载入会话</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5258" />
+      <location filename="../Project/Project.py" line="5244" />
       <source>Load the projects session file.</source>
       <translation>载入项目会话文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5260" />
+      <location filename="../Project/Project.py" line="5246" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;载入会话&lt;/b&gt;&lt;p&gt;载入项目会话文件。会话包括如下数据。&lt;br&gt;- 所有打开的源文件&lt;br&gt;- 所有断点&lt;br&gt;- 命令行参数&lt;br&gt;- 工作文件夹&lt;br&gt;- 异常报告标志&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5276" />
-      <location filename="../Project/Project.py" line="5275" />
+      <location filename="../Project/Project.py" line="5262" />
+      <location filename="../Project/Project.py" line="5261" />
       <source>Save session</source>
       <translation>保存会话</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5282" />
+      <location filename="../Project/Project.py" line="5268" />
       <source>Save the projects session file.</source>
       <translation>保存项目会话文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5284" />
+      <location filename="../Project/Project.py" line="5270" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;保存会话&lt;/b&gt;&lt;p&gt;保存项目会话文件。会话包括如下数据。&lt;br&gt;- 所有打开的源文件&lt;br&gt;- 所有断点&lt;br&gt;- 命令行参数&lt;br&gt;- 工作文件夹&lt;br&gt;- 异常报告标志&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5300" />
-      <location filename="../Project/Project.py" line="5299" />
+      <location filename="../Project/Project.py" line="5286" />
+      <location filename="../Project/Project.py" line="5285" />
       <source>Delete session</source>
       <translation>删除会话</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5306" />
+      <location filename="../Project/Project.py" line="5292" />
       <source>Delete the projects session file.</source>
       <translation>删除项目会话文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5308" />
+      <location filename="../Project/Project.py" line="5294" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;删除会话&lt;/b&gt;&lt;p&gt;删除项目会话文件&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5323" />
+      <location filename="../Project/Project.py" line="5309" />
       <source>Code Metrics</source>
       <translation>代码度量</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5324" />
+      <location filename="../Project/Project.py" line="5310" />
       <source>&amp;Code Metrics...</source>
       <translation>代码度量(&amp;C)…</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5317" />
+      <source>Show some code metrics for the project.</source>
+      <translation>显示项目的部分代码度量。</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5320" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;代码度量…&lt;/b&gt;&lt;p&gt;显示项目中所有 Python 文件的部分代码度量。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5330" />
+      <source>Python Code Coverage</source>
+      <translation>Python 代码覆盖率</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5331" />
-      <source>Show some code metrics for the project.</source>
-      <translation>显示项目的部分代码度量。</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5334" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;代码度量…&lt;/b&gt;&lt;p&gt;显示项目中所有 Python 文件的部分代码度量。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5344" />
-      <source>Python Code Coverage</source>
-      <translation>Python 代码覆盖率</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation>代码覆盖率(&amp;v)…</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5338" />
+      <source>Show code coverage information for the project.</source>
+      <translation>显示项目的代码覆盖率信息。</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5341" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;代码覆盖率…&lt;/b&gt;&lt;p&gt;显示项目中所有 Python 文件的代码覆盖率。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6775" />
+      <location filename="../Project/Project.py" line="6762" />
+      <location filename="../Project/Project.py" line="5351" />
+      <source>Profile Data</source>
+      <translation>剖析数据</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5352" />
-      <source>Show code coverage information for the project.</source>
-      <translation>显示项目的代码覆盖率信息。</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5355" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;代码覆盖率…&lt;/b&gt;&lt;p&gt;显示项目中所有 Python 文件的代码覆盖率。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6789" />
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="5365" />
-      <source>Profile Data</source>
-      <translation>剖析数据</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>剖析数据(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5373" />
+      <location filename="../Project/Project.py" line="5359" />
       <source>Show profiling data for the project.</source>
       <translation>显示项目的剖析数据。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5376" />
+      <location filename="../Project/Project.py" line="5362" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;剖析数据…&lt;/b&gt;&lt;p&gt;显示项目的剖析数据。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="6827" />
+      <location filename="../Project/Project.py" line="5377" />
       <source>Application Diagram</source>
       <translation>应用程序图</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5392" />
+      <location filename="../Project/Project.py" line="5378" />
       <source>&amp;Application Diagram...</source>
       <translation>应用程序(&amp;A)图…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5399" />
+      <location filename="../Project/Project.py" line="5385" />
       <source>Show a diagram of the project.</source>
       <translation>显示项目图表。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5402" />
+      <location filename="../Project/Project.py" line="5388" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;应用程序图…&lt;/b&gt;&lt;p&gt;显示项目的图表。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5411" />
+      <location filename="../Project/Project.py" line="5397" />
       <source>Load Diagram</source>
       <translation type="unfinished">加载图表</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5412" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5418" />
+      <location filename="../Project/Project.py" line="5404" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5420" />
+      <location filename="../Project/Project.py" line="5406" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
-      <location filename="../Project/Project.py" line="6954" />
-      <location filename="../Project/Project.py" line="5435" />
+      <location filename="../Project/Project.py" line="6995" />
+      <location filename="../Project/Project.py" line="6940" />
+      <location filename="../Project/Project.py" line="5421" />
       <source>Create Package List</source>
       <translation>创建程序包列表</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5437" />
+      <location filename="../Project/Project.py" line="5423" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished">创建插件存档(&amp;A)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5444" />
+      <location filename="../Project/Project.py" line="5430" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="5433" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7080" />
-      <location filename="../Project/Project.py" line="5458" />
+      <location filename="../Project/Project.py" line="7066" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished">创建插件存档</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5460" />
+      <location filename="../Project/Project.py" line="5446" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5452" />
+      <source>Create eric plugin archive files.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5454" />
+      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5466" />
-      <source>Create eric plugin archive files.</source>
-      <translation type="unfinished" />
+      <source>Create Plugin Archives (Snapshot)</source>
+      <translation type="unfinished">创建插件存档(快照)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5468" />
-      <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5480" />
-      <source>Create Plugin Archives (Snapshot)</source>
-      <translation type="unfinished">创建插件存档(快照)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5489" />
+      <location filename="../Project/Project.py" line="5475" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5492" />
+      <location filename="../Project/Project.py" line="5478" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7536" />
-      <location filename="../Project/Project.py" line="7507" />
-      <location filename="../Project/Project.py" line="7461" />
-      <location filename="../Project/Project.py" line="7413" />
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="5497" />
       <source>Execute Make</source>
       <translation>执行make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5512" />
+      <location filename="../Project/Project.py" line="5498" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5518" />
+      <location filename="../Project/Project.py" line="5504" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5520" />
+      <location filename="../Project/Project.py" line="5506" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7513" />
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="7499" />
+      <location filename="../Project/Project.py" line="5516" />
       <source>Test for Changes</source>
       <translation>测试变更</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5531" />
+      <location filename="../Project/Project.py" line="5517" />
       <source>&amp;Test for Changes</source>
       <translation>&amp;测试变更</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5524" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5541" />
+      <location filename="../Project/Project.py" line="5527" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5559" />
+      <location filename="../Project/Project.py" line="5545" />
       <source>Create SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5560" />
+      <location filename="../Project/Project.py" line="5546" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5553" />
+      <source>Create a SBOM file of the project dependencies.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5556" />
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5567" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5570" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5581" />
       <source>Clear Byte Code Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5582" />
+      <location filename="../Project/Project.py" line="5568" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5589" />
+      <location filename="../Project/Project.py" line="5575" />
       <source>Clear the byte code caches of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5592" />
+      <location filename="../Project/Project.py" line="5578" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5608" />
+      <location filename="../Project/Project.py" line="5594" />
       <source>About Black</source>
       <translation type="unfinished">关于Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5609" />
+      <location filename="../Project/Project.py" line="5595" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5601" />
+      <source>Show some information about 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5603" />
+      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5615" />
-      <source>Show some information about 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5617" />
-      <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5629" />
       <source>Format Code</source>
       <translation type="unfinished">格式化代码</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5630" />
+      <location filename="../Project/Project.py" line="5616" />
       <source>&amp;Format Code</source>
       <translation type="unfinished">&amp;格式化代码</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5637" />
+      <location filename="../Project/Project.py" line="5623" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5640" />
+      <location filename="../Project/Project.py" line="5626" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5652" />
+      <location filename="../Project/Project.py" line="5638" />
       <source>Check Code Formatting</source>
       <translation>代码格式化</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5653" />
+      <location filename="../Project/Project.py" line="5639" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished">&amp;检查代码格式化</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5660" />
+      <location filename="../Project/Project.py" line="5646" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5651" />
+      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5664" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished">代码格式化差异</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5665" />
-      <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
+      <source>Code Formatting &amp;Diff</source>
+      <translation type="unfinished">代码格式化&amp;差异</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5672" />
+      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5678" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished">代码格式化差异</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5679" />
-      <source>Code Formatting &amp;Diff</source>
-      <translation type="unfinished">代码格式化&amp;差异</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5686" />
-      <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5792" />
       <location filename="../Project/Project.py" line="5692" />
-      <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <location filename="../Project/Project.py" line="5807" />
-      <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5706" />
-      <location filename="../Project/Project.py" line="5705" />
+      <location filename="../Project/Project.py" line="5691" />
       <source>Configure</source>
       <translation type="unfinished">配置</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5713" />
+      <location filename="../Project/Project.py" line="5699" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5718" />
+      <location filename="../Project/Project.py" line="5704" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5734" />
+      <location filename="../Project/Project.py" line="5720" />
       <source>About isort</source>
       <translation type="unfinished">关于isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5735" />
+      <location filename="../Project/Project.py" line="5721" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5741" />
+      <location filename="../Project/Project.py" line="5727" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5743" />
+      <location filename="../Project/Project.py" line="5729" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5756" />
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Sort Imports</source>
       <translation type="unfinished">排序 Imports</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5763" />
+      <location filename="../Project/Project.py" line="5749" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5752" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5766" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5780" />
-      <location filename="../Project/Project.py" line="5779" />
+      <location filename="../Project/Project.py" line="5765" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished">Imports 排序差异</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5787" />
+      <location filename="../Project/Project.py" line="5773" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5793" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5814" />
+      <location filename="../Project/Project.py" line="5800" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5820" />
+      <location filename="../Project/Project.py" line="5806" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5836" />
+      <location filename="../Project/Project.py" line="5822" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5823" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5830" />
+      <source>Install the project into the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5833" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5844" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5851" />
+      <source>Configure the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5854" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5864" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5865" />
-      <source>Configure the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5868" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5878" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5871" />
+      <source>Upgrade the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5873" />
+      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5885" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5887" />
-      <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation>重建</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5900" />
+      <location filename="../Project/Project.py" line="5886" />
       <source>&amp;Recreate</source>
       <translation>&amp;重建</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5906" />
+      <location filename="../Project/Project.py" line="5892" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5908" />
+      <location filename="../Project/Project.py" line="5894" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5926" />
+      <source>&amp;Project</source>
+      <translation>项目(&amp;P)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5927" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>打开最近的项目</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5929" />
+      <source>Session</source>
+      <translation>会话</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5930" />
+      <source>Debugger</source>
+      <translation>调试器</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5931" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished">内嵌环境</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5933" />
+      <source>Project-T&amp;ools</source>
+      <translation>项目-工&amp;具</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5934" />
+      <source>&amp;Version Control</source>
+      <translation>版本控制(&amp;V)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5938" />
+      <source>Chec&amp;k</source>
+      <translation>检查(&amp;K)</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="5940" />
-      <source>&amp;Project</source>
-      <translation>项目(&amp;P)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5941" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>打开最近的项目</translation>
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished">代码&amp;格式化</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5942" />
+      <source>Sho&amp;w</source>
+      <translation>显示(&amp;W)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Session</source>
-      <translation>会话</translation>
+      <source>&amp;Diagrams</source>
+      <translation>图表(&amp;D)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
-      <source>Debugger</source>
-      <translation>调试器</translation>
+      <source>Pac&amp;kagers</source>
+      <translation>打包程序(&amp;K)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished">内嵌环境</translation>
+      <source>Source &amp;Documentation</source>
+      <translation>源文档(&amp;D)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Project-T&amp;ools</source>
-      <translation>项目-工&amp;具</translation>
+      <source>Make</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
-      <source>&amp;Version Control</source>
-      <translation>版本控制(&amp;V)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5952" />
-      <source>Chec&amp;k</source>
-      <translation>检查(&amp;K)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5954" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished">代码&amp;格式化</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5956" />
-      <source>Sho&amp;w</source>
-      <translation>显示(&amp;W)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5957" />
-      <source>&amp;Diagrams</source>
-      <translation>图表(&amp;D)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5958" />
-      <source>Pac&amp;kagers</source>
-      <translation>打包程序(&amp;K)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5959" />
-      <source>Source &amp;Documentation</source>
-      <translation>源文档(&amp;D)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5961" />
-      <source>Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation>其它工具</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6124" />
-      <location filename="../Project/Project.py" line="6122" />
+      <location filename="../Project/Project.py" line="6110" />
+      <location filename="../Project/Project.py" line="6108" />
       <source>Project</source>
       <translation>项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6206" />
+      <location filename="../Project/Project.py" line="6192" />
       <source>&amp;Clear</source>
       <translation>清除(&amp;C)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6403" />
+      <location filename="../Project/Project.py" line="6389" />
       <source>Search New Files</source>
       <translation>搜索新文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6404" />
+      <location filename="../Project/Project.py" line="6390" />
       <source>There were no new files found to be added.</source>
       <translation>没有要添加的新文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6565" />
-      <location filename="../Project/Project.py" line="6552" />
+      <location filename="../Project/Project.py" line="6551" />
+      <location filename="../Project/Project.py" line="6538" />
       <source>Version Control System</source>
       <translation>版本控制系统</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6553" />
+      <location filename="../Project/Project.py" line="6539" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6566" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="6709" />
+      <source>Coverage Data</source>
+      <translation>覆盖率数据</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6763" />
+      <location filename="../Project/Project.py" line="6710" />
+      <source>There is no main script defined for the current project. Aborting</source>
+      <translation>当前项目未定义主脚本。终止</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6722" />
+      <source>Code Coverage</source>
+      <translation>代码覆盖率</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="6723" />
-      <source>Coverage Data</source>
-      <translation>覆盖率数据</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6777" />
-      <location filename="../Project/Project.py" line="6724" />
-      <source>There is no main script defined for the current project. Aborting</source>
-      <translation>当前项目未定义主脚本。终止</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6736" />
-      <source>Code Coverage</source>
-      <translation>代码覆盖率</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>请选择一个覆盖率文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6790" />
+      <location filename="../Project/Project.py" line="6776" />
       <source>Please select a profile file</source>
       <translation>请选择一个剖析文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6842" />
+      <location filename="../Project/Project.py" line="6828" />
       <source>Include module names?</source>
       <translation>包含模块名?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6955" />
+      <location filename="../Project/Project.py" line="6941" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;PKGLIST&lt;/b&gt; 已存在。&lt;/p&gt;&lt;p&gt;是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7010" />
+      <location filename="../Project/Project.py" line="6996" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7321" />
-      <location filename="../Project/Project.py" line="7277" />
-      <location filename="../Project/Project.py" line="7227" />
-      <location filename="../Project/Project.py" line="7216" />
-      <location filename="../Project/Project.py" line="7198" />
-      <location filename="../Project/Project.py" line="7151" />
-      <location filename="../Project/Project.py" line="7121" />
-      <location filename="../Project/Project.py" line="7093" />
-      <location filename="../Project/Project.py" line="7063" />
-      <location filename="../Project/Project.py" line="7048" />
-      <location filename="../Project/Project.py" line="7031" />
+      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7137" />
+      <location filename="../Project/Project.py" line="7107" />
+      <location filename="../Project/Project.py" line="7079" />
+      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7034" />
+      <location filename="../Project/Project.py" line="7017" />
       <source>Create Plugin Archive</source>
       <translation>创建插件存档</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7032" />
+      <location filename="../Project/Project.py" line="7018" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>项目未定义主脚本。终止…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7049" />
+      <location filename="../Project/Project.py" line="7035" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7064" />
+      <location filename="../Project/Project.py" line="7050" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7072" />
+      <location filename="../Project/Project.py" line="7058" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7073" />
+      <location filename="../Project/Project.py" line="7059" />
       <source>Abort</source>
       <translation type="unfinished">终止</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7076" />
+      <location filename="../Project/Project.py" line="7062" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7094" />
+      <location filename="../Project/Project.py" line="7080" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7122" />
+      <location filename="../Project/Project.py" line="7108" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7152" />
+      <location filename="../Project/Project.py" line="7138" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7199" />
+      <location filename="../Project/Project.py" line="7185" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7217" />
+      <location filename="../Project/Project.py" line="7203" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7228" />
+      <location filename="../Project/Project.py" line="7214" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7278" />
+      <location filename="../Project/Project.py" line="7264" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7322" />
+      <location filename="../Project/Project.py" line="7308" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7414" />
+      <location filename="../Project/Project.py" line="7400" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7462" />
+      <location filename="../Project/Project.py" line="7448" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7508" />
+      <location filename="../Project/Project.py" line="7494" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7516" />
+      <location filename="../Project/Project.py" line="7502" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
+      <location filename="../Project/Project.py" line="7507" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7537" />
+      <location filename="../Project/Project.py" line="7523" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7975" />
+      <location filename="../Project/Project.py" line="7961" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7976" />
+      <location filename="../Project/Project.py" line="7962" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8057" />
+      <location filename="../Project/Project.py" line="8043" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8088" />
-      <location filename="../Project/Project.py" line="8073" />
+      <location filename="../Project/Project.py" line="8074" />
+      <location filename="../Project/Project.py" line="8059" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65215,9 +65175,9 @@
   <context>
     <name>ProjectFormsBrowser</name>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1141" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1092" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1055" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1131" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
       <location filename="../Project/ProjectFormsBrowser.py" line="142" />
       <location filename="../Project/ProjectFormsBrowser.py" line="77" />
       <source>Forms</source>
@@ -65490,102 +65450,102 @@
       <translation>编译窗体</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="701" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="732" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="719" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="700" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="683" />
       <source>New Form</source>
       <translation>新建窗体</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="685" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="684" />
       <source>Select a form type:</source>
       <translation>选择窗体类型:</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="703" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="702" />
       <source>Qt User-Interface Files (*.ui);;All Files (*)</source>
       <translation>Qt 用户界面文件 (*.ui);;所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="721" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="720" />
       <source>The file already exists! Overwrite it?</source>
       <translation>文件已存在!是否覆盖?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="734" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="733" />
       <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;新窗体文件 &lt;b&gt;{0}&lt;/b&gt; 无法创建。&lt;br&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectFormsBrowser.py" line="759" />
+      <source>Delete forms</source>
+      <translation>删除窗体</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFormsBrowser.py" line="760" />
-      <source>Delete forms</source>
-      <translation>删除窗体</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="761" />
       <source>Do you really want to delete these forms from the project?</source>
       <translation>确定要从项目中删除这些窗体?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="893" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="882" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="875" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="888" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="877" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="870" />
       <source>Form Compilation</source>
       <translation>窗体编译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="876" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="871" />
       <source>The compilation of the form file was successful.</source>
       <translation>窗体文件编译成功。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="883" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="878" />
       <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;窗体文件编译失败。&lt;/p&gt;&lt;p&gt;原因:{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="894" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="889" />
       <source>The compilation of the form file failed.</source>
       <translation>窗体文件编译失败。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="986" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="977" />
       <source>Process Generation Error</source>
       <translation>进程生成错误</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="987" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="978" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation type="unfinished">无法启动 {0}。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1083" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1046" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1074" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1037" />
       <source>Compiling forms...</source>
       <translation>正在编译窗体…</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1134" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1084" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1047" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1075" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1038" />
       <source>Abort</source>
       <translation>终止</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1137" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1087" />
-      <location filename="../Project/ProjectFormsBrowser.py" line="1050" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1127" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1078" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1041" />
       <source>%v/%m Forms</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1133" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1123" />
       <source>Determining changed forms...</source>
       <translation>正在确定更改的窗体…</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFormsBrowser.py" line="1163" />
+      <location filename="../Project/ProjectFormsBrowser.py" line="1153" />
       <source>Compiling changed forms...</source>
       <translation>正在编译更改的窗体…</translation>
     </message>
@@ -66037,9 +65997,9 @@
   <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="956" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="880" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="844" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="940" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="864" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="828" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="87" />
       <location filename="../Project/ProjectResourcesBrowser.py" line="68" />
       <source>Resources</source>
@@ -66066,219 +66026,219 @@
       <translation type="unfinished">资源浏览器</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="165" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="163" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="150" />
       <source>Compile resource</source>
       <translation>编译资源</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="396" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="385" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="344" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="333" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="247" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="235" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="172" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="154" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="384" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="373" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="334" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="323" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="241" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="229" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="170" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="152" />
       <source>Compile all resources</source>
       <translation>编译所有资源</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="389" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="337" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="296" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="239" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="158" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="377" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="327" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="288" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="233" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="156" />
       <source>Configure rcc Compiler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="308" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="300" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="179" />
       <source>Open</source>
       <translation>打开</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="181" />
       <source>Rename file</source>
       <translation>重命名文件</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="349" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="310" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="339" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="302" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="183" />
       <source>Remove from project</source>
       <translation>从项目移除</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="351" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="187" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="341" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="304" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="185" />
       <source>Delete</source>
       <translation>删除</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="345" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="249" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="236" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="200" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="195" />
+      <source>New resource...</source>
+      <translation>新建资源…</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="390" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="346" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="254" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
+      <source>Add resources...</source>
+      <translation>添加资源…</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="393" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="348" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="257" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="206" />
+      <source>Add resources directory...</source>
+      <translation>添加资源文件夹…</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectResourcesBrowser.py" line="353" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="211" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectResourcesBrowser.py" line="355" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="255" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="242" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="204" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="199" />
-      <source>New resource...</source>
-      <translation>新建资源…</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="402" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="356" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="260" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="208" />
-      <source>Add resources...</source>
-      <translation>添加资源…</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="405" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="358" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="263" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="210" />
-      <source>Add resources directory...</source>
-      <translation>添加资源文件夹…</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="363" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="269" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="365" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="217" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="213" />
       <source>Copy Path to Clipboard</source>
       <translation>将路径复制到剪贴板</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="410" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="367" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="315" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="272" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="219" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="398" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="357" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="307" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="266" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="215" />
       <source>Expand all directories</source>
       <translation>展开所有文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="413" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="369" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="317" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="274" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="220" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="401" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="359" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="309" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="268" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="216" />
       <source>Collapse all directories</source>
       <translation>折叠所有文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="416" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="372" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="320" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="277" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="222" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="404" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="362" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="312" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="271" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="218" />
       <source>Configure...</source>
       <translation>配置…</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="303" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="292" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="295" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="284" />
       <source>Compile resources</source>
       <translation>编译资源</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="595" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="574" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="555" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="583" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="562" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="543" />
       <source>New Resource</source>
       <translation>新建资源</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="557" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="545" />
       <source>Qt Resource Files (*.qrc)</source>
       <translation>Qt 资源文件 (*.qrc)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="575" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="563" />
       <source>The file already exists! Overwrite it?</source>
       <translation>文件已存在!是否覆盖?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="596" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="584" />
       <source>&lt;p&gt;The new resource file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt;Problem: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="622" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="610" />
       <source>Delete resources</source>
       <translation>删除资源</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="623" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="611" />
       <source>Do you really want to delete these resources from the project?</source>
       <translation>确定要从项目中删除这些资源?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="717" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="708" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="701" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="705" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="696" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="689" />
       <source>Resource Compilation</source>
       <translation>资源编译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="702" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="690" />
       <source>The compilation of the resource file was successful.</source>
       <translation>资源文件编译成功。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="709" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="697" />
       <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="718" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="706" />
       <source>The compilation of the resource file failed.</source>
       <translation>资源文件编译失败。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="805" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="789" />
       <source>Process Generation Error</source>
       <translation>进程生成错误</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="806" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="790" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>无法启动 {0}。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="871" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="835" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="855" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="819" />
       <source>Compiling resources...</source>
       <translation>正在编译资源…</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="949" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="872" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="836" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="933" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="856" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="820" />
       <source>Abort</source>
       <translation>终止</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="952" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="875" />
-      <location filename="../Project/ProjectResourcesBrowser.py" line="839" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="936" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="859" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="823" />
       <source>%v/%m Resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="948" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="932" />
       <source>Determining changed resources...</source>
       <translation>正在确认改变的资源…</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectResourcesBrowser.py" line="986" />
+      <location filename="../Project/ProjectResourcesBrowser.py" line="970" />
       <source>Compiling changed resources...</source>
       <translation>正在编译改变的资源…</translation>
     </message>
@@ -66814,250 +66774,250 @@
       <translation type="unfinished">翻译浏览器</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="514" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="456" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="296" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="238" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="213" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="182" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="508" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="236" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="180" />
       <source>Open in Editor</source>
       <translation>在编辑器中打开</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="255" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="253" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation</source>
       <translation>生成翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="193" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="263" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="191" />
       <source>Generate translation (with obsolete)</source>
       <translation>生成翻译(包括不使用的翻译)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="580" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="551" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="274" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="199" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="572" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="543" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="378" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="272" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="197" />
       <source>Generate all translations</source>
       <translation>生成所有翻译</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="581" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="354" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="281" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
+      <source>Generate all translations (with obsolete)</source>
+      <translation>生成所有翻译(包括不使用的翻译)</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="446" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="207" />
+      <source>Open in Qt-Linguist</source>
+      <translation>在 Qt 语言家中打开</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="301" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <source>Release translation</source>
+      <translation>发布翻译</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="589" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="391" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="283" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
-      <source>Generate all translations (with obsolete)</source>
-      <translation>生成所有翻译(包括不使用的翻译)</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="452" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
-      <source>Open in Qt-Linguist</source>
-      <translation>在 Qt 语言家中打开</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
-      <source>Release translation</source>
-      <translation>发布翻译</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="597" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="560" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="399" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="363" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="552" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="395" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="359" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Release all translations</source>
       <translation>发布所有翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="226" />
       <source>Preview translation</source>
       <translation>预览翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="368" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="232" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="557" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="364" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
       <source>Preview all translations</source>
       <translation>预览所有翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="481" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="374" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="246" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="475" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="370" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="244" />
       <source>Extract messages</source>
       <translation>提取消息</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="291" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="289" />
       <source>Open</source>
       <translation>打开</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="319" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Remove from project</source>
       <translation>从项目移除</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="595" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="526" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="320" />
+      <source>Delete</source>
+      <translation>删除</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="600" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="402" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="324" />
+      <source>New translation...</source>
+      <translation type="unfinished">新的翻译…</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="603" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="532" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="322" />
-      <source>Delete</source>
-      <translation>删除</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="608" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="406" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="326" />
-      <source>New translation...</source>
-      <translation type="unfinished">新的翻译…</translation>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="327" />
+      <source>Add translation files...</source>
+      <translation>添加翻译文件…</translation>
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="607" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
+      <source>Show in File Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="609" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <source>Copy Path to Clipboard</source>
+      <translation>将路径复制到剪贴板</translation>
     </message>
     <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="611" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="329" />
-      <source>Add translation files...</source>
-      <translation>添加翻译文件…</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="615" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="413" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
-      <source>Show in File Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="617" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <source>Copy Path to Clipboard</source>
-      <translation>将路径复制到剪贴板</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="619" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="535" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="416" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="338" />
       <source>Configure...</source>
       <translation>配置…</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="490" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="440" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="484" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
       <source>Generate translations</source>
       <translation>生成翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="500" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="445" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
       <source>Generate translations (with obsolete)</source>
       <translation>生成翻译(包括过时的)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="515" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="455" />
       <source>Release translations</source>
       <translation>发布翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="461" />
       <source>Preview translations</source>
       <translation>预览翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="882" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="866" />
       <source>Delete translation files</source>
       <translation>删除翻译文件</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="883" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="867" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation>确定要从项目中删除这些翻译?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1582" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1051" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1011" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1560" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1035" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="995" />
       <source>Write temporary project file</source>
       <translation>写入临时项目文件</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1583" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1307" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1012" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1561" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1287" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="996" />
       <source>No translation files (*.ts) selected.</source>
       <translation>未选择翻译文件 (*.ts)。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1052" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1036" />
       <source>&lt;p&gt;The temporary project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;临时项目文件 &lt;b&gt;{0}&lt;/b&gt; 不可写。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1306" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1189" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1177" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1286" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1173" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1161" />
       <source>Translation file generation</source>
       <translation>翻译文件生成</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1178" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1162" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation>翻译文件 (*.ts) 生成成功。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1184" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1168" />
       <source> The process has crashed.</source>
       <translation> 进程已崩溃。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1190" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1174" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation>翻译文件 (*.ts) 生成失败。{0}</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1612" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1360" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1590" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1388" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1340" />
       <source>Process Generation Error</source>
       <translation>进程生成错误</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1409" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1361" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1389" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1341" />
       <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
       <translation>无法启动 {0}。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1497" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1479" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1477" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1459" />
       <source>Translation file release</source>
       <translation>翻译文件发布</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1480" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1460" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation>翻译文件 (*.qm) 发布成功。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1498" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1478" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation>翻译文件 (*.qm) 发布失败。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1613" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1591" />
       <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动 lrelease。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
@@ -69632,38 +69592,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="214" />
+      <location filename="../UI/PythonAstViewer.py" line="216" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="224" />
+      <location filename="../UI/PythonAstViewer.py" line="226" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="230" />
+      <location filename="../UI/PythonAstViewer.py" line="232" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="248" />
+      <location filename="../UI/PythonAstViewer.py" line="250" />
       <source>Module</source>
       <translation type="unfinished">模块</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="280" />
+      <location filename="../UI/PythonAstViewer.py" line="282" />
       <source>{0}: {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="297" />
-      <location filename="../UI/PythonAstViewer.py" line="287" />
+      <location filename="../UI/PythonAstViewer.py" line="299" />
+      <location filename="../UI/PythonAstViewer.py" line="289" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="304" />
+      <location filename="../UI/PythonAstViewer.py" line="306" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -71815,7 +71775,7 @@
   <context>
     <name>QtPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="154" />
+      <location filename="../Preferences/ConfigurationPages/QtPage.py" line="139" />
       <source>Sample: {0}designer{1}</source>
       <translation type="unfinished" />
     </message>
@@ -71859,7 +71819,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Tools Directory:</source>
       <translation type="unfinished">工具目录:</translation>
     </message>
@@ -71944,7 +71903,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Virtual Environment:</source>
       <translation>虚拟环境:</translation>
     </message>
@@ -71952,7 +71910,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Select the virtual environment to be used</source>
       <translation type="unfinished" />
     </message>
@@ -71960,7 +71917,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to open the virtual environment manager dialog</source>
       <translation type="unfinished" />
     </message>
@@ -71968,7 +71924,6 @@
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Press to refresh the list of vitual environments</source>
       <translation type="unfinished" />
     </message>
@@ -71997,7 +71952,6 @@
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>Generate imports relative to '.'</source>
       <translation type="unfinished">生成 imports 相对于'.'</translation>
     </message>
@@ -72030,26 +71984,6 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>PySide2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>Enter the path of the PySide2 tools directory, if they are not found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
-      <source>pyside2-uic Options</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/QtPage.ui" line="0" />
       <source>PySide6</source>
       <translation type="unfinished" />
     </message>
@@ -87919,64 +87853,64 @@
       <translation>配置…</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="575" />
+      <location filename="../Templates/TemplateViewer.py" line="577" />
       <source>Remove Template</source>
       <translation>移除模板</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="576" />
+      <location filename="../Templates/TemplateViewer.py" line="578" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="604" />
+      <location filename="../Templates/TemplateViewer.py" line="606" />
       <source>Import Templates</source>
       <translation>导入模板</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="621" />
-      <location filename="../Templates/TemplateViewer.py" line="606" />
+      <location filename="../Templates/TemplateViewer.py" line="623" />
+      <location filename="../Templates/TemplateViewer.py" line="608" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
-      <location filename="../Templates/TemplateViewer.py" line="619" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
+      <location filename="../Templates/TemplateViewer.py" line="621" />
       <source>Export Templates</source>
       <translation>导出模板</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="654" />
+      <location filename="../Templates/TemplateViewer.py" line="656" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="655" />
+      <location filename="../Templates/TemplateViewer.py" line="657" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="675" />
+      <location filename="../Templates/TemplateViewer.py" line="677" />
       <source>Template Help</source>
       <translation>模板帮助</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="676" />
+      <location filename="../Templates/TemplateViewer.py" line="678" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="938" />
+      <location filename="../Templates/TemplateViewer.py" line="940" />
       <source>Edit Template Group</source>
       <translation>编辑模板组</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="939" />
+      <location filename="../Templates/TemplateViewer.py" line="941" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -91444,2587 +91378,2571 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="263" />
+      <location filename="../UI/UserInterface.py" line="265" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="319" />
+      <location filename="../UI/UserInterface.py" line="321" />
       <source>Initializing Plugin Manager...</source>
       <translation>初始化插件管理器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="327" />
+      <location filename="../UI/UserInterface.py" line="329" />
       <source>Generating Main User Interface...</source>
       <translation>生成主用户界面…</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="386" />
       <location filename="../UI/UserInterface.py" line="384" />
-      <location filename="../UI/UserInterface.py" line="382" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="593" />
+      <location filename="../UI/UserInterface.py" line="595" />
       <source>Initializing Tools...</source>
       <translation>初始化工具…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="605" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Registering Objects...</source>
       <translation>注册对象…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="640" />
+      <location filename="../UI/UserInterface.py" line="642" />
       <source>Initializing Actions...</source>
       <translation>初始化动作…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="643" />
+      <location filename="../UI/UserInterface.py" line="645" />
       <source>Initializing Menus...</source>
       <translation>初始化菜单…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="648" />
       <source>Initializing Toolbars...</source>
       <translation>初始化工具栏…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Statusbar...</source>
       <translation>初始化状态栏…</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="676" />
       <location filename="../UI/UserInterface.py" line="674" />
-      <location filename="../UI/UserInterface.py" line="672" />
       <source>Initializing Single Application Server...</source>
       <translation>初始化单应用程序服务器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="683" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Activating Plugins...</source>
       <translation>激活插件…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="688" />
+      <location filename="../UI/UserInterface.py" line="690" />
       <source>Generating Plugins Toolbars...</source>
       <translation>生成插件工具栏…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="692" />
+      <location filename="../UI/UserInterface.py" line="694" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
+      <location filename="../UI/UserInterface.py" line="705" />
       <source>Restoring Toolbarmanager...</source>
       <translation>恢复工具拦管理器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="714" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="726" />
+      <location filename="../UI/UserInterface.py" line="728" />
       <source>Reading Tasks...</source>
       <translation>读取任务…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="732" />
+      <location filename="../UI/UserInterface.py" line="734" />
       <source>Reading Templates...</source>
       <translation>读取模板…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="738" />
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation>启动调试器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2212" />
-      <location filename="../UI/UserInterface.py" line="1099" />
+      <location filename="../UI/UserInterface.py" line="2214" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Left Toolbox</source>
       <translation>左工具箱</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2258" />
-      <location filename="../UI/UserInterface.py" line="1109" />
+      <location filename="../UI/UserInterface.py" line="2260" />
+      <location filename="../UI/UserInterface.py" line="1111" />
       <source>Horizontal Toolbox</source>
       <translation>横向工具箱</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2235" />
-      <location filename="../UI/UserInterface.py" line="1120" />
+      <location filename="../UI/UserInterface.py" line="2237" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Right Toolbox</source>
       <translation>右工具箱</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2054" />
-      <location filename="../UI/UserInterface.py" line="1316" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1132" />
       <source>Multiproject-Viewer</source>
       <translation>多重项目浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2032" />
-      <location filename="../UI/UserInterface.py" line="1322" />
-      <location filename="../UI/UserInterface.py" line="1136" />
+      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="1324" />
+      <location filename="../UI/UserInterface.py" line="1138" />
       <source>Project-Viewer</source>
       <translation>项目浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2594" />
-      <location filename="../UI/UserInterface.py" line="2593" />
-      <location filename="../UI/UserInterface.py" line="1329" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="2596" />
+      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="1331" />
+      <location filename="../UI/UserInterface.py" line="1145" />
       <source>Find/Replace In Files</source>
       <translation>在文件中查找/替换</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
-      <location filename="../UI/UserInterface.py" line="2616" />
-      <location filename="../UI/UserInterface.py" line="1336" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2619" />
+      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="1338" />
+      <location filename="../UI/UserInterface.py" line="1152" />
       <source>Find File</source>
       <translation type="unfinished">查找文件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1156" />
+      <location filename="../UI/UserInterface.py" line="1344" />
+      <location filename="../UI/UserInterface.py" line="1158" />
       <source>VCS Status</source>
       <translation type="unfinished">版本控制系统状态</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2187" />
-      <location filename="../UI/UserInterface.py" line="1349" />
-      <location filename="../UI/UserInterface.py" line="1163" />
+      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="1351" />
+      <location filename="../UI/UserInterface.py" line="1165" />
       <source>Template-Viewer</source>
       <translation>模板浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2120" />
-      <location filename="../UI/UserInterface.py" line="1356" />
-      <location filename="../UI/UserInterface.py" line="1170" />
+      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="1358" />
+      <location filename="../UI/UserInterface.py" line="1172" />
       <source>File-Browser</source>
       <translation>文件浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1177" />
+      <location filename="../UI/UserInterface.py" line="1365" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Symbols</source>
       <translation>符号</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2076" />
-      <location filename="../UI/UserInterface.py" line="1385" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1187" />
+      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="1387" />
+      <location filename="../UI/UserInterface.py" line="1381" />
+      <location filename="../UI/UserInterface.py" line="1189" />
       <source>Debug-Viewer</source>
       <translation>调试浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <location filename="../UI/UserInterface.py" line="2447" />
-      <location filename="../UI/UserInterface.py" line="1392" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="1394" />
+      <location filename="../UI/UserInterface.py" line="1196" />
       <source>Code Documentation Viewer</source>
       <translation>代码文档查看器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2663" />
-      <location filename="../UI/UserInterface.py" line="2662" />
-      <location filename="../UI/UserInterface.py" line="1399" />
-      <location filename="../UI/UserInterface.py" line="1201" />
+      <location filename="../UI/UserInterface.py" line="2665" />
+      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="1401" />
+      <location filename="../UI/UserInterface.py" line="1203" />
       <source>Help Viewer</source>
       <translation type="unfinished">帮助浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3611" />
-      <location filename="../UI/UserInterface.py" line="2543" />
-      <location filename="../UI/UserInterface.py" line="2542" />
-      <location filename="../UI/UserInterface.py" line="1405" />
-      <location filename="../UI/UserInterface.py" line="1207" />
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1209" />
       <source>Plugin Repository</source>
       <translation>插件储存库</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
-      <location filename="../UI/UserInterface.py" line="2566" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1213" />
+      <location filename="../UI/UserInterface.py" line="2569" />
+      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Virtual Environments</source>
       <translation>虚拟环境</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2475" />
-      <location filename="../UI/UserInterface.py" line="2474" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1220" />
+      <location filename="../UI/UserInterface.py" line="2477" />
+      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>PyPI Package Management</source>
       <translation type="unfinished">PyPi包管理</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2497" />
-      <location filename="../UI/UserInterface.py" line="2496" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1225" />
+      <location filename="../UI/UserInterface.py" line="2499" />
+      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="1427" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1232" />
+      <location filename="../UI/UserInterface.py" line="1434" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>Cooperation</source>
       <translation>协作</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2375" />
-      <location filename="../UI/UserInterface.py" line="1436" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1239" />
       <source>IRC</source>
       <translation>IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
-      <location filename="../UI/UserInterface.py" line="2518" />
-      <location filename="../UI/UserInterface.py" line="1442" />
-      <location filename="../UI/UserInterface.py" line="1244" />
+      <location filename="../UI/UserInterface.py" line="2521" />
+      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2098" />
-      <location filename="../UI/UserInterface.py" line="1450" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1254" />
       <source>Shell</source>
       <translation>命令行</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <location filename="../UI/UserInterface.py" line="1456" />
-      <location filename="../UI/UserInterface.py" line="1256" />
+      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
       <source>Task-Viewer</source>
       <translation>任务浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2142" />
-      <location filename="../UI/UserInterface.py" line="1462" />
-      <location filename="../UI/UserInterface.py" line="1260" />
+      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="1464" />
+      <location filename="../UI/UserInterface.py" line="1262" />
       <source>Log-Viewer</source>
       <translation>日志浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1469" />
-      <location filename="../UI/UserInterface.py" line="1267" />
+      <location filename="../UI/UserInterface.py" line="1471" />
+      <location filename="../UI/UserInterface.py" line="1269" />
       <source>Numbers</source>
       <translation>数字</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1844" />
+      <location filename="../UI/UserInterface.py" line="1846" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - 被动模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <location filename="../UI/UserInterface.py" line="1847" />
+      <location filename="../UI/UserInterface.py" line="1855" />
+      <location filename="../UI/UserInterface.py" line="1849" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} - {1} - 被动模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
+      <location filename="../UI/UserInterface.py" line="1861" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} - {1} - {2} - 被动模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1885" />
-      <source>Quit</source>
-      <translation>退出</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1887" />
+      <source>Quit</source>
+      <translation>退出</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1889" />
       <source>&amp;Quit</source>
       <translation>退出(&amp;Q)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1888" />
+      <location filename="../UI/UserInterface.py" line="1890" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Quit the IDE</source>
-      <translation>退出程序</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1895" />
+      <source>Quit the IDE</source>
+      <translation>退出程序</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1897" />
       <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation>&lt;b&gt;退出程序&lt;/b&gt;&lt;p&gt;退出本程序。 先保存任何未保存的更改。任何被调试的 Python 程序都将停止,并将选项写入磁盘。&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1911" />
       <location filename="../UI/UserInterface.py" line="1909" />
-      <location filename="../UI/UserInterface.py" line="1907" />
       <source>Restart</source>
       <translation type="unfinished">重启</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1910" />
+      <location filename="../UI/UserInterface.py" line="1912" />
       <source>Ctrl+Shift+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1915" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1917" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1919" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <location filename="../UI/UserInterface.py" line="1928" />
-      <source>Save session</source>
-      <translation>保存会话</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Save session...</source>
-      <translation>保存会话…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1937" />
+      <location filename="../UI/UserInterface.py" line="1930" />
+      <source>Save session</source>
+      <translation>保存会话</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1931" />
+      <source>Save session...</source>
+      <translation>保存会话…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7892" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <location filename="../UI/UserInterface.py" line="1947" />
+      <location filename="../UI/UserInterface.py" line="7866" />
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1949" />
       <source>Load session</source>
       <translation type="unfinished">载入会话</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
+      <location filename="../UI/UserInterface.py" line="1950" />
       <source>Load session...</source>
       <translation>加载会话…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
+      <location filename="../UI/UserInterface.py" line="1958" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1966" />
-      <source>New Window</source>
-      <translation>新建窗口</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1968" />
+      <source>New Window</source>
+      <translation>新建窗口</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1970" />
       <source>New &amp;Window</source>
       <translation>新建窗口(&amp;W)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1969" />
+      <location filename="../UI/UserInterface.py" line="1971" />
       <source>Ctrl+Shift+N</source>
       <comment>File|New Window</comment>
       <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1974" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1976" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1978" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1992" />
       <location filename="../UI/UserInterface.py" line="1990" />
-      <location filename="../UI/UserInterface.py" line="1988" />
       <source>Edit Profile</source>
       <translation>编辑模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1997" />
-      <source>Activate the edit view profile</source>
-      <translation>激活编辑视图模式</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Activate the edit view profile</source>
+      <translation>激活编辑视图模式</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2001" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;编辑模式&lt;/b&gt;&lt;p&gt;激活“编辑视图模式”。如果激活了该模式,则显示的窗口将按“视图模式配置”对话框进行配置。&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2014" />
       <location filename="../UI/UserInterface.py" line="2012" />
-      <location filename="../UI/UserInterface.py" line="2010" />
       <source>Debug Profile</source>
       <translation>调试模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2019" />
-      <source>Activate the debug view profile</source>
-      <translation>激活调试模式</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Activate the debug view profile</source>
+      <translation>激活调试模式</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;调试模式&lt;/b&gt;&lt;p&gt;激活“调试视图模式”。如果激活了该模式,则显示的窗口将按“视图模式配置”对话框进行配置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2033" />
+      <location filename="../UI/UserInterface.py" line="2035" />
       <source>&amp;Project-Viewer</source>
       <translation>项目浏览器(&amp;P)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2034" />
+      <location filename="../UI/UserInterface.py" line="2036" />
       <source>Alt+Shift+P</source>
       <translation>Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2040" />
+      <location filename="../UI/UserInterface.py" line="2042" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation>将输入焦点切换至项目查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2043" />
+      <location filename="../UI/UserInterface.py" line="2045" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2055" />
+      <location filename="../UI/UserInterface.py" line="2057" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>多重项目浏览器(&amp;M)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2056" />
+      <location filename="../UI/UserInterface.py" line="2058" />
       <source>Alt+Shift+M</source>
       <translation>Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2062" />
+      <location filename="../UI/UserInterface.py" line="2064" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation>将输入焦点切换至多项目查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2065" />
+      <location filename="../UI/UserInterface.py" line="2067" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2077" />
+      <location filename="../UI/UserInterface.py" line="2079" />
       <source>&amp;Debug-Viewer</source>
       <translation>调试浏览器(&amp;D)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2078" />
+      <location filename="../UI/UserInterface.py" line="2080" />
       <source>Alt+Shift+D</source>
       <translation>Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2084" />
+      <location filename="../UI/UserInterface.py" line="2086" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation>将输入焦点切换至调试查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2087" />
+      <location filename="../UI/UserInterface.py" line="2089" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2099" />
+      <location filename="../UI/UserInterface.py" line="2101" />
       <source>&amp;Shell</source>
       <translation>命令行(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2100" />
+      <location filename="../UI/UserInterface.py" line="2102" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2106" />
+      <location filename="../UI/UserInterface.py" line="2108" />
       <source>Switch the input focus to the Shell window.</source>
       <translation>将输入焦点切换至 Shell 窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2109" />
+      <location filename="../UI/UserInterface.py" line="2111" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2121" />
+      <location filename="../UI/UserInterface.py" line="2123" />
       <source>&amp;File-Browser</source>
       <translation>文件浏览器(&amp;F)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2122" />
+      <location filename="../UI/UserInterface.py" line="2124" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2128" />
+      <location filename="../UI/UserInterface.py" line="2130" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation>将输入焦点切换至文件浏览器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2131" />
+      <location filename="../UI/UserInterface.py" line="2133" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;激活文件浏览器&lt;/b&gt;&lt;p&gt;将输入焦点切换至文件浏览器窗口。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2143" />
+      <location filename="../UI/UserInterface.py" line="2145" />
       <source>Lo&amp;g-Viewer</source>
       <translation>日志浏览器(&amp;G)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2144" />
+      <location filename="../UI/UserInterface.py" line="2146" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2150" />
+      <location filename="../UI/UserInterface.py" line="2152" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation>将输入焦点切换至日志查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="2155" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;激活日志查看器&lt;/b&gt;&lt;p&gt;将输入焦点切换至日志查看器。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2165" />
+      <location filename="../UI/UserInterface.py" line="2167" />
       <source>&amp;Task-Viewer</source>
       <translation>任务浏览器(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2166" />
+      <location filename="../UI/UserInterface.py" line="2168" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2174" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation>将输入焦点切换至任务浏览器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2190" />
       <source>Templ&amp;ate-Viewer</source>
       <translation>模板浏览器(&amp;A)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2189" />
+      <location filename="../UI/UserInterface.py" line="2191" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2197" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation>将输入焦点切换至模板浏览器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2198" />
+      <location filename="../UI/UserInterface.py" line="2200" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2213" />
+      <location filename="../UI/UserInterface.py" line="2215" />
       <source>&amp;Left Toolbox</source>
       <translation>左工具箱(&amp;L)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2220" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation>切换左工具箱窗口</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2222" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation>切换左工具箱窗口</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;切换左工具箱窗口&lt;/b&gt;&lt;p&gt;如果左工具箱窗口已隐藏则显示它。如果它可见则隐藏它。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2236" />
+      <location filename="../UI/UserInterface.py" line="2238" />
       <source>&amp;Right Toolbox</source>
       <translation>右工具箱(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2243" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation>切换右工具箱窗口</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2245" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation>切换右工具箱窗口</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;切换右工具箱窗口&lt;/b&gt;&lt;p&gt;如果右工具箱窗口已隐藏则显示它。如果它可见则隐藏它。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2259" />
+      <location filename="../UI/UserInterface.py" line="2261" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>横向工具箱(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2266" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation>切换横向工具箱窗口</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2268" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation>切换横向工具箱窗口</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;切换横向工具箱窗口&lt;/b&gt;&lt;p&gt;在横向工具箱窗口的显示和隐藏状态间切换。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2281" />
+      <location filename="../UI/UserInterface.py" line="2283" />
       <source>Left Sidebar</source>
       <translation>左侧边栏</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2282" />
+      <location filename="../UI/UserInterface.py" line="2284" />
       <source>&amp;Left Sidebar</source>
       <translation>左侧边栏(&amp;L)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2289" />
-      <source>Toggle the left sidebar window</source>
-      <translation>切换左侧边栏窗口</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2291" />
+      <source>Toggle the left sidebar window</source>
+      <translation>切换左侧边栏窗口</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;切换左侧边栏窗口&lt;/b&gt;&lt;p&gt;如果左侧边栏窗口已隐藏则显示它。如果它可见则隐藏它。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2304" />
+      <location filename="../UI/UserInterface.py" line="2306" />
       <source>Right Sidebar</source>
       <translation>右侧边栏</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2305" />
+      <location filename="../UI/UserInterface.py" line="2307" />
       <source>&amp;Right Sidebar</source>
       <translation>右侧边栏(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2312" />
-      <source>Toggle the right sidebar window</source>
-      <translation>切换右侧边栏窗口</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2314" />
+      <source>Toggle the right sidebar window</source>
+      <translation>切换右侧边栏窗口</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;切换右侧边栏窗口&lt;/b&gt;&lt;p&gt;如果右侧边栏窗口已隐藏则显示它。如果它可见则隐藏它。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2329" />
       <source>Bottom Sidebar</source>
       <translation>底栏</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2328" />
+      <location filename="../UI/UserInterface.py" line="2330" />
       <source>&amp;Bottom Sidebar</source>
       <translation>底栏(&amp;B)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation>切换底栏窗口</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2337" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation>切换底栏窗口</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;切换底栏窗口&lt;/b&gt;&lt;p&gt;如果底栏窗口已隐藏则显示它。如果它可见则隐藏它。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2350" />
-      <source>Cooperation-Viewer</source>
-      <translation>协作浏览器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2351" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation>协作浏览器(&amp;O)</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2352" />
+      <source>Cooperation-Viewer</source>
+      <translation>协作浏览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2353" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation>协作浏览器(&amp;O)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2354" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
+      <location filename="../UI/UserInterface.py" line="2360" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation>将输入焦点切换至协作浏览器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2361" />
+      <location filename="../UI/UserInterface.py" line="2363" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;激活协作浏览器&lt;/b&gt;&lt;p&gt;将输入焦点切换至协作浏览器窗口。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2376" />
+      <location filename="../UI/UserInterface.py" line="2378" />
       <source>&amp;IRC</source>
       <translation>&amp;IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2377" />
+      <location filename="../UI/UserInterface.py" line="2379" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2383" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Switch the input focus to the IRC window.</source>
       <translation>将输入焦点切换至 IRC 窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2386" />
+      <location filename="../UI/UserInterface.py" line="2388" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;激活 IRC&lt;/b&gt;&lt;p&gt;将输入焦点切换至 IRC 窗口。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2397" />
-      <source>Symbols-Viewer</source>
-      <translation>符号查看器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2398" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>符号查看器(&amp;Y)</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2399" />
+      <source>Symbols-Viewer</source>
+      <translation>符号查看器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2400" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>符号查看器(&amp;Y)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2401" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2407" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation>将输入焦点切换至符号查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2408" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2422" />
-      <source>Numbers-Viewer</source>
-      <translation>数字查看器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2423" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>数字查看器(&amp;B)</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2424" />
+      <source>Numbers-Viewer</source>
+      <translation>数字查看器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation>数字查看器(&amp;B)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2426" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
+      <location filename="../UI/UserInterface.py" line="2432" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation>将输入焦点切换至数字查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2433" />
+      <location filename="../UI/UserInterface.py" line="2435" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2449" />
+      <location filename="../UI/UserInterface.py" line="2451" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2455" />
+      <location filename="../UI/UserInterface.py" line="2457" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2460" />
+      <location filename="../UI/UserInterface.py" line="2462" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2476" />
+      <location filename="../UI/UserInterface.py" line="2478" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2482" />
+      <location filename="../UI/UserInterface.py" line="2484" />
       <source>Switch the input focus to the PyPI Package Management window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2487" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2498" />
+      <location filename="../UI/UserInterface.py" line="2500" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2504" />
+      <location filename="../UI/UserInterface.py" line="2506" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2520" />
+      <location filename="../UI/UserInterface.py" line="2522" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2528" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2529" />
+      <location filename="../UI/UserInterface.py" line="2531" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2544" />
+      <location filename="../UI/UserInterface.py" line="2546" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2552" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2553" />
+      <location filename="../UI/UserInterface.py" line="2555" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2568" />
+      <location filename="../UI/UserInterface.py" line="2570" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2574" />
+      <location filename="../UI/UserInterface.py" line="2576" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2579" />
+      <location filename="../UI/UserInterface.py" line="2581" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2595" />
+      <location filename="../UI/UserInterface.py" line="2597" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2603" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2618" />
+      <location filename="../UI/UserInterface.py" line="2620" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2626" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2641" />
-      <location filename="../UI/UserInterface.py" line="2640" />
+      <location filename="../UI/UserInterface.py" line="2643" />
+      <location filename="../UI/UserInterface.py" line="2642" />
       <source>VCS Status List</source>
       <translation type="unfinished">VCS 状态列表</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2642" />
+      <location filename="../UI/UserInterface.py" line="2644" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2648" />
+      <location filename="../UI/UserInterface.py" line="2650" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2653" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2664" />
+      <location filename="../UI/UserInterface.py" line="2666" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
+      <location filename="../UI/UserInterface.py" line="2672" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2673" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2686" />
-      <source>What's This?</source>
-      <translation>这是什么?</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2688" />
+      <source>What's This?</source>
+      <translation>这是什么?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2690" />
       <source>&amp;What's This?</source>
       <translation>这是什么(&amp;W)?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2689" />
+      <location filename="../UI/UserInterface.py" line="2691" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>Context sensitive help</source>
-      <translation>背景帮助</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2696" />
+      <source>Context sensitive help</source>
+      <translation>背景帮助</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2709" />
-      <source>Helpviewer</source>
-      <translation>帮助浏览器</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2711" />
+      <source>Helpviewer</source>
+      <translation>帮助浏览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2713" />
       <source>&amp;Helpviewer...</source>
       <translation>帮助浏览器(&amp;H)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2714" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2717" />
-      <source>Open the helpviewer window</source>
-      <translation>打开帮助浏览器窗口</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2719" />
+      <source>Open the helpviewer window</source>
+      <translation>打开帮助浏览器窗口</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2739" />
+      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Versions</source>
       <translation>显示版本</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2740" />
+      <location filename="../UI/UserInterface.py" line="2742" />
       <source>Show &amp;Versions</source>
       <translation>显示版本(&amp;V)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <source>Display version information</source>
-      <translation>显示版本信息</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2748" />
+      <source>Display version information</source>
+      <translation>显示版本信息</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;显示版本&lt;/b&gt;&lt;p&gt;显示版本信息。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2754" />
+      <location filename="../UI/UserInterface.py" line="2756" />
       <source>Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2757" />
       <source>&amp;Copy Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2764" />
       <source>Copy version information to the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2765" />
+      <location filename="../UI/UserInterface.py" line="2767" />
       <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2781" />
-      <location filename="../UI/UserInterface.py" line="2774" />
-      <source>Show Error Log</source>
-      <translation>显示错误日志</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Show Error &amp;Log...</source>
-      <translation>显示错误日志(&amp;L)…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2783" />
+      <location filename="../UI/UserInterface.py" line="2776" />
+      <source>Show Error Log</source>
+      <translation>显示错误日志</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2777" />
+      <source>Show Error &amp;Log...</source>
+      <translation>显示错误日志(&amp;L)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2785" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation>&lt;b&gt;显示错误日志…&lt;/b&gt;&lt;p&gt;打开一个对话框显示最近的错误日志。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
+      <location filename="../UI/UserInterface.py" line="2794" />
       <source>Show Install Info</source>
       <translation>显示安装信息</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2795" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished">显示安装&amp;信息…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
-      <source>Show Installation Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Show Installation Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4738" />
-      <location filename="../UI/UserInterface.py" line="2811" />
+      <location filename="../UI/UserInterface.py" line="4712" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>Report Bug</source>
       <translation>报告错误</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2811" />
-      <source>Report &amp;Bug...</source>
-      <translation>报告错误(&amp;B)…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2813" />
-      <source>Report a bug</source>
-      <translation>报告一个错误</translation>
+      <source>Report &amp;Bug...</source>
+      <translation>报告错误(&amp;B)…</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2815" />
+      <source>Report a bug</source>
+      <translation>报告一个错误</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation>&lt;b&gt;报告错误…&lt;/b&gt;&lt;p&gt;打开一个对话框并报告一个错误。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2821" />
+      <location filename="../UI/UserInterface.py" line="2823" />
       <source>Request Feature</source>
       <translation>请求功能</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2824" />
       <source>Request &amp;Feature...</source>
       <translation>请求功能(&amp;F)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2828" />
-      <source>Send a feature request</source>
-      <translation>发送一个功能请求</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2830" />
+      <source>Send a feature request</source>
+      <translation>发送一个功能请求</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation>&lt;b&gt;请求功能…&lt;/b&gt;&lt;p&gt;打开一个对话框并发送一个功能请求。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4174" />
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="4148" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <source>Testing</source>
       <translation>测试</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2843" />
+      <location filename="../UI/UserInterface.py" line="2845" />
       <source>&amp;Testing...</source>
       <translation>测试…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2849" />
-      <source>Start the testing dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2851" />
+      <source>Start the testing dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
-      <source>Restart Last Test</source>
-      <translation>重新开始上次测试</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2864" />
+      <source>Restart Last Test</source>
+      <translation>重新开始上次测试</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2866" />
       <source>&amp;Restart Last Test...</source>
       <translation>&amp;重新开始上次测试…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2870" />
-      <source>Restarts the last test</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2872" />
+      <source>Restarts the last test</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2882" />
-      <source>Rerun Failed Tests</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2884" />
+      <source>Rerun Failed Tests</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2886" />
       <source>Rerun Failed Tests...</source>
       <translation>重新运行失败的测试…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Rerun failed tests of the last run</source>
       <translation>重新运行上一次运行中失败的测试</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
+      <location filename="../UI/UserInterface.py" line="2896" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2906" />
+      <source>Test Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2908" />
       <source>Test &amp;Script...</source>
       <translation>测试脚本…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2914" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2916" />
       <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2923" />
+      <source>Test Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2925" />
       <source>Test &amp;Project...</source>
       <translation>测试项目…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Run tests of the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2931" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2933" />
       <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
-      <source>Qt-Designer</source>
-      <translation>Qt 设计师</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2942" />
+      <source>Qt-Designer</source>
+      <translation>Qt 设计师</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2944" />
       <source>Qt-&amp;Designer...</source>
       <translation>Qt 设计师(&amp;D)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start Qt-Designer</source>
-      <translation>启动 Qt 设计师</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2950" />
+      <source>Start Qt-Designer</source>
+      <translation>启动 Qt 设计师</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt 设计师&lt;/b&gt;&lt;p&gt;启动 Qt 设计师。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2959" />
-      <source>Qt-Linguist</source>
-      <translation>Qt 语言家</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2961" />
+      <source>Qt-Linguist</source>
+      <translation>Qt 语言家</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2963" />
       <source>Qt-&amp;Linguist...</source>
       <translation>Qt 语言家(&amp;L)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2967" />
-      <source>Start Qt-Linguist</source>
-      <translation>启动 Qt 语言家</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2969" />
+      <source>Start Qt-Linguist</source>
+      <translation>启动 Qt 语言家</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2971" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt 语言家&lt;/b&gt;&lt;p&gt;启动 Qt 语言家。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>UI Previewer</source>
-      <translation>用户界面预览器</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2979" />
+      <source>UI Previewer</source>
+      <translation>用户界面预览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
       <source>&amp;UI Previewer...</source>
       <translation>用户界面预览器(&amp;U)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
-      <source>Start the UI Previewer</source>
-      <translation>开启用户界面预览器</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2987" />
+      <source>Start the UI Previewer</source>
+      <translation>开启用户界面预览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;助词界面预览器&lt;/b&gt;&lt;p&gt;开启用户界面预览器。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2993" />
-      <source>Translations Previewer</source>
-      <translation>翻译预览器</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2995" />
+      <source>Translations Previewer</source>
+      <translation>翻译预览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2997" />
       <source>&amp;Translations Previewer...</source>
       <translation>翻译预览器(&amp;T)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <source>Start the Translations Previewer</source>
-      <translation>开启翻译预览器</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3003" />
+      <source>Start the Translations Previewer</source>
+      <translation>开启翻译预览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3005" />
       <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
       <translation>&lt;b&gt;翻译预览器&lt;/b&gt;&lt;p&gt;开启翻译预览器。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3012" />
-      <source>Compare Files</source>
-      <translation>比较文件</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3014" />
+      <source>Compare Files</source>
+      <translation>比较文件</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3016" />
       <source>&amp;Compare Files...</source>
       <translation>比较文件(&amp;C)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
-      <location filename="../UI/UserInterface.py" line="3020" />
+      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3022" />
       <source>Compare two files</source>
       <translation>比较两个文件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3024" />
       <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;比较文件&lt;/b&gt;&lt;p&gt;打开对话框比较两个文件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3031" />
-      <source>Compare Files side by side</source>
-      <translation>并排比较文件</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3033" />
+      <source>Compare Files side by side</source>
+      <translation>并排比较文件</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3035" />
       <source>Compare &amp;Files side by side...</source>
       <translation>并排比较文件(&amp;F)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3041" />
+      <location filename="../UI/UserInterface.py" line="3043" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation>&lt;b&gt;并排比较文件&lt;/b&gt;&lt;p&gt;打开对话框比较两个文件,并排显示结果。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>SQL Browser</source>
-      <translation>SQL 浏览器</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3053" />
+      <source>SQL Browser</source>
+      <translation>SQL 浏览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3055" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL 浏览器(&amp;B)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>Browse a SQL database</source>
-      <translation>浏览 SQL 数据库</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3061" />
+      <source>Browse a SQL database</source>
+      <translation>浏览 SQL 数据库</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
       <translation>&lt;b&gt;SQL 浏览器&lt;/b&gt;&lt;p&gt;浏览 SQL 数据库。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3075" />
-      <location filename="../UI/UserInterface.py" line="3067" />
-      <source>Mini Editor</source>
-      <translation>小型编辑器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>Mini &amp;Editor...</source>
-      <translation>小型编辑器(&amp;E)…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <location filename="../UI/UserInterface.py" line="3069" />
+      <source>Mini Editor</source>
+      <translation>小型编辑器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3071" />
+      <source>Mini &amp;Editor...</source>
+      <translation>小型编辑器(&amp;E)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3079" />
       <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;小型编辑器&lt;/b&gt;&lt;p&gt;打开一个具有简化功能编辑器的对话框。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3086" />
-      <source>Hex Editor</source>
-      <translation>十六进制编辑器</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3088" />
+      <source>Hex Editor</source>
+      <translation>十六进制编辑器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3090" />
       <source>&amp;Hex Editor...</source>
       <translation>十六进制编辑器(&amp;H)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3094" />
-      <source>Start the eric Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>Start the eric Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3106" />
-      <source>eric Web Browser</source>
-      <translation type="unfinished">eric 网页浏览器</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3108" />
+      <source>eric Web Browser</source>
+      <translation type="unfinished">eric 网页浏览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3110" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished">eric &amp;网页浏览器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3114" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3116" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3118" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3126" />
-      <source>FIDO2 Security Key Management</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3128" />
+      <source>FIDO2 Security Key Management</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3130" />
       <source>FIDO2 Security Key Management...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3135" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>Start the FIDO2 Security Key Management tool</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
+      <location filename="../UI/UserInterface.py" line="3140" />
       <source>&lt;b&gt;FIDO2 Security Key Management&lt;/b&gt;&lt;p&gt;Start a tool to manage FIDO2 securit y keys.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Icon Editor</source>
-      <translation>图标编辑器</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3151" />
+      <source>Icon Editor</source>
+      <translation>图标编辑器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3153" />
       <source>&amp;Icon Editor...</source>
       <translation>图标编辑器(&amp;I)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
-      <source>Start the eric Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3159" />
+      <source>Start the eric Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3161" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6631" />
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="6605" />
+      <location filename="../UI/UserInterface.py" line="3173" />
       <source>Snapshot</source>
       <translation>快照</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3173" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>&amp;Snapshot...</source>
       <translation>快照(&amp;S)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <source>Take snapshots of a screen region</source>
-      <translation>截取屏幕区域的快照</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3181" />
+      <source>Take snapshots of a screen region</source>
+      <translation>截取屏幕区域的快照</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation>&lt;b&gt;快照&lt;/b&gt;&lt;p&gt;打开一个对话框来截取屏幕一个区域的快照。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>eric PDF Viewer</source>
-      <translation type="unfinished">eric PDF查看器</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3193" />
+      <source>eric PDF Viewer</source>
+      <translation type="unfinished">eric PDF查看器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>eric PDF &amp;Viewer...</source>
       <translation type="unfinished">eric PDF&amp;查看器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3199" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3201" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
-      <source>Preferences</source>
-      <translation>首选项</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3212" />
+      <source>Preferences</source>
+      <translation>首选项</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>&amp;Preferences...</source>
       <translation>首选项(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Set the prefered configuration</source>
-      <translation>设定偏好配置</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3220" />
+      <source>Set the prefered configuration</source>
+      <translation>设定偏好配置</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3222" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;首选项&lt;/b&gt;&lt;p&gt;将应用程序的配置项设定为你喜欢的值。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Export Preferences</source>
-      <translation>导出首选项</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3233" />
+      <source>Export Preferences</source>
+      <translation>导出首选项</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>E&amp;xport Preferences...</source>
       <translation>导出首选项(&amp;X)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
-      <source>Export the current configuration</source>
-      <translation>导出当前配置</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3241" />
+      <source>Export the current configuration</source>
+      <translation>导出当前配置</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;导出首选项&lt;/b&gt;&lt;p&gt;将当前配置导出到一个文件中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
-      <source>Import Preferences</source>
-      <translation>导入首选项</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3252" />
+      <source>Import Preferences</source>
+      <translation>导入首选项</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
       <source>I&amp;mport Preferences...</source>
       <translation>导入首选项(&amp;M)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3261" />
       <source>Import a previously exported configuration</source>
       <translation>导入以前导出的配置</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3262" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation>&lt;b&gt;导入首选项&lt;/b&gt;&lt;p&gt;导入以前导出的配置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
-      <source>Export Theme</source>
-      <translation type="unfinished">导出主题</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3273" />
+      <source>Export Theme</source>
+      <translation type="unfinished">导出主题</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Export Theme...</source>
       <translation type="unfinished">导出主题…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3281" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3290" />
-      <source>Import Theme</source>
-      <translation type="unfinished">导入主题</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3292" />
+      <source>Import Theme</source>
+      <translation type="unfinished">导入主题</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
       <source>Import Theme...</source>
       <translation type="unfinished">导入主题…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
-      <source>Import a previously exported theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3300" />
+      <source>Import a previously exported theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3302" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload APIs</source>
-      <translation>重新载入 API</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
-      <source>Reload &amp;APIs</source>
-      <translation>重新载入 &amp;API</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3311" />
-      <source>Reload the API information</source>
-      <translation>重新载入 API 信息</translation>
+      <source>Reload APIs</source>
+      <translation>重新载入 API</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3311" />
+      <source>Reload &amp;APIs</source>
+      <translation>重新载入 &amp;API</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Reload the API information</source>
+      <translation>重新载入 API 信息</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation>&lt;b&gt;重新载入 API&lt;/b&gt;&lt;p&gt;重新载入 API 信息。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <location filename="../UI/UserInterface.py" line="3319" />
-      <source>Show external tools</source>
-      <translation>显示外部工具</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Show external &amp;tools</source>
-      <translation>显示外部工具(&amp;T)</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3329" />
+      <location filename="../UI/UserInterface.py" line="3321" />
+      <source>Show external tools</source>
+      <translation>显示外部工具</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3323" />
+      <source>Show external &amp;tools</source>
+      <translation>显示外部工具(&amp;T)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3331" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>View Profiles</source>
-      <translation>视图模式</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3341" />
+      <source>View Profiles</source>
+      <translation>视图模式</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3343" />
       <source>&amp;View Profiles...</source>
       <translation>视图模式(&amp;V)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Configure view profiles</source>
-      <translation>配置视图模式</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Configure view profiles</source>
+      <translation>配置视图模式</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation>&lt;b&gt;视图模式&lt;/b&gt;&lt;p&gt;配置视图模式。通过该对话框可以为预先确定的视图设置多个窗口的可见性。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
-      <source>Toolbars</source>
-      <translation>工具栏</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3362" />
+      <source>Toolbars</source>
+      <translation>工具栏</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3364" />
       <source>Tool&amp;bars...</source>
       <translation>工具栏(&amp;B)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
-      <source>Configure toolbars</source>
-      <translation>配置工具栏</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3370" />
+      <source>Configure toolbars</source>
+      <translation>配置工具栏</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3372" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation>&lt;b&gt;工具栏&lt;/b&gt;&lt;p&gt;配置工具栏通过该对话框可以改变显示于多个工具栏的动作,还可以自定义工具栏。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
-      <source>Keyboard Shortcuts</source>
-      <translation>键盘快捷键</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3383" />
+      <source>Keyboard Shortcuts</source>
+      <translation>键盘快捷键</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>键盘快捷键(&amp;S)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3389" />
-      <source>Set the keyboard shortcuts</source>
-      <translation>设置键盘快捷键</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3391" />
+      <source>Set the keyboard shortcuts</source>
+      <translation>设置键盘快捷键</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;键盘快捷键&lt;/b&gt;&lt;p&gt;将程序的键盘快捷键设置成你喜欢的按键。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7600" />
-      <location filename="../UI/UserInterface.py" line="7581" />
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7555" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <source>Export Keyboard Shortcuts</source>
       <translation>导出键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>导出键盘快捷键(&amp;E)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>导出键盘快捷键</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3411" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>导出键盘快捷键</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3413" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;导出键盘快捷键&lt;/b&gt;&lt;p&gt;导出程序的键盘快捷键。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7619" />
-      <location filename="../UI/UserInterface.py" line="3420" />
+      <location filename="../UI/UserInterface.py" line="7593" />
+      <location filename="../UI/UserInterface.py" line="3422" />
       <source>Import Keyboard Shortcuts</source>
       <translation>导入键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>导入键盘快捷键(&amp;I)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3428" />
-      <source>Import the keyboard shortcuts</source>
-      <translation>导入键盘快捷键</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3430" />
+      <source>Import the keyboard shortcuts</source>
+      <translation>导入键盘快捷键</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3432" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;导入键盘快捷键&lt;/b&gt;&lt;p&gt;导入程序的键盘快捷键。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3440" />
-      <source>Manage SSL Certificates</source>
-      <translation>管理 SSL 证书</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3442" />
+      <source>Manage SSL Certificates</source>
+      <translation>管理 SSL 证书</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3444" />
       <source>Manage SSL Certificates...</source>
       <translation>管理 SSL 证书…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Manage the saved SSL certificates</source>
       <translation>管理保存的 SSL 证书</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3454" />
       <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
       <translation>&lt;b&gt;管理 SSL 证书…&lt;/b&gt;&lt;p&gt;打开一个对话框来管理保存的 SSL 证书。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3462" />
-      <source>Edit Message Filters</source>
-      <translation>编辑消息过滤器</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3464" />
+      <source>Edit Message Filters</source>
+      <translation>编辑消息过滤器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3466" />
       <source>Edit Message Filters...</source>
       <translation>编辑消息过滤器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation>编辑消息过滤器使得不期望的消息不显示</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3474" />
+      <location filename="../UI/UserInterface.py" line="3476" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;编辑消息过滤器&lt;/b&gt;&lt;p&gt;打开对话框来编辑消息过滤器,使得不期望的错误信息不再在错误窗口中显示。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <location filename="../UI/UserInterface.py" line="3487" />
-      <location filename="../UI/UserInterface.py" line="3485" />
-      <source>Clear private data</source>
-      <translation type="unfinished">清空隐私数据</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3489" />
+      <location filename="../UI/UserInterface.py" line="3487" />
+      <source>Clear private data</source>
+      <translation type="unfinished">清空隐私数据</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3506" />
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3508" />
+      <location filename="../UI/UserInterface.py" line="3507" />
       <source>Activate current editor</source>
       <translation>激活当前编辑器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3507" />
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3518" />
-      <location filename="../UI/UserInterface.py" line="3517" />
+      <location filename="../UI/UserInterface.py" line="3520" />
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>Show next</source>
       <translation>显示下一个</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3519" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3530" />
-      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <source>Show previous</source>
       <translation>显示上一个</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3533" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3542" />
-      <location filename="../UI/UserInterface.py" line="3541" />
+      <location filename="../UI/UserInterface.py" line="3544" />
+      <location filename="../UI/UserInterface.py" line="3543" />
       <source>Switch between tabs</source>
       <translation>在选项卡间切换</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3543" />
+      <location filename="../UI/UserInterface.py" line="3545" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3553" />
-      <source>Plugin Infos</source>
-      <translation>插件信息</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3555" />
+      <source>Plugin Infos</source>
+      <translation>插件信息</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>&amp;Plugin Infos...</source>
       <translation>插件信息(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3561" />
-      <source>Show Plugin Infos</source>
-      <translation>显示插件信息</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3563" />
+      <source>Show Plugin Infos</source>
+      <translation>显示插件信息</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3565" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;插件信息…&lt;/b&gt;&lt;p&gt;打开一个对话框,显示与已载入插件有关的一些信息。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3581" />
-      <location filename="../UI/UserInterface.py" line="3573" />
-      <source>Install Plugins</source>
-      <translation>安装插件</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3575" />
-      <source>&amp;Install Plugins...</source>
-      <translation>安装插件(&amp;I)…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3583" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <source>Install Plugins</source>
+      <translation>安装插件</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>&amp;Install Plugins...</source>
+      <translation>安装插件(&amp;I)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
       <translation>&lt;b&gt;安装插件…&lt;/b&gt;&lt;p&gt;打开一个对话框安装或更新插件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3600" />
-      <location filename="../UI/UserInterface.py" line="3592" />
-      <source>Uninstall Plugin</source>
-      <translation>卸载插件</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>卸载插件(&amp;U)…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3602" />
+      <location filename="../UI/UserInterface.py" line="3594" />
+      <source>Uninstall Plugin</source>
+      <translation>卸载插件</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3596" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>卸载插件(&amp;U)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
       <translation>&lt;b&gt;卸载插件…&lt;/b&gt;&lt;p&gt;打开一个对话框卸载插件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3615" />
       <source>Plugin &amp;Repository...</source>
       <translation>插件储存库(&amp;R)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3619" />
-      <source>Show Plugins available for download</source>
-      <translation>显示可以下载的插件</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3621" />
+      <source>Show Plugins available for download</source>
+      <translation>显示可以下载的插件</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3623" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;插件储存库…&lt;/b&gt;&lt;p&gt;打开一个对话框,显示互联网上可用的插件列表。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3651" />
-      <location filename="../UI/UserInterface.py" line="3650" />
+      <location filename="../UI/UserInterface.py" line="3653" />
+      <location filename="../UI/UserInterface.py" line="3652" />
       <source>Qt5 Documentation</source>
       <translation>Qt5 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>Open Qt5 Documentation</source>
-      <translation>打开 Qt5 文档</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3659" />
+      <source>Open Qt5 Documentation</source>
+      <translation>打开 Qt5 文档</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3672" />
-      <location filename="../UI/UserInterface.py" line="3671" />
+      <location filename="../UI/UserInterface.py" line="3674" />
+      <location filename="../UI/UserInterface.py" line="3673" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Qt6 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3678" />
-      <source>Open Qt6 Documentation</source>
-      <translation type="unfinished">打开 Qt6 文档</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3680" />
+      <source>Open Qt6 Documentation</source>
+      <translation type="unfinished">打开 Qt6 文档</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3682" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3693" />
-      <location filename="../UI/UserInterface.py" line="3692" />
+      <location filename="../UI/UserInterface.py" line="3695" />
+      <location filename="../UI/UserInterface.py" line="3694" />
       <source>PyQt5 Documentation</source>
       <translation>PyQt5 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3699" />
-      <source>Open PyQt5 Documentation</source>
-      <translation>打开 PyQt5 文档</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Open PyQt5 Documentation</source>
+      <translation>打开 PyQt5 文档</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3714" />
-      <location filename="../UI/UserInterface.py" line="3713" />
+      <location filename="../UI/UserInterface.py" line="3716" />
+      <location filename="../UI/UserInterface.py" line="3715" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">PyQt6 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3720" />
-      <source>Open PyQt6 Documentation</source>
-      <translation type="unfinished">打开 PyQt6 文档</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3722" />
+      <source>Open PyQt6 Documentation</source>
+      <translation type="unfinished">打开 PyQt6 文档</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3724" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3740" />
-      <location filename="../UI/UserInterface.py" line="3739" />
+      <location filename="../UI/UserInterface.py" line="3742" />
+      <location filename="../UI/UserInterface.py" line="3741" />
       <source>Python 3 Documentation</source>
       <translation>Python 3 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3746" />
-      <source>Open Python 3 Documentation</source>
-      <translation>打开 Python 3 文档</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3748" />
+      <source>Open Python 3 Documentation</source>
+      <translation>打开 Python 3 文档</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3750" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Python 3 文档&lt;/b&gt;&lt;p&gt;显示 Python 3 文档。如果尚未配置文档目录,则在 Windows 系统上,文档位置将默认为 Python 3 可执行文件所在目录下的 doc 目录;在类 Unix 系统上,则默认为 &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt;。请在环境中设置 PYTHON3DOCDIR 以覆盖默认行为。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3767" />
-      <location filename="../UI/UserInterface.py" line="3766" />
+      <location filename="../UI/UserInterface.py" line="3769" />
+      <location filename="../UI/UserInterface.py" line="3768" />
       <source>eric API Documentation</source>
       <translation type="unfinished">eric API 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3773" />
-      <source>Open eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3775" />
+      <source>Open eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3777" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3793" />
-      <location filename="../UI/UserInterface.py" line="3792" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3799" />
-      <source>Open PySide2 Documentation</source>
+      <location filename="../UI/UserInterface.py" line="3795" />
+      <location filename="../UI/UserInterface.py" line="3794" />
+      <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3801" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3819" />
-      <location filename="../UI/UserInterface.py" line="3818" />
-      <source>PySide6 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3825" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3827" />
+      <location filename="../UI/UserInterface.py" line="3803" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3863" />
+      <location filename="../UI/UserInterface.py" line="3839" />
       <source>Sessions</source>
       <translation type="unfinished">会话</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3944" />
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>E&amp;xtras</source>
       <translation>扩展(&amp;X)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3954" />
+      <location filename="../UI/UserInterface.py" line="3930" />
       <source>Wi&amp;zards</source>
       <translation>向导(&amp;Z)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3948" />
       <source>P&amp;lugins</source>
       <translation>插件(&amp;L)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="3957" />
       <source>Configure...</source>
       <translation>配置…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3990" />
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>&amp;Testing</source>
       <translation>&amp;测试</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="3983" />
       <source>Select Tool Group</source>
       <translation>选择工具组</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4018" />
+      <location filename="../UI/UserInterface.py" line="3994" />
       <source>Se&amp;ttings</source>
       <translation>设置(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4051" />
+      <location filename="../UI/UserInterface.py" line="4027" />
       <source>&amp;Window</source>
       <translation>窗口(&amp;W)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4060" />
+      <location filename="../UI/UserInterface.py" line="4036" />
       <source>&amp;Windows</source>
       <translation>窗口(&amp;W)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4064" />
+      <location filename="../UI/UserInterface.py" line="4040" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4068" />
+      <location filename="../UI/UserInterface.py" line="4044" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4087" />
+      <location filename="../UI/UserInterface.py" line="4063" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4106" />
+      <location filename="../UI/UserInterface.py" line="4082" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4090" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="4096" />
       <source>&amp;Toolbars</source>
       <translation>工具栏(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4133" />
+      <location filename="../UI/UserInterface.py" line="4109" />
       <source>&amp;Help</source>
       <translation>帮助(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4190" />
-      <location filename="../UI/UserInterface.py" line="4173" />
+      <location filename="../UI/UserInterface.py" line="4164" />
+      <location filename="../UI/UserInterface.py" line="4147" />
       <source>Tools</source>
       <translation>工具</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4192" />
-      <location filename="../UI/UserInterface.py" line="4177" />
+      <location filename="../UI/UserInterface.py" line="4166" />
+      <location filename="../UI/UserInterface.py" line="4151" />
       <source>Settings</source>
       <translation>设置</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6361" />
-      <location filename="../UI/UserInterface.py" line="4193" />
-      <location filename="../UI/UserInterface.py" line="4178" />
+      <location filename="../UI/UserInterface.py" line="6335" />
+      <location filename="../UI/UserInterface.py" line="4167" />
+      <location filename="../UI/UserInterface.py" line="4152" />
       <source>Help</source>
       <translation>帮助</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4194" />
-      <location filename="../UI/UserInterface.py" line="4179" />
+      <location filename="../UI/UserInterface.py" line="4168" />
+      <location filename="../UI/UserInterface.py" line="4153" />
       <source>Profiles</source>
       <translation>模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4195" />
-      <location filename="../UI/UserInterface.py" line="4180" />
+      <location filename="../UI/UserInterface.py" line="4169" />
+      <location filename="../UI/UserInterface.py" line="4154" />
       <source>Plugins</source>
       <translation>插件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4191" />
+      <location filename="../UI/UserInterface.py" line="4165" />
       <source>Unittest</source>
       <translation>单元测试</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4368" />
+      <location filename="../UI/UserInterface.py" line="4342" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器语言。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4377" />
+      <location filename="../UI/UserInterface.py" line="4351" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器编码。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4386" />
+      <location filename="../UI/UserInterface.py" line="4360" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器行尾设置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4395" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器文件是否可写。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4404" />
+      <location filename="../UI/UserInterface.py" line="4378" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态栏的这一部分显示当前编辑的行号。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
+      <location filename="../UI/UserInterface.py" line="4387" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器的光标位置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4427" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4501" />
-      <location filename="../UI/UserInterface.py" line="4460" />
+      <location filename="../UI/UserInterface.py" line="4475" />
+      <location filename="../UI/UserInterface.py" line="4434" />
       <source>External Tools/{0}</source>
       <translation>外部工具/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4609" />
+      <location filename="../UI/UserInterface.py" line="4583" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation type="unfinished">&lt;h3&gt;版本号&lt;/h3&gt;&lt;table&gt; {2&gt;?} {2&gt;?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4679" />
+      <location filename="../UI/UserInterface.py" line="4653" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4683" />
+      <location filename="../UI/UserInterface.py" line="4657" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4739" />
+      <location filename="../UI/UserInterface.py" line="4713" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>电子邮件地址或邮件服务器地址为空。请在首选项对话框中配置你的电子邮件设置。</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5048" />
+      <source>Restart application</source>
+      <translation>重启程序</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5049" />
+      <source>The application needs to be restarted. Do it now?</source>
+      <translation>程序需要重启。现在重启?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5073" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5074" />
-      <source>Restart application</source>
-      <translation>重启程序</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5075" />
-      <source>The application needs to be restarted. Do it now?</source>
-      <translation>程序需要重启。现在重启?</translation>
+      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+
+Shall the upgrade be done now?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5098" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5099" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5100" />
-      <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
+      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5124" />
-      <source>Upgrade Eric</source>
+      <source>Upgrade Eric and PyQt6</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="5125" />
-      <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
-
-Shall the upgrade be done now?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5150" />
-      <source>Upgrade Eric and PyQt6</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5151" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5213" />
+      <location filename="../UI/UserInterface.py" line="5187" />
       <source>&amp;Builtin Tools</source>
       <translation>内建工具(&amp;B)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5233" />
+      <location filename="../UI/UserInterface.py" line="5207" />
       <source>&amp;Plugin Tools</source>
       <translation>插件工具(&amp;P)</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="5210" />
+      <source>&amp;User Tools</source>
+      <translation>用户工具(&amp;U)</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="5236" />
-      <source>&amp;User Tools</source>
-      <translation>用户工具(&amp;U)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5262" />
       <source>Configure Tool Groups ...</source>
       <translation>配置工具组…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5266" />
+      <location filename="../UI/UserInterface.py" line="5240" />
       <source>Configure current Tool Group ...</source>
       <translation>配置当前工具组…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5305" />
-      <location filename="../UI/UserInterface.py" line="5285" />
+      <location filename="../UI/UserInterface.py" line="5279" />
+      <location filename="../UI/UserInterface.py" line="5259" />
       <source>No User Tools Configured</source>
       <translation>没有配置的用户工具</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5381" />
+      <location filename="../UI/UserInterface.py" line="5355" />
       <source>&amp;Show all</source>
       <translation>全部显示(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5383" />
+      <location filename="../UI/UserInterface.py" line="5357" />
       <source>&amp;Hide all</source>
       <translation>全部隐藏(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6498" />
-      <location filename="../UI/UserInterface.py" line="6487" />
-      <location filename="../UI/UserInterface.py" line="6439" />
-      <location filename="../UI/UserInterface.py" line="6429" />
-      <location filename="../UI/UserInterface.py" line="6252" />
-      <location filename="../UI/UserInterface.py" line="6242" />
-      <location filename="../UI/UserInterface.py" line="6184" />
-      <location filename="../UI/UserInterface.py" line="6174" />
+      <location filename="../UI/UserInterface.py" line="6472" />
+      <location filename="../UI/UserInterface.py" line="6461" />
+      <location filename="../UI/UserInterface.py" line="6413" />
+      <location filename="../UI/UserInterface.py" line="6403" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6216" />
+      <location filename="../UI/UserInterface.py" line="6158" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <source>Problem</source>
       <translation>问题</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6499" />
-      <location filename="../UI/UserInterface.py" line="6488" />
-      <location filename="../UI/UserInterface.py" line="6440" />
-      <location filename="../UI/UserInterface.py" line="6430" />
-      <location filename="../UI/UserInterface.py" line="6253" />
-      <location filename="../UI/UserInterface.py" line="6243" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6175" />
+      <location filename="../UI/UserInterface.py" line="6473" />
+      <location filename="../UI/UserInterface.py" line="6462" />
+      <location filename="../UI/UserInterface.py" line="6414" />
+      <location filename="../UI/UserInterface.py" line="6404" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 不存在或者长度为零。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6740" />
-      <location filename="../UI/UserInterface.py" line="6651" />
-      <location filename="../UI/UserInterface.py" line="6534" />
-      <location filename="../UI/UserInterface.py" line="6511" />
-      <location filename="../UI/UserInterface.py" line="6452" />
-      <location filename="../UI/UserInterface.py" line="6399" />
-      <location filename="../UI/UserInterface.py" line="6377" />
-      <location filename="../UI/UserInterface.py" line="6328" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6275" />
-      <location filename="../UI/UserInterface.py" line="6216" />
-      <location filename="../UI/UserInterface.py" line="6207" />
+      <location filename="../UI/UserInterface.py" line="6714" />
+      <location filename="../UI/UserInterface.py" line="6625" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6302" />
+      <location filename="../UI/UserInterface.py" line="6293" />
+      <location filename="../UI/UserInterface.py" line="6258" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6190" />
+      <location filename="../UI/UserInterface.py" line="6181" />
       <source>Process Generation Error</source>
       <translation>进程生成错误</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6208" />
+      <location filename="../UI/UserInterface.py" line="6182" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动 Qt 设计师。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6217" />
+      <location filename="../UI/UserInterface.py" line="6191" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6250" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动 Qt 语言家。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6285" />
+      <location filename="../UI/UserInterface.py" line="6259" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6320" />
+      <location filename="../UI/UserInterface.py" line="6294" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动 Qt 助手。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6303" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6362" />
+      <location filename="../UI/UserInterface.py" line="6336" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>目前没有选择自定义浏览器。请使用首选项对话框指定一个。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6378" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动自定义的查看器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6374" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法开启帮助浏览器。&lt;br&gt;确保其有效如 &lt;b&gt;hh&lt;/b&gt;。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6453" />
+      <location filename="../UI/UserInterface.py" line="6427" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动 UI 预览器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6512" />
+      <location filename="../UI/UserInterface.py" line="6486" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动翻译预览器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6535" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动 SQL 浏览器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6632" />
+      <location filename="../UI/UserInterface.py" line="6606" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6652" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动快照工具。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6685" />
-      <location filename="../UI/UserInterface.py" line="6675" />
+      <location filename="../UI/UserInterface.py" line="6659" />
+      <location filename="../UI/UserInterface.py" line="6649" />
       <source>External Tools</source>
       <translation>外部工具</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6676" />
+      <location filename="../UI/UserInterface.py" line="6650" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6686" />
+      <location filename="../UI/UserInterface.py" line="6660" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6723" />
+      <location filename="../UI/UserInterface.py" line="6697" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>正在启动进程“{0} {1}”。
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6741" />
+      <location filename="../UI/UserInterface.py" line="6715" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6820" />
+      <location filename="../UI/UserInterface.py" line="6794" />
       <source>Process '{0}' has exited.
 </source>
       <translation>进程“{0}”已退出。
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7108" />
-      <location filename="../UI/UserInterface.py" line="7046" />
-      <location filename="../UI/UserInterface.py" line="7002" />
-      <location filename="../UI/UserInterface.py" line="6928" />
-      <location filename="../UI/UserInterface.py" line="6864" />
+      <location filename="../UI/UserInterface.py" line="7082" />
+      <location filename="../UI/UserInterface.py" line="7020" />
+      <location filename="../UI/UserInterface.py" line="6976" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6838" />
       <source>Documentation Missing</source>
       <translation>文档缺失</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7109" />
-      <location filename="../UI/UserInterface.py" line="7047" />
-      <location filename="../UI/UserInterface.py" line="7003" />
-      <location filename="../UI/UserInterface.py" line="6929" />
-      <location filename="../UI/UserInterface.py" line="6865" />
+      <location filename="../UI/UserInterface.py" line="7083" />
+      <location filename="../UI/UserInterface.py" line="7021" />
+      <location filename="../UI/UserInterface.py" line="6977" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6839" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7090" />
-      <location filename="../UI/UserInterface.py" line="6972" />
+      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="6946" />
       <source>Documentation</source>
       <translation>文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6973" />
+      <location filename="../UI/UserInterface.py" line="6947" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7091" />
+      <location filename="../UI/UserInterface.py" line="7065" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7270" />
-      <location filename="../UI/UserInterface.py" line="7206" />
+      <location filename="../UI/UserInterface.py" line="7244" />
+      <location filename="../UI/UserInterface.py" line="7180" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7207" />
+      <location filename="../UI/UserInterface.py" line="7181" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7271" />
+      <location filename="../UI/UserInterface.py" line="7245" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Open Browser</source>
       <translation>打开浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7317" />
+      <location filename="../UI/UserInterface.py" line="7291" />
       <source>Could not start a web browser</source>
       <translation>无法启动网络浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7595" />
+      <location filename="../UI/UserInterface.py" line="7557" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7601" />
+      <location filename="../UI/UserInterface.py" line="7575" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7805" />
+      <location filename="../UI/UserInterface.py" line="7779" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7808" />
+      <location filename="../UI/UserInterface.py" line="7782" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7845" />
+      <location filename="../UI/UserInterface.py" line="7819" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7846" />
+      <location filename="../UI/UserInterface.py" line="7820" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;会话文件 &lt;b&gt;{0}&lt;/b&gt; 无法读取。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7869" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7894" />
-      <location filename="../UI/UserInterface.py" line="7871" />
+      <location filename="../UI/UserInterface.py" line="7868" />
+      <location filename="../UI/UserInterface.py" line="7845" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8400" />
+      <location filename="../UI/UserInterface.py" line="8374" />
       <source>Drop Error</source>
       <translation>降落误差</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8401" />
+      <location filename="../UI/UserInterface.py" line="8375" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; 不是一个文件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8598" />
+      <location filename="../UI/UserInterface.py" line="8550" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8551" />
+      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8599" />
-      <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
       <source>First time usage</source>
       <translation>第一次使用</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8600" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8622" />
       <source>Select Workspace Directory</source>
       <translation>选择工作区目录</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8790" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8791" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>

eric ide

mercurial