Project eric7

Fri, 25 Nov 2022 11:51:51 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 25 Nov 2022 11:51:51 +0100
branch
eric7
changeset 9533
e017c0df9ef1
parent 9532
39a1ebff6b4e
child 9534
5ed8445f3b31

Project
- added capability to reload the current project

docs/changelog.md file | annotate | diff | comparison | revisions
src/eric7/Documentation/Help/source.qch file | annotate | diff | comparison | revisions
src/eric7/Project/Project.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
src/eric7/icons/breeze-dark/projectReload.svg file | annotate | diff | comparison | revisions
src/eric7/icons/breeze-light/projectReload.svg file | annotate | diff | comparison | revisions
src/eric7/icons/oxygen/projectReload.png file | annotate | diff | comparison | revisions
--- a/docs/changelog.md	Thu Nov 24 19:42:13 2022 +0100
+++ b/docs/changelog.md	Fri Nov 25 11:51:51 2022 +0100
@@ -22,6 +22,8 @@
       (e.g. for unknown devices or inside the Linux container of ChromeOS)
 - Previewers
     - added a button to copy the contents of the HTML previewer to the clipboard
+- Project
+    - added capability to reload the current project
 - Web Browser
     - added bookmark importer entries for
         - Falkon
Binary file src/eric7/Documentation/Help/source.qch has changed
--- a/src/eric7/Project/Project.py	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/Project/Project.py	Fri Nov 25 11:51:51 2022 +0100
@@ -2467,6 +2467,7 @@
             if not self.__pdata["FILETYPES"]:
                 self.initFileTypes()
             self.setDirty(True)
+            self.reloadAct.setEnabled(True)
             self.closeAct.setEnabled(True)
             self.saveasAct.setEnabled(True)
             self.actGrp2.setEnabled(True)
@@ -3167,6 +3168,7 @@
                     ):
                         self.__pdata["VCS"] = "None"
                         self.vcs = self.initVCS()
+                    self.reloadAct.setEnabled(True)
                     self.closeAct.setEnabled(True)
                     self.saveasAct.setEnabled(True)
                     self.actGrp2.setEnabled(True)
@@ -3449,6 +3451,7 @@
         self.__closeAllWindows()
 
         self.__initData()
+        self.reloadAct.setEnabled(False)
         self.closeAct.setEnabled(False)
         self.saveasAct.setEnabled(False)
         self.saveAct.setEnabled(False)
@@ -4109,11 +4112,27 @@
         )
         act.setStatusTip(self.tr("Open an existing project"))
         act.setWhatsThis(
-            self.tr("""<b>Open...</b>""" """<p>This opens an existing project.</p>""")
+            self.tr("""<b>Open...</b><p>This opens an existing project.</p>""")
         )
         act.triggered.connect(self.openProject)
         self.actions.append(act)
 
+        self.reloadAct = EricAction(
+            self.tr("Reload project"),
+            EricPixmapCache.getIcon("projectReload"),
+            self.tr("&Reload"),
+            0,
+            0,
+            self.actGrp1,
+            "project_reload",
+        )
+        self.reloadAct.setStatusTip(self.tr("Reload the current project"))
+        self.reloadAct.setWhatsThis(
+            self.tr("""<b>Reload</b><p>This reloads the current project.</p>""")
+        )
+        self.reloadAct.triggered.connect(self.reopenProject)
+        self.actions.append(self.reloadAct)
+
         self.closeAct = EricAction(
             self.tr("Close project"),
             EricPixmapCache.getIcon("projectClose"),
@@ -4125,7 +4144,7 @@
         )
         self.closeAct.setStatusTip(self.tr("Close the current project"))
         self.closeAct.setWhatsThis(
-            self.tr("""<b>Close</b>""" """<p>This closes the current project.</p>""")
+            self.tr("""<b>Close</b><p>This closes the current project.</p>""")
         )
         self.closeAct.triggered.connect(self.closeProject)
         self.actions.append(self.closeAct)
@@ -4141,7 +4160,7 @@
         )
         self.saveAct.setStatusTip(self.tr("Save the current project"))
         self.saveAct.setWhatsThis(
-            self.tr("""<b>Save</b>""" """<p>This saves the current project.</p>""")
+            self.tr("""<b>Save</b><p>This saves the current project.</p>""")
         )
         self.saveAct.triggered.connect(self.saveProject)
         self.actions.append(self.saveAct)
@@ -5113,6 +5132,7 @@
         self.recreateVenvAct.triggered.connect(self.__createEmbeddedEnvironment)
         self.actions.append(self.recreateVenvAct)
 
+        self.reloadAct.setEnabled(False)
         self.closeAct.setEnabled(False)
         self.saveAct.setEnabled(False)
         self.saveasAct.setEnabled(False)
--- a/src/eric7/i18n/eric7_cs.ts	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/i18n/eric7_cs.ts	Fri Nov 25 11:51:51 2022 +0100
@@ -5517,7 +5517,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="206" />
+      <location filename="../Utilities/__init__.py" line="205" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>Nesprávné kódování '{0}' pro daný text.</translation>
     </message>
@@ -8854,88 +8854,89 @@
       <translation>Stav</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="221" />
+      <location filename="../Debugger/DebugViewer.py" line="149" />
+      <source>Source</source>
+      <translation>Zdroj</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Don't Show</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Show Only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="233" />
-      <location filename="../Debugger/DebugViewer.py" line="162" />
+      <location filename="../Debugger/DebugViewer.py" line="248" />
+      <location filename="../Debugger/DebugViewer.py" line="176" />
       <source>Enter regular expression patterns separated by ';' to define variable filters. </source>
       <translation>Zadání vzorků regulárních výrazů oddělených ';' pro definování proměnných filtrů.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="239" />
-      <location filename="../Debugger/DebugViewer.py" line="168" />
-      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
-      <translation>Zadání vzorků regulárních výrazů oddělených ';' pro definování proměnných filtrů. Proměnné a atributy tříd nalezené jedním z uvedených výrazů, nejsou zobrazovány v seznamu nahoře.</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="246" />
-      <location filename="../Debugger/DebugViewer.py" line="176" />
-      <source>Set</source>
-      <translation>Množina</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="184" />
-      <source>Shows the list of global variables and their values.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="206" />
-      <source>Source</source>
-      <translation>Zdroj</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugViewer.py" line="254" />
+      <location filename="../Debugger/DebugViewer.py" line="182" />
+      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
+      <translation>Zadání vzorků regulárních výrazů oddělených ';' pro definování proměnných filtrů. Proměnné a atributy tříd nalezené jedním z uvedených výrazů, nejsou zobrazovány v seznamu nahoře.</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="261" />
+      <location filename="../Debugger/DebugViewer.py" line="190" />
+      <source>Set</source>
+      <translation>Množina</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="198" />
+      <source>Shows the list of global variables and their values.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="269" />
       <source>Shows the list of local variables and their values.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="271" />
+      <location filename="../Debugger/DebugViewer.py" line="295" />
       <source>Shows the current call stack.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="281" />
+      <location filename="../Debugger/DebugViewer.py" line="305" />
       <source>Shows a trace of the program flow.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="292" />
+      <location filename="../Debugger/DebugViewer.py" line="316" />
       <source>Shows a list of defined breakpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="303" />
+      <location filename="../Debugger/DebugViewer.py" line="327" />
       <source>Shows a list of defined watchpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="312" />
+      <location filename="../Debugger/DebugViewer.py" line="336" />
       <source>Shows a list of raised exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="323" />
+      <location filename="../Debugger/DebugViewer.py" line="347" />
       <source>Shows a code disassembly in case of an exception.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="749" />
+      <location filename="../Debugger/DebugViewer.py" line="790" />
       <source>&lt;p&gt;Debugger with ID &lt;b&gt;{0}&lt;/b&gt; has been connected.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="992" />
-      <location filename="../Debugger/DebugViewer.py" line="864" />
+      <location filename="../Debugger/DebugViewer.py" line="1033" />
+      <location filename="../Debugger/DebugViewer.py" line="905" />
       <source>unknown state ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -9414,26 +9415,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
       <source>Add allowed host</source>
       <translation>Přidat povoleného hosta</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="343" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="307" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Zadání IP adresy povoleného hosta</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="357" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="320" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Zadaná adresa &lt;b&gt;{0}&lt;/b&gt; není validní IP v4 nebo IP v6. Zrušeno...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
       <source>Edit allowed host</source>
       <translation>Editovat povolené hosty</translation>
     </message>
@@ -20796,7 +20797,7 @@
       <translation>Přidat/Změnit</translation>
     </message>
     <message>
-      <location filename="../Project/FiletypeAssociationDialog.py" line="56" />
+      <location filename="../Project/FiletypeAssociationDialog.py" line="58" />
       <location filename="../Project/FiletypeAssociationDialog.py" line="45" />
       <source>Ignore</source>
       <translation>Ignorovat</translation>
@@ -46668,7 +46669,7 @@
       <translation>Pygments</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="462" />
+      <location filename="../Preferences/__init__.py" line="461" />
       <location filename="../QScintilla/Lexers/__init__.py" line="386" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished">Python soubory (*.py *.py3)</translation>
@@ -46921,7 +46922,7 @@
       <translation>Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="465" />
+      <location filename="../Preferences/__init__.py" line="464" />
       <location filename="../QScintilla/Lexers/__init__.py" line="479" />
       <source>Python3 Files (*.py)</source>
       <translation>Python3 soubory (*.py)</translation>
@@ -55480,18 +55481,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1608" />
+      <location filename="../Preferences/__init__.py" line="1653" />
       <source>Export Preferences</source>
       <translation>Předvolby exportu</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1637" />
-      <location filename="../Preferences/__init__.py" line="1610" />
+      <location filename="../Preferences/__init__.py" line="1682" />
+      <location filename="../Preferences/__init__.py" line="1655" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1635" />
+      <location filename="../Preferences/__init__.py" line="1680" />
       <source>Import Preferences</source>
       <translation>Předvolby importu</translation>
     </message>
@@ -55512,7 +55513,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="472" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -56357,7 +56358,7 @@
       <translation>Přejmenovat soubor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3311" />
+      <location filename="../Project/Project.py" line="3313" />
       <location filename="../Project/Project.py" line="2130" />
       <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>
@@ -56388,154 +56389,154 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2517" />
+      <location filename="../Project/Project.py" line="2518" />
       <source>Create project directory</source>
       <translation>Vytvořit adresář projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2518" />
+      <location filename="../Project/Project.py" line="2519" />
       <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="3115" />
-      <location filename="../Project/Project.py" line="2579" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3116" />
       <location filename="../Project/Project.py" line="2580" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3117" />
+      <location filename="../Project/Project.py" line="2581" />
       <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="2600" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2601" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2602" />
       <source>&lt;p&gt;The mainscript &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="2922" />
-      <location filename="../Project/Project.py" line="2625" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2923" />
       <location filename="../Project/Project.py" line="2626" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2924" />
+      <location filename="../Project/Project.py" line="2627" />
       <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="3144" />
-      <location filename="../Project/Project.py" line="2764" />
-      <location filename="../Project/Project.py" line="2735" />
-      <location filename="../Project/Project.py" line="2691" />
-      <location filename="../Project/Project.py" line="2666" />
-      <location filename="../Project/Project.py" line="2636" />
-      <source>New Project</source>
-      <translation>Nový projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2637" />
-      <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="3145" />
+      <location filename="../Project/Project.py" line="2765" />
+      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2692" />
       <location filename="../Project/Project.py" line="2667" />
+      <location filename="../Project/Project.py" line="2637" />
+      <source>New Project</source>
+      <translation>Nový projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2638" />
+      <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="3146" />
+      <location filename="../Project/Project.py" line="2668" />
       <source>Select Version Control System</source>
       <translation>Vybrat Version Control System</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2765" />
-      <location filename="../Project/Project.py" line="2692" />
+      <location filename="../Project/Project.py" line="2766" />
+      <location filename="../Project/Project.py" line="2693" />
       <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="4082" />
-      <location filename="../Project/Project.py" line="2707" />
+      <location filename="../Project/Project.py" line="4085" />
+      <location filename="../Project/Project.py" line="2708" />
       <source>New project</source>
       <translation>Nový projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2708" />
+      <location filename="../Project/Project.py" line="2709" />
       <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="2741" />
-      <location filename="../Project/Project.py" line="2729" />
+      <location filename="../Project/Project.py" line="2742" />
+      <location filename="../Project/Project.py" line="2730" />
       <source>None</source>
       <translation>None</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2737" />
       <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="2848" />
-      <source>Translation Pattern</source>
-      <translation>Vzor překladu</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2849" />
+      <source>Translation Pattern</source>
+      <translation>Vzor překladu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2850" />
       <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="4102" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="4105" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Open project</source>
       <translation>Otevřít projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3096" />
+      <location filename="../Project/Project.py" line="3097" />
       <source>Project Files (*.epj);;XML Project Files (*.e4p)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="3298" />
+      <location filename="../Project/Project.py" line="3288" />
+      <source>Project Files (*.epj)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="3296" />
-      <location filename="../Project/Project.py" line="3286" />
-      <source>Project Files (*.epj)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3294" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3310" />
+      <location filename="../Project/Project.py" line="3312" />
       <source>Save File</source>
       <translation>Uložit soubor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3349" />
+      <location filename="../Project/Project.py" line="3351" />
       <source>Close Project</source>
       <translation>Zavřít projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3350" />
+      <location filename="../Project/Project.py" line="3352" />
       <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="3538" />
-      <location filename="../Project/Project.py" line="3504" />
+      <location filename="../Project/Project.py" line="3541" />
+      <location filename="../Project/Project.py" line="3507" />
       <source>Syntax errors detected</source>
       <translation>Zjištěny syntaktické chyby</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="3539" />
-      <location filename="../Project/Project.py" line="3505" />
+      <location filename="../Project/Project.py" line="3542" />
+      <location filename="../Project/Project.py" line="3508" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Projekt obsahuje %n soubor se syntaktickými chybami.</numerusform>
@@ -56544,1151 +56545,1171 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4084" />
+      <location filename="../Project/Project.py" line="4087" />
       <source>&amp;New...</source>
       <translation>&amp;Nový...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4090" />
+      <location filename="../Project/Project.py" line="4093" />
       <source>Generate a new project</source>
       <translation>Vygenerovat nový projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4092" />
+      <location filename="../Project/Project.py" line="4095" />
       <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="4104" />
+      <location filename="../Project/Project.py" line="4107" />
       <source>&amp;Open...</source>
       <translation>&amp;Otevřít...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4110" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>Open an existing project</source>
       <translation>Otevřít existující projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4115" />
       <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="4118" />
+      <location filename="../Project/Project.py" line="4121" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4123" />
+      <source>&amp;Reload</source>
+      <translation type="unfinished">&amp;Obnovit</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4129" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4131" />
+      <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="4137" />
       <source>Close project</source>
       <translation>Zavřít projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4120" />
+      <location filename="../Project/Project.py" line="4139" />
       <source>&amp;Close</source>
       <translation>&amp;Zavřít</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4126" />
+      <location filename="../Project/Project.py" line="4145" />
       <source>Close the current project</source>
       <translation>Uzavře aktuální projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4128" />
+      <location filename="../Project/Project.py" line="4147" />
       <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="4134" />
+      <location filename="../Project/Project.py" line="4153" />
       <source>Save project</source>
       <translation>Uložit projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4410" />
-      <location filename="../Project/Project.py" line="4136" />
+      <location filename="../Project/Project.py" line="4429" />
+      <location filename="../Project/Project.py" line="4155" />
       <source>&amp;Save</source>
       <translation>&amp;Uložit</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4142" />
+      <location filename="../Project/Project.py" line="4161" />
       <source>Save the current project</source>
       <translation>Uložit aktuální projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4144" />
+      <location filename="../Project/Project.py" line="4163" />
       <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="4150" />
+      <location filename="../Project/Project.py" line="4169" />
       <source>Save project as</source>
       <translation>Uložit projekt jako</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4152" />
+      <location filename="../Project/Project.py" line="4171" />
       <source>Save &amp;as...</source>
       <translation>Uložit j&amp;ako...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4158" />
-      <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="4160" />
-      <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="4175" />
-      <source>Add files to project</source>
-      <translation>Přidat soubory do projektu</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4177" />
-      <source>Add &amp;files...</source>
-      <translation>&amp;Přidat soubory...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4183" />
-      <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="4185" />
-      <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>
+      <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="4179" />
+      <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="4194" />
+      <source>Add files to project</source>
+      <translation>Přidat soubory do projektu</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4196" />
+      <source>Add &amp;files...</source>
+      <translation>&amp;Přidat soubory...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4202" />
+      <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="4204" />
+      <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="4215" />
       <source>Add directory to project</source>
       <translation>Přidat adresář do projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4198" />
+      <location filename="../Project/Project.py" line="4217" />
       <source>Add directory...</source>
       <translation>Přidat adresář...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4205" />
+      <location filename="../Project/Project.py" line="4224" />
       <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="4208" />
-      <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="4218" />
-      <source>Add translation to project</source>
-      <translation>Přidat překlad do projektu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4220" />
-      <source>Add &amp;translation...</source>
-      <translation>Přida&amp;t překlad...</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4227" />
+      <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="4237" />
+      <source>Add translation to project</source>
+      <translation>Přidat překlad do projektu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4239" />
+      <source>Add &amp;translation...</source>
+      <translation>Přida&amp;t překlad...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4246" />
       <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="4230" />
-      <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="4240" />
-      <source>Search new files</source>
-      <translation>Hledat nové soubory</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4241" />
-      <source>Searc&amp;h new files...</source>
-      <translation>&amp;Hledat nové soubory...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4247" />
-      <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="4249" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
+      <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="4259" />
+      <source>Search new files</source>
+      <translation>Hledat nové soubory</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4260" />
+      <source>Searc&amp;h new files...</source>
+      <translation>&amp;Hledat nové soubory...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4266" />
+      <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="4268" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4279" />
       <source>Search Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4261" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4262" />
-      <source>Alt+Ctrl+P</source>
-      <comment>Project|Search Project File</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4267" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4269" />
-      <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="4278" />
-      <source>Project properties</source>
-      <translation>Nastavení projektu</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4280" />
-      <source>&amp;Properties...</source>
-      <translation>&amp;Natavení...</translation>
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4281" />
+      <source>Alt+Ctrl+P</source>
+      <comment>Project|Search Project File</comment>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4286" />
-      <source>Show the project properties</source>
-      <translation>Zobrazit nastavení projektu</translation>
+      <source>Search for a file in the project list of files.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4288" />
-      <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>
+      <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="4297" />
-      <source>User project properties</source>
-      <translation>Uživatelská nastavení projektu</translation>
+      <source>Project properties</source>
+      <translation>Nastavení projektu</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4299" />
+      <source>&amp;Properties...</source>
+      <translation>&amp;Natavení...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4305" />
+      <source>Show the project properties</source>
+      <translation>Zobrazit nastavení projektu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4307" />
+      <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="4316" />
+      <source>User project properties</source>
+      <translation>Uživatelská nastavení projektu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4318" />
       <source>&amp;User Properties...</source>
       <translation>Uživat&amp;elská nastavení...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4306" />
+      <location filename="../Project/Project.py" line="4325" />
       <source>Show the user specific project properties</source>
       <translation>Zobrazit uživatelem definovaná nastavení projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4309" />
+      <location filename="../Project/Project.py" line="4328" />
       <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="4319" />
+      <location filename="../Project/Project.py" line="4338" />
       <source>Filetype Associations</source>
       <translation>Asociace typů souborů</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4320" />
+      <location filename="../Project/Project.py" line="4339" />
       <source>Filetype Associations...</source>
       <translation>Asociace typů souborů...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4327" />
+      <location filename="../Project/Project.py" line="4346" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4330" />
+      <location filename="../Project/Project.py" line="4349" />
       <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="4343" />
+      <location filename="../Project/Project.py" line="4362" />
       <source>Lexer Associations</source>
       <translation>Spojení lexeru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4344" />
+      <location filename="../Project/Project.py" line="4363" />
       <source>Lexer Associations...</source>
       <translation>Spojení lexeru...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4351" />
+      <location filename="../Project/Project.py" line="4370" />
       <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="4354" />
-      <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="4372" />
-      <source>Debugger Properties</source>
-      <translation>Nastavení debugeru</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4373" />
-      <source>Debugger &amp;Properties...</source>
-      <translation>Nastavení &amp;debuggeru...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4379" />
-      <source>Show the debugger properties</source>
-      <translation>Zobrazit nastavení debugeru</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4381" />
-      <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>
+      <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="4391" />
-      <source>Load</source>
-      <translation>Načíst</translation>
+      <source>Debugger Properties</source>
+      <translation>Nastavení debugeru</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4392" />
-      <source>&amp;Load</source>
-      <translation>&amp;Načíst</translation>
+      <source>Debugger &amp;Properties...</source>
+      <translation>Nastavení &amp;debuggeru...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4398" />
-      <source>Load the debugger properties</source>
-      <translation>Načíst nastavení debugeru</translation>
+      <source>Show the debugger properties</source>
+      <translation>Zobrazit nastavení debugeru</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4400" />
+      <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="4410" />
+      <source>Load</source>
+      <translation>Načíst</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4411" />
+      <source>&amp;Load</source>
+      <translation>&amp;Načíst</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4417" />
+      <source>Load the debugger properties</source>
+      <translation>Načíst nastavení debugeru</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4419" />
       <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="4409" />
-      <source>Save</source>
-      <translation>Uložit</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4416" />
-      <source>Save the debugger properties</source>
-      <translation>Uložit nastavení debugeru</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4418" />
-      <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="4427" />
-      <source>Delete</source>
-      <translation>Smazat</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4428" />
-      <source>&amp;Delete</source>
-      <translation>Sma&amp;zat</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4434" />
-      <source>Delete the debugger properties</source>
-      <translation>Smazat nastavení debugeru</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4436" />
-      <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>
+      <source>Save</source>
+      <translation>Uložit</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4435" />
+      <source>Save the debugger properties</source>
+      <translation>Uložit nastavení debugeru</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4437" />
+      <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="4446" />
-      <source>Reset</source>
-      <translation />
+      <source>Delete</source>
+      <translation>Smazat</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4447" />
-      <source>&amp;Reset</source>
-      <translation>&amp;Reset</translation>
+      <source>&amp;Delete</source>
+      <translation>Sma&amp;zat</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4453" />
-      <source>Reset the debugger properties</source>
-      <translation>Reset nastavení debugeru</translation>
+      <source>Delete the debugger properties</source>
+      <translation>Smazat nastavení debugeru</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4455" />
+      <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="4465" />
+      <source>Reset</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4466" />
+      <source>&amp;Reset</source>
+      <translation>&amp;Reset</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4472" />
+      <source>Reset the debugger properties</source>
+      <translation>Reset nastavení debugeru</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4474" />
       <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="4471" />
-      <location filename="../Project/Project.py" line="4470" />
+      <location filename="../Project/Project.py" line="4490" />
+      <location filename="../Project/Project.py" line="4489" />
       <source>Load session</source>
       <translation>Načíst relaci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4477" />
+      <location filename="../Project/Project.py" line="4496" />
       <source>Load the projects session file.</source>
       <translation>Načíst soubor s relací projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4479" />
+      <location filename="../Project/Project.py" line="4498" />
       <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="4495" />
-      <location filename="../Project/Project.py" line="4494" />
+      <location filename="../Project/Project.py" line="4514" />
+      <location filename="../Project/Project.py" line="4513" />
       <source>Save session</source>
       <translation>Uložit relaci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4501" />
+      <location filename="../Project/Project.py" line="4520" />
       <source>Save the projects session file.</source>
       <translation>Uložit soubor s relací projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4503" />
+      <location filename="../Project/Project.py" line="4522" />
       <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="4519" />
-      <location filename="../Project/Project.py" line="4518" />
+      <location filename="../Project/Project.py" line="4538" />
+      <location filename="../Project/Project.py" line="4537" />
       <source>Delete session</source>
       <translation>Smazat relaci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4525" />
+      <location filename="../Project/Project.py" line="4544" />
       <source>Delete the projects session file.</source>
       <translation>Smaže soubor s relací projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4527" />
+      <location filename="../Project/Project.py" line="4546" />
       <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="4542" />
+      <location filename="../Project/Project.py" line="4561" />
       <source>Code Metrics</source>
       <translation>Metriky kódu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4543" />
+      <location filename="../Project/Project.py" line="4562" />
       <source>&amp;Code Metrics...</source>
       <translation>Metriky &amp;kódu...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4550" />
+      <location filename="../Project/Project.py" line="4569" />
       <source>Show some code metrics for the project.</source>
       <translation>Zobrazit metriky kódu projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4553" />
+      <location filename="../Project/Project.py" line="4572" />
       <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="4563" />
+      <location filename="../Project/Project.py" line="4582" />
       <source>Python Code Coverage</source>
       <translation>Pokrytí python kódu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4564" />
+      <location filename="../Project/Project.py" line="4583" />
       <source>Code Co&amp;verage...</source>
       <translation>Pokr&amp;ytí kódu...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4571" />
+      <location filename="../Project/Project.py" line="4590" />
       <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="4574" />
+      <location filename="../Project/Project.py" line="4593" />
       <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="5894" />
-      <location filename="../Project/Project.py" line="5881" />
-      <location filename="../Project/Project.py" line="4584" />
+      <location filename="../Project/Project.py" line="5914" />
+      <location filename="../Project/Project.py" line="5901" />
+      <location filename="../Project/Project.py" line="4603" />
       <source>Profile Data</source>
       <translation>Profilovat data</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4585" />
+      <location filename="../Project/Project.py" line="4604" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Profilovat data...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4592" />
-      <source>Show profiling data for the project.</source>
-      <translation>Zobrazit profilování dat projektu.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4595" />
-      <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="5946" />
-      <location filename="../Project/Project.py" line="4610" />
-      <source>Application Diagram</source>
-      <translation>Diagram aplikace</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4611" />
-      <source>&amp;Application Diagram...</source>
-      <translation>Diagram &amp;aplikace...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4618" />
-      <source>Show a diagram of the project.</source>
-      <translation>Zobrazit diagram projektu.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4621" />
-      <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>
+      <source>Show profiling data for the project.</source>
+      <translation>Zobrazit profilování dat projektu.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4614" />
+      <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="5966" />
+      <location filename="../Project/Project.py" line="4629" />
+      <source>Application Diagram</source>
+      <translation>Diagram aplikace</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4630" />
-      <source>Load Diagram</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4631" />
-      <source>&amp;Load Diagram...</source>
-      <translation type="unfinished" />
+      <source>&amp;Application Diagram...</source>
+      <translation>Diagram &amp;aplikace...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4637" />
-      <source>Load a diagram from file.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4639" />
-      <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="6131" />
-      <location filename="../Project/Project.py" line="6080" />
-      <location filename="../Project/Project.py" line="4654" />
-      <source>Create Package List</source>
-      <translation>Vytvořit seznam balíčků</translation>
+      <source>Show a diagram of the project.</source>
+      <translation>Zobrazit diagram projektu.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4640" />
+      <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="4649" />
+      <source>Load Diagram</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4650" />
+      <source>&amp;Load Diagram...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4656" />
+      <source>Load a diagram from file.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4658" />
+      <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="6151" />
+      <location filename="../Project/Project.py" line="6100" />
+      <location filename="../Project/Project.py" line="4673" />
+      <source>Create Package List</source>
+      <translation>Vytvořit seznam balíčků</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4675" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished">Vytvořit Plugin &amp;archiv</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4663" />
+      <location filename="../Project/Project.py" line="4682" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4666" />
-      <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="6200" />
-      <location filename="../Project/Project.py" line="4677" />
-      <source>Create Plugin Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4679" />
-      <source>Create Plugin &amp;Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4685" />
+      <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="6220" />
+      <location filename="../Project/Project.py" line="4696" />
+      <source>Create Plugin Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4698" />
+      <source>Create Plugin &amp;Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4704" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4687" />
+      <location filename="../Project/Project.py" line="4706" />
       <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="4699" />
+      <location filename="../Project/Project.py" line="4718" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4701" />
+      <location filename="../Project/Project.py" line="4720" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4708" />
+      <location filename="../Project/Project.py" line="4727" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4711" />
+      <location filename="../Project/Project.py" line="4730" />
       <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="6621" />
-      <location filename="../Project/Project.py" line="6592" />
-      <location filename="../Project/Project.py" line="6543" />
-      <location filename="../Project/Project.py" line="4730" />
+      <location filename="../Project/Project.py" line="6641" />
+      <location filename="../Project/Project.py" line="6612" />
+      <location filename="../Project/Project.py" line="6563" />
+      <location filename="../Project/Project.py" line="4749" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4731" />
-      <source>&amp;Execute Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4737" />
-      <source>Perform a 'make' run.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4739" />
-      <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="6598" />
-      <location filename="../Project/Project.py" line="4749" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4750" />
+      <source>&amp;Execute Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4756" />
+      <source>Perform a 'make' run.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4758" />
+      <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="6618" />
+      <location filename="../Project/Project.py" line="4768" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4769" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4757" />
+      <location filename="../Project/Project.py" line="4776" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4760" />
-      <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="4778" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4779" />
+      <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="4797" />
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4798" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4786" />
+      <location filename="../Project/Project.py" line="4805" />
       <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4789" />
+      <location filename="../Project/Project.py" line="4808" />
       <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="4806" />
+      <location filename="../Project/Project.py" line="4825" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4826" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4813" />
+      <location filename="../Project/Project.py" line="4832" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4815" />
+      <location filename="../Project/Project.py" line="4834" />
       <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="4827" />
+      <location filename="../Project/Project.py" line="4846" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4847" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4835" />
+      <location filename="../Project/Project.py" line="4854" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4838" />
+      <location filename="../Project/Project.py" line="4857" />
       <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="4850" />
+      <location filename="../Project/Project.py" line="4869" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4851" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4858" />
-      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4863" />
-      <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="4876" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4877" />
+      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4882" />
+      <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="4895" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4884" />
+      <location filename="../Project/Project.py" line="4903" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4890" />
+      <location filename="../Project/Project.py" line="4909" />
       <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="5055" />
-      <location filename="../Project/Project.py" line="5005" />
-      <location filename="../Project/Project.py" line="5004" />
-      <location filename="../Project/Project.py" line="4904" />
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="5074" />
+      <location filename="../Project/Project.py" line="5024" />
+      <location filename="../Project/Project.py" line="5023" />
+      <location filename="../Project/Project.py" line="4923" />
+      <location filename="../Project/Project.py" line="4922" />
       <source>Configure</source>
       <translation type="unfinished">Konfigurovat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4930" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4916" />
+      <location filename="../Project/Project.py" line="4935" />
       <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="4932" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4933" />
+      <location filename="../Project/Project.py" line="4952" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4939" />
+      <location filename="../Project/Project.py" line="4958" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4960" />
       <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="4954" />
-      <location filename="../Project/Project.py" line="4953" />
+      <location filename="../Project/Project.py" line="4973" />
+      <location filename="../Project/Project.py" line="4972" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4961" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4983" />
       <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="4978" />
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4997" />
+      <location filename="../Project/Project.py" line="4996" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4985" />
+      <location filename="../Project/Project.py" line="5004" />
       <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="4991" />
+      <location filename="../Project/Project.py" line="5010" />
       <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="5012" />
+      <location filename="../Project/Project.py" line="5031" />
       <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="5018" />
+      <location filename="../Project/Project.py" line="5037" />
       <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="5034" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5035" />
+      <location filename="../Project/Project.py" line="5054" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5042" />
+      <location filename="../Project/Project.py" line="5061" />
       <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5045" />
+      <location filename="../Project/Project.py" line="5064" />
       <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="5056" />
+      <location filename="../Project/Project.py" line="5075" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5063" />
+      <location filename="../Project/Project.py" line="5082" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
-      <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="5076" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5077" />
-      <source>&amp;Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5083" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5085" />
-      <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="5097" />
-      <source>Recreate</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5098" />
-      <source>&amp;Recreate</source>
+      <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="5095" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5096" />
+      <source>&amp;Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5102" />
+      <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5104" />
+      <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="5116" />
+      <source>Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5117" />
+      <source>&amp;Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5123" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5106" />
+      <location filename="../Project/Project.py" line="5125" />
       <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="5135" />
-      <source>&amp;Project</source>
-      <translation>&amp;Projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5136" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Otevřít poslední p&amp;rojekty</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5137" />
-      <source>Session</source>
-      <translation>Relace</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5138" />
-      <source>Debugger</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5139" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5141" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5142" />
-      <source>&amp;Version Control</source>
-      <translation>Kontrola &amp;verzí</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5146" />
-      <source>Chec&amp;k</source>
-      <translation>Zkontro&amp;lovat</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5148" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5150" />
-      <source>Sho&amp;w</source>
-      <translation>Zo&amp;brazit</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagramy</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Pac&amp;kagers</source>
-      <translation>Balíč&amp;ky</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5153" />
-      <source>Source &amp;Documentation</source>
-      <translation>Zd&amp;rojová dokumentace</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5155" />
-      <source>Make</source>
-      <translation type="unfinished" />
+      <source>&amp;Project</source>
+      <translation>&amp;Projekt</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5156" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Otevřít poslední p&amp;rojekty</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5157" />
+      <source>Session</source>
+      <translation>Relace</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5158" />
+      <source>Debugger</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5159" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5161" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5162" />
+      <source>&amp;Version Control</source>
+      <translation>Kontrola &amp;verzí</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5166" />
+      <source>Chec&amp;k</source>
+      <translation>Zkontro&amp;lovat</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5168" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5170" />
+      <source>Sho&amp;w</source>
+      <translation>Zo&amp;brazit</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5171" />
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagramy</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Pac&amp;kagers</source>
+      <translation>Balíč&amp;ky</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
+      <source>Source &amp;Documentation</source>
+      <translation>Zd&amp;rojová dokumentace</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5175" />
+      <source>Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5176" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5317" />
-      <location filename="../Project/Project.py" line="5314" />
+      <location filename="../Project/Project.py" line="5337" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>Project</source>
       <translation>Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5378" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Clear</source>
       <translation>&amp;Vyčistit</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5557" />
       <source>Search New Files</source>
       <translation>Hledat nové soubory</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5558" />
       <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="5687" />
-      <location filename="../Project/Project.py" line="5674" />
+      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5694" />
       <source>Version Control System</source>
       <translation>Version Control System</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5695" />
       <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="5688" />
+      <location filename="../Project/Project.py" line="5708" />
       <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="5836" />
+      <location filename="../Project/Project.py" line="5856" />
       <source>Coverage Data</source>
       <translation>Datové pokrytí</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5882" />
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5902" />
+      <location filename="../Project/Project.py" line="5857" />
       <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="5849" />
+      <location filename="../Project/Project.py" line="5869" />
       <source>Code Coverage</source>
       <translation>Pokrytí kódu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5850" />
+      <location filename="../Project/Project.py" line="5870" />
       <source>Please select a coverage file</source>
       <translation>Prosím, vyberte soubor pokrytí</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5915" />
       <source>Please select a profile file</source>
       <translation>Prosím, vyberte soubor s profilem</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5947" />
+      <location filename="../Project/Project.py" line="5967" />
       <source>Include module names?</source>
       <translation>Včetně jmen modulů?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6081" />
+      <location filename="../Project/Project.py" line="6101" />
       <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="6132" />
+      <location filename="../Project/Project.py" line="6152" />
       <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="6421" />
-      <location filename="../Project/Project.py" line="6379" />
-      <location filename="../Project/Project.py" line="6333" />
-      <location filename="../Project/Project.py" line="6322" />
-      <location filename="../Project/Project.py" line="6304" />
-      <location filename="../Project/Project.py" line="6271" />
-      <location filename="../Project/Project.py" line="6241" />
-      <location filename="../Project/Project.py" line="6213" />
-      <location filename="../Project/Project.py" line="6183" />
-      <location filename="../Project/Project.py" line="6169" />
-      <location filename="../Project/Project.py" line="6152" />
+      <location filename="../Project/Project.py" line="6441" />
+      <location filename="../Project/Project.py" line="6399" />
+      <location filename="../Project/Project.py" line="6353" />
+      <location filename="../Project/Project.py" line="6342" />
+      <location filename="../Project/Project.py" line="6324" />
+      <location filename="../Project/Project.py" line="6291" />
+      <location filename="../Project/Project.py" line="6261" />
+      <location filename="../Project/Project.py" line="6233" />
+      <location filename="../Project/Project.py" line="6203" />
+      <location filename="../Project/Project.py" line="6189" />
+      <location filename="../Project/Project.py" line="6172" />
       <source>Create Plugin Archive</source>
       <translation>Vytvořit Plugin archiv</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6153" />
+      <location filename="../Project/Project.py" line="6173" />
       <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="6170" />
+      <location filename="../Project/Project.py" line="6190" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6184" />
+      <location filename="../Project/Project.py" line="6204" />
       <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="6192" />
+      <location filename="../Project/Project.py" line="6212" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6193" />
+      <location filename="../Project/Project.py" line="6213" />
       <source>Abort</source>
       <translation type="unfinished">Přerušit</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6196" />
+      <location filename="../Project/Project.py" line="6216" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6214" />
+      <location filename="../Project/Project.py" line="6234" />
       <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="6242" />
+      <location filename="../Project/Project.py" line="6262" />
       <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="6272" />
+      <location filename="../Project/Project.py" line="6292" />
       <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="6305" />
+      <location filename="../Project/Project.py" line="6325" />
       <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="6323" />
+      <location filename="../Project/Project.py" line="6343" />
       <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="6334" />
+      <location filename="../Project/Project.py" line="6354" />
       <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="6380" />
+      <location filename="../Project/Project.py" line="6400" />
       <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="6422" />
+      <location filename="../Project/Project.py" line="6442" />
       <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="6544" />
+      <location filename="../Project/Project.py" line="6564" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6593" />
+      <location filename="../Project/Project.py" line="6613" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6601" />
+      <location filename="../Project/Project.py" line="6621" />
       <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="6606" />
+      <location filename="../Project/Project.py" line="6626" />
       <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="6622" />
+      <location filename="../Project/Project.py" line="6642" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -57940,22 +57961,22 @@
   <context>
     <name>ProjectFile</name>
     <message>
-      <location filename="../Project/ProjectFile.py" line="109" />
+      <location filename="../Project/ProjectFile.py" line="108" />
       <source>Save Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFile.py" line="110" />
+      <location filename="../Project/ProjectFile.py" line="109" />
       <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectFile.py" line="134" />
+      <source>Read Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectFile.py" line="135" />
-      <source>Read Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectFile.py" line="136" />
       <source>&lt;p&gt;The project 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>
@@ -59831,265 +59852,265 @@
   <context>
     <name>ProjectTranslationsBrowser</name>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="99" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="76" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="74" />
       <source>Translations</source>
       <translation>Překlady</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="79" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="77" />
       <source>&lt;b&gt;Project Translations Browser&lt;/b&gt;&lt;p&gt;This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Prohlížeč jazykových překladů projektu&lt;/b&gt;&lt;p&gt;Umožňuje jednoduše vidět všechny překlady aktuálního projektu. Několik akcí lze provést i přes kontextové menu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="95" />
       <source>Translation Files ({0})</source>
       <translation type="unfinished">Soubory s překlady ({0})</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="98" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="96" />
       <source>Translation Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="109" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="107" />
       <source>Translations Browser</source>
       <translation type="unfinished">Prohlížeč překladů</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="239" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="183" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="237" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="181" />
       <source>Generate translation</source>
       <translation>Generovat překlad</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="249" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="247" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation (with obsolete)</source>
       <translation>Generovat překlad (původní)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="538" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="360" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="258" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="194" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="536" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="507" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="330" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="256" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="192" />
       <source>Generate all translations</source>
       <translation>Generovat všechny překlady</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="513" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="369" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="267" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="198" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="545" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="511" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="367" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="196" />
       <source>Generate all translations (with obsolete)</source>
       <translation>Generovat všechny překlady (původní)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="419" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="417" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
       <source>Open in Qt-Linguist</source>
       <translation>Otevřít v  Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="423" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="279" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="206" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="471" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="421" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="277" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="204" />
       <source>Open in Editor</source>
       <translation>Otevřít v editoru</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="286" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="284" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
       <source>Release translation</source>
       <translation>Zveřejnit překlad</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="518" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="377" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="341" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="295" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="553" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="516" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="375" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="339" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="293" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="214" />
       <source>Release all translations</source>
       <translation>Zveřejnit všechny překlady</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="220" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
       <source>Preview translation</source>
       <translation>Náhled překladu</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="346" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="344" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Preview all translations</source>
       <translation>Náhled všech překladů</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="441" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="352" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="527" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
       <source>Extract messages</source>
       <translation>Extrahovat zprávy</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="469" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="275" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="273" />
       <source>Open</source>
       <translation type="unfinished">Otevřít</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="488" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="302" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="486" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="300" />
       <source>Remove from project</source>
       <translation>Odebrat z projektu</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="561" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="491" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="305" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="559" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="489" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
       <source>Delete</source>
       <translation>Smazat</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="384" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="309" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="307" />
       <source>Add translation...</source>
       <translation>Přidat překlad...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="568" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="566" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="385" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
       <source>Add translation files...</source>
       <translation>Přidat soubory s překladem...</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="569" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="313" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Kopírovat cestu do schránky</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="492" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="388" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="315" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Kopírovat cestu do schránky</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="573" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="390" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Configure...</source>
       <translation>Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="448" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
       <source>Generate translations</source>
       <translation>Generovat překlady</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="460" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="458" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="410" />
       <source>Generate translations (with obsolete)</source>
       <translation>Generovat překlady (původní)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="480" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="478" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="426" />
       <source>Release translations</source>
       <translation>Zveřejnit překlady</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="432" />
       <source>Preview translations</source>
       <translation>Náhled překladů</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="835" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="833" />
       <source>Delete translation files</source>
       <translation>Smazat soubory s překlady</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="836" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="834" />
       <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="1504" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1001" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="961" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1502" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="999" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="959" />
       <source>Write temporary project file</source>
       <translation>Zapsat dočasný soubor projektu</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1505" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1241" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="962" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1239" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="960" />
       <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="1002" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1000" />
       <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="1240" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1123" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1111" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1238" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1121" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1109" />
       <source>Translation file generation</source>
       <translation>Generování souboru s překladem</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1112" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1110" />
       <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="1118" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1116" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1122" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1534" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1532" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1292" />
       <source>Process Generation Error</source>
       <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1337" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1295" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1335" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1293" />
       <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="1427" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1425" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1405" />
       <source>Translation file release</source>
       <translation>Zveřejnění souboru s překladem</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1406" />
       <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="1428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1426" />
       <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="1535" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1533" />
       <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>
@@ -83155,2216 +83176,2228 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="574" />
+      <location filename="../UI/UserInterface.py" line="573" />
       <source>Initializing Tools...</source>
       <translation>Inicializace nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="585" />
+      <location filename="../UI/UserInterface.py" line="584" />
       <source>Registering Objects...</source>
       <translation>Registrování objektů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="619" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Initializing Actions...</source>
       <translation>Inicializace akcí...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="621" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Initializing Menus...</source>
       <translation>Inicializace menu...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="623" />
+      <location filename="../UI/UserInterface.py" line="622" />
       <source>Initializing Toolbars...</source>
       <translation>Inicializace nástrojových lišt...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="625" />
+      <location filename="../UI/UserInterface.py" line="624" />
       <source>Initializing Statusbar...</source>
       <translation>Inicializace statusbaru...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Single Application Server...</source>
       <translation>Inicializace jednouživatelského aplikačního serveru...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="658" />
+      <location filename="../UI/UserInterface.py" line="657" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="661" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Activating Plugins...</source>
       <translation>Aktivace pluginů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="663" />
+      <location filename="../UI/UserInterface.py" line="662" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="666" />
+      <location filename="../UI/UserInterface.py" line="665" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="673" />
+      <location filename="../UI/UserInterface.py" line="672" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Obnovit manažer nástrojových lišt...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="680" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="693" />
       <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="699" />
+      <location filename="../UI/UserInterface.py" line="698" />
       <source>Reading Templates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="703" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
-      <location filename="../UI/UserInterface.py" line="1066" />
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1065" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2224" />
-      <location filename="../UI/UserInterface.py" line="1076" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1075" />
       <source>Horizontal Toolbox</source>
       <translation>Vodorovná nástrojová lišta</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2201" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1085" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2019" />
+      <location filename="../UI/UserInterface.py" line="1278" />
+      <location filename="../UI/UserInterface.py" line="1095" />
+      <source>Multiproject-Viewer</source>
+      <translation>Prohlížeč multiprojektu</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1997" />
+      <location filename="../UI/UserInterface.py" line="1284" />
+      <location filename="../UI/UserInterface.py" line="1101" />
+      <source>Project-Viewer</source>
+      <translation>Prohlížeč projektu</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2559" />
+      <location filename="../UI/UserInterface.py" line="2558" />
+      <location filename="../UI/UserInterface.py" line="1291" />
+      <location filename="../UI/UserInterface.py" line="1108" />
+      <source>Find/Replace In Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1298" />
+      <location filename="../UI/UserInterface.py" line="1115" />
+      <source>Find File</source>
+      <translation type="unfinished">Hledat soubor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1304" />
+      <location filename="../UI/UserInterface.py" line="1121" />
+      <source>VCS Status</source>
+      <translation type="unfinished">VCS Status</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1311" />
+      <location filename="../UI/UserInterface.py" line="1128" />
+      <source>Template-Viewer</source>
+      <translation>Prohlížeč šablon</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2085" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1135" />
+      <source>File-Browser</source>
+      <translation>Browser souborů</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1325" />
+      <location filename="../UI/UserInterface.py" line="1142" />
+      <source>Symbols</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2041" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Debug-Viewer</source>
+      <translation>Prohlížeč debugeru</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2412" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1159" />
+      <source>Code Documentation Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2628" />
+      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="1361" />
+      <location filename="../UI/UserInterface.py" line="1166" />
+      <source>Help Viewer</source>
+      <translation type="unfinished">Prohlížeč nápovědy</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1367" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>Plugin Repository</source>
+      <translation>Repozitář pluginů</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1373" />
+      <location filename="../UI/UserInterface.py" line="1178" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2440" />
+      <location filename="../UI/UserInterface.py" line="2439" />
+      <location filename="../UI/UserInterface.py" line="1378" />
+      <location filename="../UI/UserInterface.py" line="1183" />
+      <source>PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="2461" />
+      <location filename="../UI/UserInterface.py" line="1385" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Conda</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1392" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Cooperation</source>
+      <translation>Spolupráce</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2340" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
+      <source>IRC</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="2483" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>MicroPython</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2063" />
+      <location filename="../UI/UserInterface.py" line="1410" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Shell</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2129" />
+      <location filename="../UI/UserInterface.py" line="1416" />
+      <location filename="../UI/UserInterface.py" line="1219" />
+      <source>Task-Viewer</source>
+      <translation>Prohlížeč úloh</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2107" />
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1223" />
+      <source>Log-Viewer</source>
+      <translation>Prohlížeč logu</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1429" />
+      <location filename="../UI/UserInterface.py" line="1230" />
+      <source>Numbers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1815" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} - Pasivní mód</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1822" />
+      <location filename="../UI/UserInterface.py" line="1818" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} - {1} - pasivní mód</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1826" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} - {1} - {2} - pasivní mód</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1850" />
+      <source>Quit</source>
+      <translation>Konec</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1852" />
+      <source>&amp;Quit</source>
+      <translation>&amp;Konec</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1853" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1858" />
+      <source>Quit the IDE</source>
+      <translation>Ukončit IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1860" />
+      <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="1874" />
+      <location filename="../UI/UserInterface.py" line="1872" />
+      <source>Restart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1880" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
+      <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="1900" />
+      <location filename="../UI/UserInterface.py" line="1893" />
+      <source>Save session</source>
+      <translation>Uložit relaci</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1894" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1902" />
+      <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="7649" />
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Load session</source>
+      <translation type="unfinished">Načíst relaci</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1913" />
+      <source>Load session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1921" />
+      <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="1931" />
+      <source>New Window</source>
+      <translation type="unfinished">Nové okno</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1933" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished">&amp;Nové okno</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1934" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1941" />
+      <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="1955" />
+      <location filename="../UI/UserInterface.py" line="1953" />
+      <source>Edit Profile</source>
+      <translation>Editační profil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
+      <source>Activate the edit view profile</source>
+      <translation>Aktivovat profil editace</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1964" />
+      <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="1977" />
+      <location filename="../UI/UserInterface.py" line="1975" />
+      <source>Debug Profile</source>
+      <translation>Debugovací profil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1984" />
+      <source>Activate the debug view profile</source>
+      <translation>Aktivovat debugovací profil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1986" />
+      <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="1998" />
+      <source>&amp;Project-Viewer</source>
+      <translation>Prohlížeč &amp;projektu</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Alt+Shift+P</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2005" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2008" />
+      <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="2020" />
-      <location filename="../UI/UserInterface.py" line="1279" />
-      <location filename="../UI/UserInterface.py" line="1096" />
-      <source>Multiproject-Viewer</source>
-      <translation>Prohlížeč multiprojektu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1998" />
-      <location filename="../UI/UserInterface.py" line="1285" />
-      <location filename="../UI/UserInterface.py" line="1102" />
-      <source>Project-Viewer</source>
-      <translation>Prohlížeč projektu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2560" />
-      <location filename="../UI/UserInterface.py" line="2559" />
-      <location filename="../UI/UserInterface.py" line="1292" />
-      <location filename="../UI/UserInterface.py" line="1109" />
-      <source>Find/Replace In Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
-      <location filename="../UI/UserInterface.py" line="2582" />
-      <location filename="../UI/UserInterface.py" line="1299" />
-      <location filename="../UI/UserInterface.py" line="1116" />
-      <source>Find File</source>
-      <translation type="unfinished">Hledat soubor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1305" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>VCS Status</source>
-      <translation type="unfinished">VCS Status</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
-      <location filename="../UI/UserInterface.py" line="1312" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Template-Viewer</source>
-      <translation>Prohlížeč šablon</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2086" />
-      <location filename="../UI/UserInterface.py" line="1319" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>File-Browser</source>
-      <translation>Browser souborů</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Symbols</source>
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>Prohlížeč &amp;multiprojektu</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Alt+Shift+M</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2027" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2030" />
+      <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="2042" />
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1153" />
-      <source>Debug-Viewer</source>
-      <translation>Prohlížeč debugeru</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2414" />
-      <location filename="../UI/UserInterface.py" line="2413" />
-      <location filename="../UI/UserInterface.py" line="1355" />
-      <location filename="../UI/UserInterface.py" line="1160" />
-      <source>Code Documentation Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2629" />
-      <location filename="../UI/UserInterface.py" line="2628" />
-      <location filename="../UI/UserInterface.py" line="1362" />
-      <location filename="../UI/UserInterface.py" line="1167" />
-      <source>Help Viewer</source>
-      <translation type="unfinished">Prohlížeč nápovědy</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <location filename="../UI/UserInterface.py" line="2509" />
-      <location filename="../UI/UserInterface.py" line="2508" />
-      <location filename="../UI/UserInterface.py" line="1368" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Plugin Repository</source>
-      <translation>Repozitář pluginů</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
-      <location filename="../UI/UserInterface.py" line="2532" />
-      <location filename="../UI/UserInterface.py" line="1374" />
-      <location filename="../UI/UserInterface.py" line="1179" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2441" />
-      <location filename="../UI/UserInterface.py" line="2440" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1184" />
-      <source>PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2463" />
-      <location filename="../UI/UserInterface.py" line="2462" />
-      <location filename="../UI/UserInterface.py" line="1386" />
-      <location filename="../UI/UserInterface.py" line="1189" />
-      <source>Conda</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1393" />
-      <location filename="../UI/UserInterface.py" line="1196" />
-      <source>Cooperation</source>
-      <translation>Spolupráce</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
-      <location filename="../UI/UserInterface.py" line="1397" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>IRC</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
-      <location filename="../UI/UserInterface.py" line="2484" />
-      <location filename="../UI/UserInterface.py" line="1403" />
-      <location filename="../UI/UserInterface.py" line="1208" />
-      <source>MicroPython</source>
+      <source>&amp;Debug-Viewer</source>
+      <translation>Prohlížeč &amp;debugeru</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <source>Alt+Shift+D</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2049" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2052" />
+      <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="2064" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Shell</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2130" />
-      <location filename="../UI/UserInterface.py" line="1417" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>Task-Viewer</source>
-      <translation>Prohlížeč úloh</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2108" />
-      <location filename="../UI/UserInterface.py" line="1423" />
-      <location filename="../UI/UserInterface.py" line="1224" />
-      <source>Log-Viewer</source>
-      <translation>Prohlížeč logu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1430" />
-      <location filename="../UI/UserInterface.py" line="1231" />
-      <source>Numbers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1816" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} - Pasivní mód</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1823" />
-      <location filename="../UI/UserInterface.py" line="1819" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} - {1} - pasivní mód</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} - {1} - {2} - pasivní mód</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1851" />
-      <source>Quit</source>
-      <translation>Konec</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <source>&amp;Quit</source>
-      <translation>&amp;Konec</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1854" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>Quit the IDE</source>
-      <translation>Ukončit IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1861" />
-      <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="1875" />
-      <location filename="../UI/UserInterface.py" line="1873" />
-      <source>Restart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1881" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1883" />
-      <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="1901" />
-      <location filename="../UI/UserInterface.py" line="1894" />
-      <source>Save session</source>
-      <translation>Uložit relaci</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1903" />
-      <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="7650" />
-      <location filename="../UI/UserInterface.py" line="1920" />
-      <location filename="../UI/UserInterface.py" line="1913" />
-      <source>Load session</source>
-      <translation type="unfinished">Načíst relaci</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1914" />
-      <source>Load session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1922" />
-      <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="1932" />
-      <source>New Window</source>
-      <translation type="unfinished">Nové okno</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1934" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished">&amp;Nové okno</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1940" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1942" />
-      <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="1956" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <source>Edit Profile</source>
-      <translation>Editační profil</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1963" />
-      <source>Activate the edit view profile</source>
-      <translation>Aktivovat profil editace</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1965" />
-      <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="1978" />
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>Debug Profile</source>
-      <translation>Debugovací profil</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1985" />
-      <source>Activate the debug view profile</source>
-      <translation>Aktivovat debugovací profil</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1987" />
-      <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="1999" />
-      <source>&amp;Project-Viewer</source>
-      <translation>Prohlížeč &amp;projektu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2000" />
-      <source>Alt+Shift+P</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2006" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2009" />
-      <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="2021" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>Prohlížeč &amp;multiprojektu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Alt+Shift+M</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2028" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2031" />
-      <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="2043" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>Prohlížeč &amp;debugeru</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Alt+Shift+D</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2050" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2053" />
-      <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" />
+      <source>&amp;Shell</source>
+      <translation>&amp;Shell</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&amp;Shell</source>
-      <translation>&amp;Shell</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+S</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2072" />
+      <location filename="../UI/UserInterface.py" line="2071" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2075" />
+      <location filename="../UI/UserInterface.py" line="2074" />
       <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="2086" />
+      <source>&amp;File-Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&amp;File-Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+F</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2094" />
+      <location filename="../UI/UserInterface.py" line="2093" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2097" />
+      <location filename="../UI/UserInterface.py" line="2096" />
       <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="2108" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2109" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+G</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2116" />
+      <location filename="../UI/UserInterface.py" line="2115" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2119" />
+      <location filename="../UI/UserInterface.py" line="2118" />
       <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="2130" />
+      <source>&amp;Task-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&amp;Task-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+T</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2138" />
+      <location filename="../UI/UserInterface.py" line="2137" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2141" />
+      <location filename="../UI/UserInterface.py" line="2140" />
       <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="2153" />
+      <source>Templ&amp;ate-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2154" />
-      <source>Templ&amp;ate-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
       <source>Alt+Shift+A</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2161" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <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="2179" />
+      <location filename="../UI/UserInterface.py" line="2178" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2186" />
+      <location filename="../UI/UserInterface.py" line="2185" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2187" />
       <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="2202" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2209" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2211" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <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="2225" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>&amp;Horizontální lista nástrojů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2232" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <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="2234" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <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="2246" />
+      <source>Left Sidebar</source>
+      <translation>Levé menu</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2247" />
-      <source>Left Sidebar</source>
-      <translation>Levé menu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
       <source>&amp;Left Sidebar</source>
       <translation>&amp;Levé menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2255" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the left sidebar window</source>
       <translation>Přepnout okno levého menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2257" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2269" />
+      <source>Right Sidebar</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2270" />
-      <source>Right Sidebar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2271" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2278" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2280" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2292" />
+      <source>Bottom Sidebar</source>
+      <translation>Dolní menu</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2293" />
-      <source>Bottom Sidebar</source>
-      <translation>Dolní menu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2294" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Dolní menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2301" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Přepnout okno dolního menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2303" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <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="2315" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2316" />
-      <source>Cooperation-Viewer</source>
+      <source>Co&amp;operation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2317" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
       <source>Alt+Shift+O</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2324" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2326" />
       <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="2341" />
+      <source>&amp;IRC</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2342" />
-      <source>&amp;IRC</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2349" />
+      <location filename="../UI/UserInterface.py" line="2348" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2352" />
+      <location filename="../UI/UserInterface.py" line="2351" />
       <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="2362" />
+      <source>Symbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2363" />
-      <source>Symbols-Viewer</source>
+      <source>S&amp;ymbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2364" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2371" />
+      <location filename="../UI/UserInterface.py" line="2370" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2374" />
+      <location filename="../UI/UserInterface.py" line="2373" />
       <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="2387" />
+      <source>Numbers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2388" />
-      <source>Numbers-Viewer</source>
+      <source>Num&amp;bers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2389" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2396" />
+      <location filename="../UI/UserInterface.py" line="2395" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2399" />
+      <location filename="../UI/UserInterface.py" line="2398" />
       <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="2415" />
+      <location filename="../UI/UserInterface.py" line="2414" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2421" />
+      <location filename="../UI/UserInterface.py" line="2420" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2426" />
+      <location filename="../UI/UserInterface.py" line="2425" />
       <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="2442" />
+      <location filename="../UI/UserInterface.py" line="2441" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
+      <location filename="../UI/UserInterface.py" line="2447" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2451" />
+      <location filename="../UI/UserInterface.py" line="2450" />
       <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="2464" />
+      <location filename="../UI/UserInterface.py" line="2463" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2470" />
+      <location filename="../UI/UserInterface.py" line="2469" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2473" />
+      <location filename="../UI/UserInterface.py" line="2472" />
       <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="2486" />
+      <location filename="../UI/UserInterface.py" line="2485" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2492" />
+      <location filename="../UI/UserInterface.py" line="2491" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2495" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <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="2510" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2516" />
+      <location filename="../UI/UserInterface.py" line="2515" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2534" />
+      <location filename="../UI/UserInterface.py" line="2533" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2540" />
+      <location filename="../UI/UserInterface.py" line="2539" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
       <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="2561" />
+      <location filename="../UI/UserInterface.py" line="2560" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
+      <location filename="../UI/UserInterface.py" line="2566" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2570" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <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="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2590" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2593" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <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="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <source>VCS Status List</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
-      <location filename="../UI/UserInterface.py" line="2606" />
-      <source>VCS Status List</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2614" />
+      <location filename="../UI/UserInterface.py" line="2613" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <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="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2636" />
+      <location filename="../UI/UserInterface.py" line="2635" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2639" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <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="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
       <source>What's This?</source>
       <translation>Co je to?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <source>&amp;What's This?</source>
+      <translation>&amp;Co je to?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2654" />
-      <source>&amp;What's This?</source>
-      <translation>&amp;Co je to?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
       <source>Shift+F1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2660" />
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Context sensitive help</source>
       <translation>Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2662" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <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="2675" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>Helpviewer</source>
       <translation>Prohlížeč nápovědy</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2676" />
+      <source>&amp;Helpviewer...</source>
+      <translation>Pro&amp;hlížeč nápovědy...</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
-      <source>&amp;Helpviewer...</source>
-      <translation>Pro&amp;hlížeč nápovědy...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2678" />
       <source>F1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2683" />
+      <location filename="../UI/UserInterface.py" line="2682" />
       <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="2685" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <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="2704" />
+      <source>Show Versions</source>
+      <translation>Zobrazit verze</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2705" />
-      <source>Show Versions</source>
-      <translation>Zobrazit verze</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Show &amp;Versions</source>
       <translation>Zobrazit &amp;verze</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2711" />
       <source>Display version information</source>
       <translation>Zobrazit informace o verzích</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2714" />
+      <location filename="../UI/UserInterface.py" line="2713" />
       <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="2729" />
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>Show Error Log</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2722" />
       <source>Show Error &amp;Log...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2730" />
       <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="2739" />
+      <source>Show Install Info</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2740" />
-      <source>Show Install Info</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2747" />
+      <location filename="../UI/UserInterface.py" line="2746" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2749" />
+      <location filename="../UI/UserInterface.py" line="2748" />
       <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="4633" />
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="4632" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report Bug</source>
       <translation>Reportovat Bugy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report &amp;Bug...</source>
       <translation>Reportovat &amp;Bugy...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
+      <location filename="../UI/UserInterface.py" line="2760" />
       <source>Report a bug</source>
       <translation>Reportovat bug</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <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="2770" />
+      <source>Request Feature</source>
+      <translation>Požadavek na vlastnost</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2771" />
-      <source>Request Feature</source>
-      <translation>Požadavek na vlastnost</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2772" />
       <source>Request &amp;Feature...</source>
       <translation>&amp;Požadavek na vlastnost...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2777" />
       <source>Send a feature request</source>
       <translation>Poslat požadavek na vlastnost</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2780" />
+      <location filename="../UI/UserInterface.py" line="2779" />
       <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="4091" />
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2792" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
+      <location filename="../UI/UserInterface.py" line="2798" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2801" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <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="2812" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2820" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2821" />
       <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="2832" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2833" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2844" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <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="2854" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
+      <location filename="../UI/UserInterface.py" line="2855" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>Run tests of the current script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2864" />
+      <location filename="../UI/UserInterface.py" line="2863" />
       <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="2873" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2881" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <source>Run tests of the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <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="2905" />
+      <location filename="../UI/UserInterface.py" line="2904" />
       <source>Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2907" />
+      <location filename="../UI/UserInterface.py" line="2906" />
       <source>Qt-&amp;Designer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2912" />
       <source>Start Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2915" />
+      <location filename="../UI/UserInterface.py" line="2914" />
       <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="2935" />
+      <location filename="../UI/UserInterface.py" line="2934" />
       <source>Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2937" />
+      <location filename="../UI/UserInterface.py" line="2936" />
       <source>Qt-&amp;Linguist...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2943" />
+      <location filename="../UI/UserInterface.py" line="2942" />
       <source>Start Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2945" />
+      <location filename="../UI/UserInterface.py" line="2944" />
       <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="2953" />
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>UI Previewer</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
+      <location filename="../UI/UserInterface.py" line="2954" />
       <source>&amp;UI Previewer...</source>
       <translation>&amp;UI Previewer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2961" />
+      <location filename="../UI/UserInterface.py" line="2960" />
       <source>Start the UI Previewer</source>
       <translation>Spustit UI Previewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2962" />
       <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="2969" />
+      <location filename="../UI/UserInterface.py" line="2968" />
       <source>Translations Previewer</source>
       <translation>Náhled překladů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2971" />
+      <location filename="../UI/UserInterface.py" line="2970" />
       <source>&amp;Translations Previewer...</source>
       <translation>Náhled &amp;překladů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="2976" />
       <source>Start the Translations Previewer</source>
       <translation>Spustit Previewer překladů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2979" />
+      <location filename="../UI/UserInterface.py" line="2978" />
       <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="2988" />
+      <location filename="../UI/UserInterface.py" line="2987" />
       <source>Compare Files</source>
       <translation>Porovnat soubory</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2990" />
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Porovnat soubory...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="2995" />
       <source>Compare two files</source>
       <translation>Porovnat dva soubory</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2998" />
+      <location filename="../UI/UserInterface.py" line="2997" />
       <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="3007" />
+      <location filename="../UI/UserInterface.py" line="3006" />
       <source>Compare Files side by side</source>
       <translation>Porovnat soubory stranu proti straně</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3009" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3017" />
+      <location filename="../UI/UserInterface.py" line="3016" />
       <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="3027" />
+      <location filename="../UI/UserInterface.py" line="3026" />
       <source>SQL Browser</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3028" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL &amp;Browser...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3035" />
+      <location filename="../UI/UserInterface.py" line="3034" />
       <source>Browse a SQL database</source>
       <translation>Procházet SQL databázi</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3037" />
+      <location filename="../UI/UserInterface.py" line="3036" />
       <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="3051" />
-      <location filename="../UI/UserInterface.py" line="3043" />
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <location filename="../UI/UserInterface.py" line="3042" />
       <source>Mini Editor</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3045" />
+      <location filename="../UI/UserInterface.py" line="3044" />
       <source>Mini &amp;Editor...</source>
       <translation>Mini &amp;Editor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3053" />
+      <location filename="../UI/UserInterface.py" line="3052" />
       <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="3062" />
+      <location filename="../UI/UserInterface.py" line="3061" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3064" />
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
+      <location filename="../UI/UserInterface.py" line="3069" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3072" />
+      <location filename="../UI/UserInterface.py" line="3071" />
       <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="3082" />
+      <location filename="../UI/UserInterface.py" line="3081" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3084" />
+      <location filename="../UI/UserInterface.py" line="3083" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3089" />
       <source>Start the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3092" />
+      <location filename="../UI/UserInterface.py" line="3091" />
       <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="3101" />
+      <location filename="../UI/UserInterface.py" line="3100" />
       <source>Icon Editor</source>
       <translation>Editor ikon</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3103" />
+      <location filename="../UI/UserInterface.py" line="3102" />
       <source>&amp;Icon Editor...</source>
       <translation>Editor &amp;ikon...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3109" />
+      <location filename="../UI/UserInterface.py" line="3108" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
+      <location filename="../UI/UserInterface.py" line="3110" />
       <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="3120" />
+      <location filename="../UI/UserInterface.py" line="3119" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3122" />
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3128" />
+      <location filename="../UI/UserInterface.py" line="3127" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3129" />
       <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="3140" />
+      <location filename="../UI/UserInterface.py" line="3139" />
       <source>Preferences</source>
       <translation>Nastavení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3142" />
+      <location filename="../UI/UserInterface.py" line="3141" />
       <source>&amp;Preferences...</source>
       <translation>Na&amp;stavení...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3147" />
       <source>Set the prefered configuration</source>
       <translation>Nastavení konfigurace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3149" />
       <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="3161" />
+      <location filename="../UI/UserInterface.py" line="3160" />
       <source>Export Preferences</source>
       <translation>Exportovat předvolby</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3163" />
+      <location filename="../UI/UserInterface.py" line="3162" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;xportovat předvolby...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3169" />
+      <location filename="../UI/UserInterface.py" line="3168" />
       <source>Export the current configuration</source>
       <translation>Export aktuální konfigurace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="3170" />
       <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="3180" />
+      <location filename="../UI/UserInterface.py" line="3179" />
       <source>Import Preferences</source>
       <translation>Import předvoleb</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3182" />
+      <location filename="../UI/UserInterface.py" line="3181" />
       <source>I&amp;mport Preferences...</source>
       <translation>I&amp;mport předvoleb...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3188" />
       <source>Import a previously exported configuration</source>
       <translation>Import dříve exportované konfigurace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3192" />
+      <location filename="../UI/UserInterface.py" line="3191" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3200" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3203" />
+      <location filename="../UI/UserInterface.py" line="3202" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3209" />
+      <location filename="../UI/UserInterface.py" line="3208" />
       <source>Export the current theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
+      <location filename="../UI/UserInterface.py" line="3210" />
       <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="3220" />
+      <location filename="../UI/UserInterface.py" line="3219" />
       <source>Import Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3222" />
+      <location filename="../UI/UserInterface.py" line="3221" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3228" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
+      <location filename="../UI/UserInterface.py" line="3229" />
       <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="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload APIs</source>
       <translation>Obnovit API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload &amp;APIs</source>
       <translation>Obnovit &amp;API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3241" />
+      <location filename="../UI/UserInterface.py" line="3240" />
       <source>Reload the API information</source>
       <translation>Obnovit API nastavení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3243" />
+      <location filename="../UI/UserInterface.py" line="3242" />
       <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="3257" />
-      <location filename="../UI/UserInterface.py" line="3249" />
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <location filename="../UI/UserInterface.py" line="3248" />
       <source>Show external tools</source>
       <translation>Zobrazit externí nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
+      <location filename="../UI/UserInterface.py" line="3250" />
       <source>Show external &amp;tools</source>
       <translation>Zobrazit externí nás&amp;troje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3258" />
       <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="3269" />
+      <location filename="../UI/UserInterface.py" line="3268" />
       <source>View Profiles</source>
       <translation>Profily pohledů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
+      <location filename="../UI/UserInterface.py" line="3270" />
       <source>&amp;View Profiles...</source>
       <translation>Profily &amp;pohledů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3277" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Configure view profiles</source>
       <translation>Konfigurace profilů pohledů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
+      <location filename="../UI/UserInterface.py" line="3278" />
       <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="3290" />
+      <location filename="../UI/UserInterface.py" line="3289" />
       <source>Toolbars</source>
       <translation>Lišty nástrojů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3292" />
+      <location filename="../UI/UserInterface.py" line="3291" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Lišty nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
+      <location filename="../UI/UserInterface.py" line="3297" />
       <source>Configure toolbars</source>
       <translation>Konfigurace lišt nástrojů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3299" />
       <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="3311" />
+      <location filename="../UI/UserInterface.py" line="3310" />
       <source>Keyboard Shortcuts</source>
       <translation>Klávesové zkratky</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3313" />
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Klávesové &amp;zkratky...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3319" />
+      <location filename="../UI/UserInterface.py" line="3318" />
       <source>Set the keyboard shortcuts</source>
       <translation>Nastavení klávesových zkratek</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
+      <location filename="../UI/UserInterface.py" line="3320" />
       <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="7335" />
-      <location filename="../UI/UserInterface.py" line="7316" />
-      <location filename="../UI/UserInterface.py" line="3331" />
+      <location filename="../UI/UserInterface.py" line="7334" />
+      <location filename="../UI/UserInterface.py" line="7315" />
+      <location filename="../UI/UserInterface.py" line="3330" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportovat klávesové zkratky</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3333" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Exportovat klávesové zkratky...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
+      <location filename="../UI/UserInterface.py" line="3338" />
       <source>Export the keyboard shortcuts</source>
       <translation>Export klávesových zkratek</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3341" />
+      <location filename="../UI/UserInterface.py" line="3340" />
       <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="7354" />
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="7353" />
+      <location filename="../UI/UserInterface.py" line="3349" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Import klávesových zkratek</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3352" />
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Import klávesových zkratek...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="3357" />
       <source>Import the keyboard shortcuts</source>
       <translation>Import klávesových zkratek</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3359" />
       <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="3370" />
+      <location filename="../UI/UserInterface.py" line="3369" />
       <source>Manage SSL Certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3372" />
+      <location filename="../UI/UserInterface.py" line="3371" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3378" />
       <source>Manage the saved SSL certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3382" />
+      <location filename="../UI/UserInterface.py" line="3381" />
       <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="3392" />
+      <location filename="../UI/UserInterface.py" line="3391" />
       <source>Edit Message Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3394" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="3400" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3404" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <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="3423" />
-      <location filename="../UI/UserInterface.py" line="3417" />
-      <location filename="../UI/UserInterface.py" line="3415" />
+      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Clear private data</source>
       <translation type="unfinished">Smazat soukromá data</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3425" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <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="3435" />
+      <location filename="../UI/UserInterface.py" line="3434" />
+      <source>Activate current editor</source>
+      <translation>Aktivovat aktuální editor</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3436" />
-      <location filename="../UI/UserInterface.py" line="3435" />
-      <source>Activate current editor</source>
-      <translation>Aktivovat aktuální editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Alt+Shift+E</source>
       <translation />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3447" />
+      <location filename="../UI/UserInterface.py" line="3446" />
+      <source>Show next</source>
+      <translation>Zobrazit další</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3448" />
-      <location filename="../UI/UserInterface.py" line="3447" />
-      <source>Show next</source>
-      <translation>Zobrazit další</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
       <source>Ctrl+Alt+Tab</source>
       <translation />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3458" />
+      <source>Show previous</source>
+      <translation>Zobrazit předchozí</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3460" />
-      <location filename="../UI/UserInterface.py" line="3459" />
-      <source>Show previous</source>
-      <translation>Zobrazit předchozí</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3461" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Switch between tabs</source>
+      <translation>Přepnout mezi taby</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3472" />
-      <location filename="../UI/UserInterface.py" line="3471" />
-      <source>Switch between tabs</source>
-      <translation>Přepnout mezi taby</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Ctrl+1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
       <source>Plugin Infos</source>
       <translation>Plugin Infa</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3485" />
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>&amp;Plugin Infos...</source>
       <translation>&amp;Plugin Infa...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
+      <location filename="../UI/UserInterface.py" line="3490" />
       <source>Show Plugin Infos</source>
       <translation>Zobrazit Plugin infa</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
+      <location filename="../UI/UserInterface.py" line="3492" />
       <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="3511" />
-      <location filename="../UI/UserInterface.py" line="3503" />
+      <location filename="../UI/UserInterface.py" line="3510" />
+      <location filename="../UI/UserInterface.py" line="3502" />
       <source>Install Plugins</source>
       <translation>Instalovat pluginy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3504" />
       <source>&amp;Install Plugins...</source>
       <translation>&amp;Instalovat pluginy...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
+      <location filename="../UI/UserInterface.py" line="3512" />
       <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="3530" />
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Uninstall Plugin</source>
       <translation>Odinstalovat plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3524" />
+      <location filename="../UI/UserInterface.py" line="3523" />
       <source>&amp;Uninstall Plugin...</source>
       <translation>&amp;Odinstalovat plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <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="3543" />
+      <location filename="../UI/UserInterface.py" line="3542" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Repozitář pluginů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <source>Show Plugins available for download</source>
       <translation>Zobrazit pluginy dostupné ke stažení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3551" />
+      <location filename="../UI/UserInterface.py" line="3550" />
       <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="3578" />
       <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="3576" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished">Qt4 dokumentace {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3584" />
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Open Qt5 Documentation</source>
       <translation type="unfinished">Otevřít Qt4 dokumentaci {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3599" />
       <location filename="../UI/UserInterface.py" line="3598" />
+      <location filename="../UI/UserInterface.py" line="3597" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Qt4 dokumentace {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3605" />
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">Otevřít Qt4 dokumentaci {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3606" />
       <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="3620" />
       <location filename="../UI/UserInterface.py" line="3619" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3626" />
+      <location filename="../UI/UserInterface.py" line="3625" />
       <source>Open PyQt5 Documentation</source>
       <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3627" />
       <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="3641" />
       <location filename="../UI/UserInterface.py" line="3640" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">PyQt4 dokumentace {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3647" />
+      <location filename="../UI/UserInterface.py" line="3646" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">Otevřít PyQt4 dokumentaci {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3648" />
       <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="3667" />
       <location filename="../UI/UserInterface.py" line="3666" />
+      <location filename="../UI/UserInterface.py" line="3665" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3673" />
+      <location filename="../UI/UserInterface.py" line="3672" />
       <source>Open Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <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="3694" />
       <location filename="../UI/UserInterface.py" line="3693" />
+      <location filename="../UI/UserInterface.py" line="3692" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3700" />
+      <location filename="../UI/UserInterface.py" line="3699" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
       <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="3720" />
       <location filename="../UI/UserInterface.py" line="3719" />
+      <location filename="../UI/UserInterface.py" line="3718" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3726" />
+      <location filename="../UI/UserInterface.py" line="3725" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
       <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="3746" />
       <location filename="../UI/UserInterface.py" line="3745" />
+      <location filename="../UI/UserInterface.py" line="3744" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3752" />
+      <location filename="../UI/UserInterface.py" line="3751" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <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="3854" />
+      <location filename="../UI/UserInterface.py" line="3853" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtra funkce</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
+      <location filename="../UI/UserInterface.py" line="3863" />
       <source>Wi&amp;zards</source>
       <translation>&amp;Průvodci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3882" />
+      <location filename="../UI/UserInterface.py" line="3881" />
       <source>P&amp;lugins</source>
       <translation>P&amp;luginy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3891" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>Configure...</source>
       <translation>Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3900" />
+      <location filename="../UI/UserInterface.py" line="3899" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3917" />
+      <location filename="../UI/UserInterface.py" line="3916" />
       <source>Select Tool Group</source>
       <translation>Vybrat skupinu nástrojů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Se&amp;ttings</source>
       <translation>Nas&amp;tavení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3961" />
+      <location filename="../UI/UserInterface.py" line="3960" />
       <source>&amp;Window</source>
       <translation>O&amp;kno</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3970" />
+      <location filename="../UI/UserInterface.py" line="3969" />
       <source>&amp;Windows</source>
       <translation type="unfinished">&amp;Windows</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3974" />
+      <location filename="../UI/UserInterface.py" line="3973" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3978" />
+      <location filename="../UI/UserInterface.py" line="3977" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3997" />
+      <location filename="../UI/UserInterface.py" line="3996" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4016" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4024" />
+      <location filename="../UI/UserInterface.py" line="4023" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4030" />
+      <location filename="../UI/UserInterface.py" line="4029" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Toolbary</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4043" />
+      <location filename="../UI/UserInterface.py" line="4042" />
       <source>&amp;Help</source>
       <translation>&amp;Nápověda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="4112" />
+      <location filename="../UI/UserInterface.py" line="4089" />
       <source>Tools</source>
       <translation>Nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4115" />
-      <location filename="../UI/UserInterface.py" line="4094" />
+      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4093" />
       <source>Settings</source>
       <translation>Nastavení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6148" />
+      <location filename="../UI/UserInterface.py" line="6147" />
+      <location filename="../UI/UserInterface.py" line="4115" />
+      <location filename="../UI/UserInterface.py" line="4094" />
+      <source>Help</source>
+      <translation>Nápověda</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4116" />
       <location filename="../UI/UserInterface.py" line="4095" />
-      <source>Help</source>
-      <translation>Nápověda</translation>
+      <source>Profiles</source>
+      <translation>Profily</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="4117" />
       <location filename="../UI/UserInterface.py" line="4096" />
-      <source>Profiles</source>
-      <translation>Profily</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4118" />
-      <location filename="../UI/UserInterface.py" line="4097" />
       <source>Plugins</source>
       <translation>Pluginy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4113" />
       <source>Unittest</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4286" />
+      <location filename="../UI/UserInterface.py" line="4285" />
       <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="4295" />
+      <location filename="../UI/UserInterface.py" line="4294" />
       <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="4304" />
+      <location filename="../UI/UserInterface.py" line="4303" />
       <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="4313" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4322" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4331" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4345" />
+      <location filename="../UI/UserInterface.py" line="4344" />
       <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="4416" />
-      <location filename="../UI/UserInterface.py" line="4375" />
+      <location filename="../UI/UserInterface.py" line="4415" />
+      <location filename="../UI/UserInterface.py" line="4374" />
       <source>External Tools/{0}</source>
       <translation>Externí nástroje/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4524" />
+      <location filename="../UI/UserInterface.py" line="4523" />
       <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="4573" />
+      <location filename="../UI/UserInterface.py" line="4572" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4590" />
+      <location filename="../UI/UserInterface.py" line="4589" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4593" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4597" />
+      <location filename="../UI/UserInterface.py" line="4596" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4633" />
       <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="4948" />
+      <source>Restart application</source>
+      <translation>Restartovat aplikaci</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4949" />
-      <source>Restart application</source>
-      <translation>Restartovat aplikaci</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4950" />
       <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="4973" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4974" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4975" />
       <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="5024" />
+      <location filename="../UI/UserInterface.py" line="4998" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="4999" />
+      <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="5025" />
-      <location filename="../UI/UserInterface.py" line="4999" />
-      <source>Upgrade Eric</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5000" />
-      <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="5026" />
       <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="5084" />
+      <location filename="../UI/UserInterface.py" line="5083" />
       <source>&amp;Builtin Tools</source>
       <translation>&amp;Vestavěné nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5101" />
+      <location filename="../UI/UserInterface.py" line="5100" />
       <source>&amp;Plugin Tools</source>
       <translation>&amp;Plugin nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5103" />
       <source>&amp;User Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5130" />
+      <location filename="../UI/UserInterface.py" line="5129" />
       <source>Configure Tool Groups ...</source>
       <translation>Konfigurace Skupin nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5134" />
+      <location filename="../UI/UserInterface.py" line="5133" />
       <source>Configure current Tool Group ...</source>
       <translation>Konfigurace aktuální skupiny nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5173" />
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5172" />
+      <location filename="../UI/UserInterface.py" line="5152" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5247" />
+      <location filename="../UI/UserInterface.py" line="5246" />
       <source>&amp;Show all</source>
       <translation>&amp;Zobrazit vše</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5249" />
+      <location filename="../UI/UserInterface.py" line="5248" />
       <source>&amp;Hide all</source>
       <translation>&amp;Skrýt vše</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6282" />
+      <location filename="../UI/UserInterface.py" line="6271" />
+      <location filename="../UI/UserInterface.py" line="6223" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6049" />
+      <location filename="../UI/UserInterface.py" line="6039" />
+      <location filename="../UI/UserInterface.py" line="5982" />
+      <location filename="../UI/UserInterface.py" line="5972" />
+      <source>Problem</source>
+      <translation>Problém</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6283" />
       <location filename="../UI/UserInterface.py" line="6272" />
       <location filename="../UI/UserInterface.py" line="6224" />
@@ -85373,312 +85406,300 @@
       <location filename="../UI/UserInterface.py" line="6040" />
       <location filename="../UI/UserInterface.py" line="5983" />
       <location filename="../UI/UserInterface.py" line="5973" />
-      <source>Problem</source>
-      <translation>Problém</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6273" />
-      <location filename="../UI/UserInterface.py" line="6225" />
-      <location filename="../UI/UserInterface.py" line="6215" />
-      <location filename="../UI/UserInterface.py" line="6051" />
-      <location filename="../UI/UserInterface.py" line="6041" />
-      <location filename="../UI/UserInterface.py" line="5984" />
-      <location filename="../UI/UserInterface.py" line="5974" />
       <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="6496" />
-      <location filename="../UI/UserInterface.py" line="6409" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6296" />
-      <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6164" />
-      <location filename="../UI/UserInterface.py" line="6124" />
-      <location filename="../UI/UserInterface.py" line="6115" />
-      <location filename="../UI/UserInterface.py" line="6081" />
-      <location filename="../UI/UserInterface.py" line="6072" />
-      <location filename="../UI/UserInterface.py" line="6014" />
-      <location filename="../UI/UserInterface.py" line="6005" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6408" />
+      <location filename="../UI/UserInterface.py" line="6318" />
+      <location filename="../UI/UserInterface.py" line="6295" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6163" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
+      <location filename="../UI/UserInterface.py" line="6080" />
+      <location filename="../UI/UserInterface.py" line="6071" />
+      <location filename="../UI/UserInterface.py" line="6013" />
+      <location filename="../UI/UserInterface.py" line="6004" />
       <source>Process Generation Error</source>
       <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6006" />
+      <location filename="../UI/UserInterface.py" line="6005" />
       <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="6015" />
+      <location filename="../UI/UserInterface.py" line="6014" />
       <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="6073" />
+      <location filename="../UI/UserInterface.py" line="6072" />
       <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="6082" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <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="6116" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <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="6125" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <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="6149" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <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="6165" />
+      <location filename="../UI/UserInterface.py" line="6164" />
       <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="6186" />
+      <location filename="../UI/UserInterface.py" line="6185" />
       <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="6238" />
+      <location filename="../UI/UserInterface.py" line="6237" />
       <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="6297" />
+      <location filename="../UI/UserInterface.py" line="6296" />
       <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="6320" />
+      <location filename="../UI/UserInterface.py" line="6319" />
       <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="6410" />
+      <location filename="../UI/UserInterface.py" line="6409" />
       <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="6442" />
+      <location filename="../UI/UserInterface.py" line="6432" />
+      <source>External Tools</source>
+      <translation>Externí nástroje</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <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="6443" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <source>External Tools</source>
-      <translation>Externí nástroje</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6434" />
-      <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="6444" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>Skupina nástrojů '{0}' nenalezena. </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6479" />
+      <location filename="../UI/UserInterface.py" line="6478" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Spouštím proces '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6497" />
+      <location filename="../UI/UserInterface.py" line="6496" />
       <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="6573" />
+      <location filename="../UI/UserInterface.py" line="6572" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Proces '{0}' byl ukončen.
 </translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6857" />
+      <location filename="../UI/UserInterface.py" line="6795" />
+      <location filename="../UI/UserInterface.py" line="6751" />
+      <location filename="../UI/UserInterface.py" line="6679" />
+      <location filename="../UI/UserInterface.py" line="6615" />
+      <source>Documentation Missing</source>
+      <translation>Dokumentace chybí</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6858" />
       <location filename="../UI/UserInterface.py" line="6796" />
       <location filename="../UI/UserInterface.py" line="6752" />
       <location filename="../UI/UserInterface.py" line="6680" />
       <location filename="../UI/UserInterface.py" line="6616" />
-      <source>Documentation Missing</source>
-      <translation>Dokumentace chybí</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6859" />
-      <location filename="../UI/UserInterface.py" line="6797" />
-      <location filename="../UI/UserInterface.py" line="6753" />
-      <location filename="../UI/UserInterface.py" line="6681" />
-      <location filename="../UI/UserInterface.py" line="6617" />
       <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="6839" />
+      <location filename="../UI/UserInterface.py" line="6723" />
+      <source>Documentation</source>
+      <translation>Dokumentace</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6724" />
+      <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="6840" />
-      <location filename="../UI/UserInterface.py" line="6724" />
-      <source>Documentation</source>
-      <translation>Dokumentace</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6725" />
-      <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="6841" />
       <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="7020" />
+      <location filename="../UI/UserInterface.py" line="6955" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6956" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7021" />
-      <location filename="../UI/UserInterface.py" line="6956" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6957" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7022" />
       <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="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7318" />
+      <location filename="../UI/UserInterface.py" line="7317" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7336" />
+      <location filename="../UI/UserInterface.py" line="7335" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7538" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7539" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7540" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor s úlohami &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7582" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7611" />
-      <location filename="../UI/UserInterface.py" line="7584" />
-      <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="7610" />
+      <location filename="../UI/UserInterface.py" line="7583" />
+      <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="7609" />
       <source>Read session</source>
       <translation>Načíst relaci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7627" />
+      <location filename="../UI/UserInterface.py" line="7626" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7629" />
+      <location filename="../UI/UserInterface.py" line="7628" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7652" />
+      <location filename="../UI/UserInterface.py" line="7651" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7697" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7698" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7699" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8058" />
+      <source>Drop Error</source>
+      <translation>Zahodit chybu</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8059" />
-      <source>Drop Error</source>
-      <translation>Zahodit chybu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8060" />
       <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="8233" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8234" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8235" />
       <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;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8285" />
+      <location filename="../UI/UserInterface.py" line="8272" />
+      <source>First time usage</source>
+      <translation>Spuštěno poprvé</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8273" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8286" />
-      <location filename="../UI/UserInterface.py" line="8273" />
-      <source>First time usage</source>
-      <translation>Spuštěno poprvé</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8274" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8287" />
       <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="8310" />
+      <location filename="../UI/UserInterface.py" line="8309" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8490" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8491" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8492" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -85762,7 +85783,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1616" />
+      <location filename="../Utilities/__init__.py" line="1615" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Můžete použít %-kódy a rezervovaná místa ve stringu. Podporované kódy jsou:&lt;table&gt;&lt;tr&gt;    &lt;td&gt;%C&lt;/td&gt;    &lt;td&gt;sloupec kurzoru v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%D&lt;/td&gt;    &lt;td&gt;adresář v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%F&lt;/td&gt;    &lt;td&gt;jméno souboru v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%H&lt;/td&gt;    &lt;td&gt;home adresář aktuálního uživatele&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%L&lt;/td&gt;    &lt;td&gt;řádek s kurzorem v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%P&lt;/td&gt;    &lt;td&gt;cesta aktuálního projektu&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%S&lt;/td&gt;    &lt;td&gt;vybraný text v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%U&lt;/td&gt;    &lt;td&gt;uživatelské jméno aktuálního uživatele&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%%&lt;/td&gt;    &lt;td&gt;znak procenta&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
Binary file src/eric7/i18n/eric7_de.qm has changed
--- a/src/eric7/i18n/eric7_de.ts	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/i18n/eric7_de.ts	Fri Nov 25 11:51:51 2022 +0100
@@ -5457,7 +5457,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="206" />
+      <location filename="../Utilities/__init__.py" line="205" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>Die Kodierung „{0}“ ist für den übergebenen Text falsch.</translation>
     </message>
@@ -8803,88 +8803,89 @@
       <translation>Status</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="221" />
+      <location filename="../Debugger/DebugViewer.py" line="149" />
+      <source>Source</source>
+      <translation>Quelltext</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Don't Show</source>
       <translation>Nicht anzeigen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Show Only</source>
       <translation>Nur anzeigen</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="233" />
-      <location filename="../Debugger/DebugViewer.py" line="162" />
+      <location filename="../Debugger/DebugViewer.py" line="248" />
+      <location filename="../Debugger/DebugViewer.py" line="176" />
       <source>Enter regular expression patterns separated by ';' to define variable filters. </source>
       <translation>Gib reguläre Ausdrücke getrennt durch „;“ ein, um Variablenfilter zu definieren. </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="239" />
-      <location filename="../Debugger/DebugViewer.py" line="168" />
-      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
-      <translation>Gib reguläre Ausdrücke getrennt durch „;“ ein, um Variablenfilter zu definieren. Alle Variablen und Klassenattribute, auf die einer der Ausdrücke passt, werden in der obigen Liste nicht dargestellt.</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="246" />
-      <location filename="../Debugger/DebugViewer.py" line="176" />
-      <source>Set</source>
-      <translation>Setzen</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="184" />
-      <source>Shows the list of global variables and their values.</source>
-      <translation>Zeigt die Liste der globalen Variablen mit ihren Werten.</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="206" />
-      <source>Source</source>
-      <translation>Quelltext</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugViewer.py" line="254" />
+      <location filename="../Debugger/DebugViewer.py" line="182" />
+      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
+      <translation>Gib reguläre Ausdrücke getrennt durch „;“ ein, um Variablenfilter zu definieren. Alle Variablen und Klassenattribute, auf die einer der Ausdrücke passt, werden in der obigen Liste nicht dargestellt.</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="261" />
+      <location filename="../Debugger/DebugViewer.py" line="190" />
+      <source>Set</source>
+      <translation>Setzen</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="198" />
+      <source>Shows the list of global variables and their values.</source>
+      <translation>Zeigt die Liste der globalen Variablen mit ihren Werten.</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="269" />
       <source>Shows the list of local variables and their values.</source>
       <translation>Zeigt die Liste der lokalen Variablen mit ihren Werten.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="271" />
+      <location filename="../Debugger/DebugViewer.py" line="295" />
       <source>Shows the current call stack.</source>
       <translation>Zeigt den aktuellen Aufrufstapel.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="281" />
+      <location filename="../Debugger/DebugViewer.py" line="305" />
       <source>Shows a trace of the program flow.</source>
       <translation>Zeigt den Ablauf des Programms.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="292" />
+      <location filename="../Debugger/DebugViewer.py" line="316" />
       <source>Shows a list of defined breakpoints.</source>
       <translation>Zeigt eine Liste der definierten Haltepunkte.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="303" />
+      <location filename="../Debugger/DebugViewer.py" line="327" />
       <source>Shows a list of defined watchpoints.</source>
       <translation>Zeigt eine Liste der definierten Beobachtungspunkte.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="312" />
+      <location filename="../Debugger/DebugViewer.py" line="336" />
       <source>Shows a list of raised exceptions.</source>
       <translation>Zeigt eine Liste der Ausnahmen.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="323" />
+      <location filename="../Debugger/DebugViewer.py" line="347" />
       <source>Shows a code disassembly in case of an exception.</source>
       <translation>Zeigt ein Disassembly des Codes im Falle einer Ausnahme.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="749" />
+      <location filename="../Debugger/DebugViewer.py" line="790" />
       <source>&lt;p&gt;Debugger with ID &lt;b&gt;{0}&lt;/b&gt; has been connected.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Debugger mit der ID &lt;b&gt;{0}&lt;/b&gt; wurde verbunden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="992" />
-      <location filename="../Debugger/DebugViewer.py" line="864" />
+      <location filename="../Debugger/DebugViewer.py" line="1033" />
+      <location filename="../Debugger/DebugViewer.py" line="905" />
       <source>unknown state ({0})</source>
       <translation>unbekannter Status ({0})</translation>
     </message>
@@ -9368,26 +9369,26 @@
       <translation>Ausgewählte Schnittstelle</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
       <source>Add allowed host</source>
       <translation>Zugelassene Rechner hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="343" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="307" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Gib die IP-Adresse eines zugelassenen Rechners ein</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="357" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="320" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die eingegebene Adresse &lt;b&gt;{0}&lt;/b&gt; ist keine gültige IPv4- oder IPv6-Adresse. Abbruch …&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
       <source>Edit allowed host</source>
       <translation>Zugelassene Rechner bearbeiten</translation>
     </message>
@@ -20748,7 +20749,7 @@
       <translation>Hinzufügen/Ändern</translation>
     </message>
     <message>
-      <location filename="../Project/FiletypeAssociationDialog.py" line="56" />
+      <location filename="../Project/FiletypeAssociationDialog.py" line="58" />
       <location filename="../Project/FiletypeAssociationDialog.py" line="45" />
       <source>Ignore</source>
       <translation>Ignorieren</translation>
@@ -46599,7 +46600,7 @@
       <translation>Pygments</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="462" />
+      <location filename="../Preferences/__init__.py" line="461" />
       <location filename="../QScintilla/Lexers/__init__.py" line="386" />
       <source>Python Files (*.py *.py3)</source>
       <translation>Python-Dateien (*.py *.py3)</translation>
@@ -46852,7 +46853,7 @@
       <translation>Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="465" />
+      <location filename="../Preferences/__init__.py" line="464" />
       <location filename="../QScintilla/Lexers/__init__.py" line="479" />
       <source>Python3 Files (*.py)</source>
       <translation>Python 3-Dateien (*.py)</translation>
@@ -55423,18 +55424,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1608" />
+      <location filename="../Preferences/__init__.py" line="1653" />
       <source>Export Preferences</source>
       <translation>Einstellungen exportieren</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1637" />
-      <location filename="../Preferences/__init__.py" line="1610" />
+      <location filename="../Preferences/__init__.py" line="1682" />
+      <location filename="../Preferences/__init__.py" line="1655" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Properties-Dateien (*.ini);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1635" />
+      <location filename="../Preferences/__init__.py" line="1680" />
       <source>Import Preferences</source>
       <translation>Einstellungen importieren</translation>
     </message>
@@ -55455,7 +55456,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="472" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
       <source>Variable Name</source>
       <translation>Variablenname</translation>
     </message>
@@ -56300,7 +56301,7 @@
       <translation>Datei umbenennen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3311" />
+      <location filename="../Project/Project.py" line="3313" />
       <location filename="../Project/Project.py" line="2130" />
       <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>
@@ -56331,154 +56332,154 @@
       <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="2517" />
+      <location filename="../Project/Project.py" line="2518" />
       <source>Create project directory</source>
       <translation>Projektverzeichnis erstellen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2518" />
+      <location filename="../Project/Project.py" line="2519" />
       <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="3115" />
-      <location filename="../Project/Project.py" line="2579" />
-      <source>Create project management directory</source>
-      <translation>Projektverwaltungsverzeichnis erstellen</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3116" />
       <location filename="../Project/Project.py" line="2580" />
+      <source>Create project management directory</source>
+      <translation>Projektverwaltungsverzeichnis erstellen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3117" />
+      <location filename="../Project/Project.py" line="2581" />
       <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="2600" />
-      <source>Create main script</source>
-      <translation>Hauptskript erzeugen</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2601" />
+      <source>Create main script</source>
+      <translation>Hauptskript erzeugen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2602" />
       <source>&lt;p&gt;The mainscript &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="2922" />
-      <location filename="../Project/Project.py" line="2625" />
-      <source>Create Makefile</source>
-      <translation>Makefile erzeugen</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2923" />
       <location filename="../Project/Project.py" line="2626" />
+      <source>Create Makefile</source>
+      <translation>Makefile erzeugen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2924" />
+      <location filename="../Project/Project.py" line="2627" />
       <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="3144" />
-      <location filename="../Project/Project.py" line="2764" />
-      <location filename="../Project/Project.py" line="2735" />
-      <location filename="../Project/Project.py" line="2691" />
-      <location filename="../Project/Project.py" line="2666" />
-      <location filename="../Project/Project.py" line="2636" />
-      <source>New Project</source>
-      <translation>Neues Projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2637" />
-      <source>Add existing files to the project?</source>
-      <translation>Existierende Dateien dem Projekt hinzufügen?</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3145" />
+      <location filename="../Project/Project.py" line="2765" />
+      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2692" />
       <location filename="../Project/Project.py" line="2667" />
+      <location filename="../Project/Project.py" line="2637" />
+      <source>New Project</source>
+      <translation>Neues Projekt</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2638" />
+      <source>Add existing files to the project?</source>
+      <translation>Existierende Dateien dem Projekt hinzufügen?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3146" />
+      <location filename="../Project/Project.py" line="2668" />
       <source>Select Version Control System</source>
       <translation>Versionskontrollsystem auswählen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2765" />
-      <location filename="../Project/Project.py" line="2692" />
+      <location filename="../Project/Project.py" line="2766" />
+      <location filename="../Project/Project.py" line="2693" />
       <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="4082" />
-      <location filename="../Project/Project.py" line="2707" />
+      <location filename="../Project/Project.py" line="4085" />
+      <location filename="../Project/Project.py" line="2708" />
       <source>New project</source>
       <translation>Neues Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2708" />
+      <location filename="../Project/Project.py" line="2709" />
       <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="2741" />
-      <location filename="../Project/Project.py" line="2729" />
+      <location filename="../Project/Project.py" line="2742" />
+      <location filename="../Project/Project.py" line="2730" />
       <source>None</source>
       <translation>Keines</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2737" />
       <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="2848" />
-      <source>Translation Pattern</source>
-      <translation>Übersetzungsmuster</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2849" />
+      <source>Translation Pattern</source>
+      <translation>Übersetzungsmuster</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2850" />
       <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="4102" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="4105" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Open project</source>
       <translation>Projekt öffnen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3096" />
+      <location filename="../Project/Project.py" line="3097" />
       <source>Project Files (*.epj);;XML Project Files (*.e4p)</source>
       <translation>Projekt Dateien (*.epj);;XML Projekt Dateien (*.e4p)</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="3298" />
+      <location filename="../Project/Project.py" line="3288" />
+      <source>Project Files (*.epj)</source>
+      <translation>Projektdateien (*.epj)</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="3296" />
-      <location filename="../Project/Project.py" line="3286" />
-      <source>Project Files (*.epj)</source>
-      <translation>Projektdateien (*.epj)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3294" />
       <source>Save Project</source>
       <translation>Projekt speichern</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3310" />
+      <location filename="../Project/Project.py" line="3312" />
       <source>Save File</source>
       <translation>Datei speichern</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3349" />
+      <location filename="../Project/Project.py" line="3351" />
       <source>Close Project</source>
       <translation>Projekt schließen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3350" />
+      <location filename="../Project/Project.py" line="3352" />
       <source>The current project has unsaved changes.</source>
       <translation>Das aktuelle Projekt hat ungesicherte Änderungen.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3538" />
-      <location filename="../Project/Project.py" line="3504" />
+      <location filename="../Project/Project.py" line="3541" />
+      <location filename="../Project/Project.py" line="3507" />
       <source>Syntax errors detected</source>
       <translation>Syntaxfehler gefunden</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="3539" />
-      <location filename="../Project/Project.py" line="3505" />
+      <location filename="../Project/Project.py" line="3542" />
+      <location filename="../Project/Project.py" line="3508" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Das Projekt beinhaltet eine Datei mit Syntaxfehlern.</numerusform>
@@ -56486,1151 +56487,1171 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4084" />
+      <location filename="../Project/Project.py" line="4087" />
       <source>&amp;New...</source>
       <translation>&amp;Neu...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4090" />
+      <location filename="../Project/Project.py" line="4093" />
       <source>Generate a new project</source>
       <translation>Erstelle ein neues Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4092" />
+      <location filename="../Project/Project.py" line="4095" />
       <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="4104" />
+      <location filename="../Project/Project.py" line="4107" />
       <source>&amp;Open...</source>
       <translation>&amp;Öffnen...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4110" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>Open an existing project</source>
       <translation>Öffnet ein bestehendes Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4115" />
       <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="4118" />
+      <location filename="../Project/Project.py" line="4121" />
+      <source>Reload project</source>
+      <translation>Projekt erneut laden</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4123" />
+      <source>&amp;Reload</source>
+      <translation>E&amp;rneut laden</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4129" />
+      <source>Reload the current project</source>
+      <translation>Das aktuelle Projekt erneut laden</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4131" />
+      <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="4137" />
       <source>Close project</source>
       <translation>Projekt schließen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4120" />
+      <location filename="../Project/Project.py" line="4139" />
       <source>&amp;Close</source>
       <translation>Schl&amp;ießen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4126" />
+      <location filename="../Project/Project.py" line="4145" />
       <source>Close the current project</source>
       <translation>Schließt das aktuelle Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4128" />
+      <location filename="../Project/Project.py" line="4147" />
       <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="4134" />
+      <location filename="../Project/Project.py" line="4153" />
       <source>Save project</source>
       <translation>Projekt speichern</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4410" />
-      <location filename="../Project/Project.py" line="4136" />
+      <location filename="../Project/Project.py" line="4429" />
+      <location filename="../Project/Project.py" line="4155" />
       <source>&amp;Save</source>
       <translation>&amp;Speichern</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4142" />
+      <location filename="../Project/Project.py" line="4161" />
       <source>Save the current project</source>
       <translation>Speichert das aktuelle Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4144" />
+      <location filename="../Project/Project.py" line="4163" />
       <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="4150" />
+      <location filename="../Project/Project.py" line="4169" />
       <source>Save project as</source>
       <translation>Projekt speichern unter</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4152" />
+      <location filename="../Project/Project.py" line="4171" />
       <source>Save &amp;as...</source>
       <translation>Speichern &amp;unter...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4158" />
-      <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="4160" />
-      <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="4175" />
-      <source>Add files to project</source>
-      <translation>Dateien zum Projekt hinzufügen</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4177" />
-      <source>Add &amp;files...</source>
-      <translation>&amp;Dateien hinzufügen...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4183" />
-      <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="4185" />
-      <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>
+      <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="4179" />
+      <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="4194" />
+      <source>Add files to project</source>
+      <translation>Dateien zum Projekt hinzufügen</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4196" />
+      <source>Add &amp;files...</source>
+      <translation>&amp;Dateien hinzufügen...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4202" />
+      <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="4204" />
+      <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="4215" />
       <source>Add directory to project</source>
       <translation>Verzeichnis zum Projekt hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4198" />
+      <location filename="../Project/Project.py" line="4217" />
       <source>Add directory...</source>
       <translation>Verzeichnis hinzufügen...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4205" />
+      <location filename="../Project/Project.py" line="4224" />
       <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="4208" />
-      <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="4218" />
-      <source>Add translation to project</source>
-      <translation>Übersetzung zum Projekt hinzufügen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4220" />
-      <source>Add &amp;translation...</source>
-      <translation>&amp;Übersetzung hinzufügen...</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4227" />
+      <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="4237" />
+      <source>Add translation to project</source>
+      <translation>Übersetzung zum Projekt hinzufügen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4239" />
+      <source>Add &amp;translation...</source>
+      <translation>&amp;Übersetzung hinzufügen...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4246" />
       <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="4230" />
-      <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="4240" />
-      <source>Search new files</source>
-      <translation>Neue Dateien suchen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4241" />
-      <source>Searc&amp;h new files...</source>
-      <translation>Neue &amp;Dateien suchen...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4247" />
-      <source>Search new files in the project directory.</source>
-      <translation>Sucht neue Dateien im Projektverzeichnis.</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4249" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) 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, *.ui, *.idl, *.proto).&lt;/p&gt;</translation>
+      <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="4259" />
+      <source>Search new files</source>
+      <translation>Neue Dateien suchen</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4260" />
+      <source>Searc&amp;h new files...</source>
+      <translation>Neue &amp;Dateien suchen...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4266" />
+      <source>Search new files in the project directory.</source>
+      <translation>Sucht neue Dateien im Projektverzeichnis.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4268" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) 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, *.ui, *.idl, *.proto).&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4279" />
       <source>Search Project File</source>
       <translation>Projektdatei suchen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4261" />
+      <location filename="../Project/Project.py" line="4280" />
       <source>Search Project File...</source>
       <translation>Projektdatei suchen...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4262" />
+      <location filename="../Project/Project.py" line="4281" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4267" />
+      <location filename="../Project/Project.py" line="4286" />
       <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="4269" />
-      <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="4278" />
-      <source>Project properties</source>
-      <translation>Projekteigenschaften</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4280" />
-      <source>&amp;Properties...</source>
-      <translation>&amp;Eigenschaften...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4286" />
-      <source>Show the project properties</source>
-      <translation>Zeigt die Projekteigenschaften an</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4288" />
-      <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>
+      <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="4297" />
-      <source>User project properties</source>
-      <translation>Nutzer bezogene Projektdaten</translation>
+      <source>Project properties</source>
+      <translation>Projekteigenschaften</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4299" />
+      <source>&amp;Properties...</source>
+      <translation>&amp;Eigenschaften...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4305" />
+      <source>Show the project properties</source>
+      <translation>Zeigt die Projekteigenschaften an</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4307" />
+      <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="4316" />
+      <source>User project properties</source>
+      <translation>Nutzer bezogene Projektdaten</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4318" />
       <source>&amp;User Properties...</source>
       <translation>&amp;Nutzer bezogene Projektdaten...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4306" />
+      <location filename="../Project/Project.py" line="4325" />
       <source>Show the user specific project properties</source>
       <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4309" />
+      <location filename="../Project/Project.py" line="4328" />
       <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="4319" />
+      <location filename="../Project/Project.py" line="4338" />
       <source>Filetype Associations</source>
       <translation>Dateitypzuordnungen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4320" />
+      <location filename="../Project/Project.py" line="4339" />
       <source>Filetype Associations...</source>
       <translation>Dateitypzuordnungen...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4327" />
+      <location filename="../Project/Project.py" line="4346" />
       <source>Show the project file type associations</source>
       <translation>Zeigt die Dateitypzuordnungen des Projektes</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4330" />
+      <location filename="../Project/Project.py" line="4349" />
       <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="4343" />
+      <location filename="../Project/Project.py" line="4362" />
       <source>Lexer Associations</source>
       <translation>Lexerzuordnungen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4344" />
+      <location filename="../Project/Project.py" line="4363" />
       <source>Lexer Associations...</source>
       <translation>Lexerzuordnungen...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4351" />
+      <location filename="../Project/Project.py" line="4370" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4354" />
-      <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="4372" />
-      <source>Debugger Properties</source>
-      <translation>Debugger-Eigenschaften</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4373" />
-      <source>Debugger &amp;Properties...</source>
-      <translation>Debugger-&amp;Eigenschaften...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4379" />
-      <source>Show the debugger properties</source>
-      <translation>Debugger-Eigenschaften anzeigen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4381" />
-      <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>
+      <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="4391" />
-      <source>Load</source>
-      <translation>Laden</translation>
+      <source>Debugger Properties</source>
+      <translation>Debugger-Eigenschaften</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4392" />
-      <source>&amp;Load</source>
-      <translation>&amp;Laden</translation>
+      <source>Debugger &amp;Properties...</source>
+      <translation>Debugger-&amp;Eigenschaften...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4398" />
-      <source>Load the debugger properties</source>
-      <translation>Debugger-Eigenschaften laden</translation>
+      <source>Show the debugger properties</source>
+      <translation>Debugger-Eigenschaften anzeigen</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4400" />
+      <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="4410" />
+      <source>Load</source>
+      <translation>Laden</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4411" />
+      <source>&amp;Load</source>
+      <translation>&amp;Laden</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4417" />
+      <source>Load the debugger properties</source>
+      <translation>Debugger-Eigenschaften laden</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4419" />
       <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="4409" />
-      <source>Save</source>
-      <translation>Speichern</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4416" />
-      <source>Save the debugger properties</source>
-      <translation>Debugger-Eigenschaften speichern</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4418" />
-      <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="4427" />
-      <source>Delete</source>
-      <translation>Löschen</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4428" />
-      <source>&amp;Delete</source>
-      <translation>&amp;Löschen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4434" />
-      <source>Delete the debugger properties</source>
-      <translation>Debugger-Eigenschaften löschen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4436" />
-      <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>
+      <source>Save</source>
+      <translation>Speichern</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4435" />
+      <source>Save the debugger properties</source>
+      <translation>Debugger-Eigenschaften speichern</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4437" />
+      <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="4446" />
-      <source>Reset</source>
-      <translation>Zurücksetzen</translation>
+      <source>Delete</source>
+      <translation>Löschen</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4447" />
-      <source>&amp;Reset</source>
-      <translation>&amp;Zurücksetzen</translation>
+      <source>&amp;Delete</source>
+      <translation>&amp;Löschen</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4453" />
-      <source>Reset the debugger properties</source>
-      <translation>Debugger-Eigenschaften zurücksetzen</translation>
+      <source>Delete the debugger properties</source>
+      <translation>Debugger-Eigenschaften löschen</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4455" />
+      <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="4465" />
+      <source>Reset</source>
+      <translation>Zurücksetzen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4466" />
+      <source>&amp;Reset</source>
+      <translation>&amp;Zurücksetzen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4472" />
+      <source>Reset the debugger properties</source>
+      <translation>Debugger-Eigenschaften zurücksetzen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4474" />
       <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="4471" />
-      <location filename="../Project/Project.py" line="4470" />
+      <location filename="../Project/Project.py" line="4490" />
+      <location filename="../Project/Project.py" line="4489" />
       <source>Load session</source>
       <translation>Sitzung laden</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4477" />
+      <location filename="../Project/Project.py" line="4496" />
       <source>Load the projects session file.</source>
       <translation>Laden der Projektsitzung.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4479" />
+      <location filename="../Project/Project.py" line="4498" />
       <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="4495" />
-      <location filename="../Project/Project.py" line="4494" />
+      <location filename="../Project/Project.py" line="4514" />
+      <location filename="../Project/Project.py" line="4513" />
       <source>Save session</source>
       <translation>Sitzung speichern</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4501" />
+      <location filename="../Project/Project.py" line="4520" />
       <source>Save the projects session file.</source>
       <translation>Speichern der Projektsitzung.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4503" />
+      <location filename="../Project/Project.py" line="4522" />
       <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="4519" />
-      <location filename="../Project/Project.py" line="4518" />
+      <location filename="../Project/Project.py" line="4538" />
+      <location filename="../Project/Project.py" line="4537" />
       <source>Delete session</source>
       <translation>Sitzung löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4525" />
+      <location filename="../Project/Project.py" line="4544" />
       <source>Delete the projects session file.</source>
       <translation>Löscht die Projektsitzungsdatei.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4527" />
+      <location filename="../Project/Project.py" line="4546" />
       <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="4542" />
+      <location filename="../Project/Project.py" line="4561" />
       <source>Code Metrics</source>
       <translation>Quelltextmetriken</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4543" />
+      <location filename="../Project/Project.py" line="4562" />
       <source>&amp;Code Metrics...</source>
       <translation>&amp;Quelltextmetriken...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4550" />
+      <location filename="../Project/Project.py" line="4569" />
       <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="4553" />
+      <location filename="../Project/Project.py" line="4572" />
       <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="4563" />
+      <location filename="../Project/Project.py" line="4582" />
       <source>Python Code Coverage</source>
       <translation>Python-Quelltext-Abdeckung</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4564" />
+      <location filename="../Project/Project.py" line="4583" />
       <source>Code Co&amp;verage...</source>
       <translation>&amp;Quelltext Abdeckung...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4571" />
+      <location filename="../Project/Project.py" line="4590" />
       <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="4574" />
+      <location filename="../Project/Project.py" line="4593" />
       <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="5894" />
-      <location filename="../Project/Project.py" line="5881" />
-      <location filename="../Project/Project.py" line="4584" />
+      <location filename="../Project/Project.py" line="5914" />
+      <location filename="../Project/Project.py" line="5901" />
+      <location filename="../Project/Project.py" line="4603" />
       <source>Profile Data</source>
       <translation>Profildaten</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4585" />
+      <location filename="../Project/Project.py" line="4604" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Profildaten...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4592" />
-      <source>Show profiling data for the project.</source>
-      <translation>Zeige Profildaten des aktuellen Projektes.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4595" />
-      <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="5946" />
-      <location filename="../Project/Project.py" line="4610" />
-      <source>Application Diagram</source>
-      <translation>Applikations-Diagramm</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4611" />
-      <source>&amp;Application Diagram...</source>
-      <translation>&amp;Applikations-Diagramm...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4618" />
-      <source>Show a diagram of the project.</source>
-      <translation>Zeigt ein Diagramm des Projektes.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4621" />
-      <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>
+      <source>Show profiling data for the project.</source>
+      <translation>Zeige Profildaten des aktuellen Projektes.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4614" />
+      <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="5966" />
+      <location filename="../Project/Project.py" line="4629" />
+      <source>Application Diagram</source>
+      <translation>Applikations-Diagramm</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4630" />
-      <source>Load Diagram</source>
-      <translation>Diagramm laden</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4631" />
-      <source>&amp;Load Diagram...</source>
-      <translation>Diagramm &amp;laden...</translation>
+      <source>&amp;Application Diagram...</source>
+      <translation>&amp;Applikations-Diagramm...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4637" />
-      <source>Load a diagram from file.</source>
-      <translation>Lade ein Diagramm aus einer Datei.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4639" />
-      <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="6131" />
-      <location filename="../Project/Project.py" line="6080" />
-      <location filename="../Project/Project.py" line="4654" />
-      <source>Create Package List</source>
-      <translation>Erzeuge Paketliste</translation>
+      <source>Show a diagram of the project.</source>
+      <translation>Zeigt ein Diagramm des Projektes.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4640" />
+      <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="4649" />
+      <source>Load Diagram</source>
+      <translation>Diagramm laden</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4650" />
+      <source>&amp;Load Diagram...</source>
+      <translation>Diagramm &amp;laden...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4656" />
+      <source>Load a diagram from file.</source>
+      <translation>Lade ein Diagramm aus einer Datei.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4658" />
+      <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="6151" />
+      <location filename="../Project/Project.py" line="6100" />
+      <location filename="../Project/Project.py" line="4673" />
+      <source>Create Package List</source>
+      <translation>Erzeuge Paketliste</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4675" />
       <source>Create &amp;Package List</source>
       <translation>Erzeuge &amp;Paketliste</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4663" />
+      <location filename="../Project/Project.py" line="4682" />
       <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="4666" />
-      <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="6200" />
-      <location filename="../Project/Project.py" line="4677" />
-      <source>Create Plugin Archives</source>
-      <translation>Erzeuge Plugin Archive</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4679" />
-      <source>Create Plugin &amp;Archives</source>
-      <translation>Erzeuge Plugin &amp;Archive</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4685" />
+      <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="6220" />
+      <location filename="../Project/Project.py" line="4696" />
+      <source>Create Plugin Archives</source>
+      <translation>Erzeuge Plugin Archive</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4698" />
+      <source>Create Plugin &amp;Archives</source>
+      <translation>Erzeuge Plugin &amp;Archive</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4704" />
       <source>Create eric plugin archive files.</source>
       <translation>Erzeugt eric Plugin Archivdateien.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4687" />
+      <location filename="../Project/Project.py" line="4706" />
       <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="4699" />
+      <location filename="../Project/Project.py" line="4718" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation>Erzeuge Plugin Archive (Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4701" />
+      <location filename="../Project/Project.py" line="4720" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation>Erzeuge Plugin Archive (&amp;Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4708" />
+      <location filename="../Project/Project.py" line="4727" />
       <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="4711" />
+      <location filename="../Project/Project.py" line="4730" />
       <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="6621" />
-      <location filename="../Project/Project.py" line="6592" />
-      <location filename="../Project/Project.py" line="6543" />
-      <location filename="../Project/Project.py" line="4730" />
+      <location filename="../Project/Project.py" line="6641" />
+      <location filename="../Project/Project.py" line="6612" />
+      <location filename="../Project/Project.py" line="6563" />
+      <location filename="../Project/Project.py" line="4749" />
       <source>Execute Make</source>
       <translation>Make ausführen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4731" />
-      <source>&amp;Execute Make</source>
-      <translation>&amp;Make ausführen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4737" />
-      <source>Perform a 'make' run.</source>
-      <translation>Führt eine 'make' Lauf aus.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4739" />
-      <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="6598" />
-      <location filename="../Project/Project.py" line="4749" />
-      <source>Test for Changes</source>
-      <translation>Auf Änderungen prüfen</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4750" />
+      <source>&amp;Execute Make</source>
+      <translation>&amp;Make ausführen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4756" />
+      <source>Perform a 'make' run.</source>
+      <translation>Führt eine 'make' Lauf aus.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4758" />
+      <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="6618" />
+      <location filename="../Project/Project.py" line="4768" />
+      <source>Test for Changes</source>
+      <translation>Auf Änderungen prüfen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4769" />
       <source>&amp;Test for Changes</source>
       <translation>Auf Änderungen &amp;prüfen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4757" />
+      <location filename="../Project/Project.py" line="4776" />
       <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="4760" />
-      <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="4778" />
-      <source>Create SBOM File</source>
-      <translation>STL Datei erzeugen</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4779" />
+      <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="4797" />
+      <source>Create SBOM File</source>
+      <translation>STL Datei erzeugen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4798" />
       <source>Create &amp;SBOM File</source>
       <translation>&amp;STL Datei erzeugen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4786" />
+      <location filename="../Project/Project.py" line="4805" />
       <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="4789" />
+      <location filename="../Project/Project.py" line="4808" />
       <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="4806" />
+      <location filename="../Project/Project.py" line="4825" />
       <source>About Black</source>
       <translation>Über Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4826" />
       <source>&amp;Black</source>
       <translation>&amp;Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4813" />
+      <location filename="../Project/Project.py" line="4832" />
       <source>Show some information about 'Black'.</source>
       <translation>Gibt ein paar Informationen zu 'Black' aus.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4815" />
+      <location filename="../Project/Project.py" line="4834" />
       <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="4827" />
+      <location filename="../Project/Project.py" line="4846" />
       <source>Format Code</source>
       <translation>Code formatieren</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4847" />
       <source>&amp;Format Code</source>
       <translation>Code &amp;formatieren</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4835" />
+      <location filename="../Project/Project.py" line="4854" />
       <source>Format the project sources with 'Black'.</source>
       <translation>Formatiert die Projektquellen mit 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4838" />
+      <location filename="../Project/Project.py" line="4857" />
       <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="4850" />
+      <location filename="../Project/Project.py" line="4869" />
       <source>Check Code Formatting</source>
       <translation>Code Umformatierung prüfen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4851" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>&amp;Check Code Formatting</source>
       <translation>&amp;Code Umformatierung prüfen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4858" />
-      <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="4863" />
-      <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="4876" />
-      <source>Code Formatting Diff</source>
-      <translation>Diff Code Umformatierung</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4877" />
+      <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="4882" />
+      <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="4895" />
+      <source>Code Formatting Diff</source>
+      <translation>Diff Code Umformatierung</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
       <source>Code Formatting &amp;Diff</source>
       <translation>&amp;Diff Code Umformatierung</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4884" />
+      <location filename="../Project/Project.py" line="4903" />
       <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="4890" />
+      <location filename="../Project/Project.py" line="4909" />
       <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="5055" />
-      <location filename="../Project/Project.py" line="5005" />
-      <location filename="../Project/Project.py" line="5004" />
-      <location filename="../Project/Project.py" line="4904" />
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="5074" />
+      <location filename="../Project/Project.py" line="5024" />
+      <location filename="../Project/Project.py" line="5023" />
+      <location filename="../Project/Project.py" line="4923" />
+      <location filename="../Project/Project.py" line="4922" />
       <source>Configure</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4930" />
       <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="4916" />
+      <location filename="../Project/Project.py" line="4935" />
       <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="4932" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>About isort</source>
       <translation>Über isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4933" />
+      <location filename="../Project/Project.py" line="4952" />
       <source>&amp;isort</source>
       <translation>&amp;isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4939" />
+      <location filename="../Project/Project.py" line="4958" />
       <source>Show some information about 'isort'.</source>
       <translation>Gibt ein paar Informationen zu 'isort' aus.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4960" />
       <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="4954" />
-      <location filename="../Project/Project.py" line="4953" />
+      <location filename="../Project/Project.py" line="4973" />
+      <location filename="../Project/Project.py" line="4972" />
       <source>Sort Imports</source>
       <translation>Imports Sortieren</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4961" />
+      <location filename="../Project/Project.py" line="4980" />
       <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="4964" />
+      <location filename="../Project/Project.py" line="4983" />
       <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="4978" />
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4997" />
+      <location filename="../Project/Project.py" line="4996" />
       <source>Imports Sorting Diff</source>
       <translation>Diff der Imports Sortierung</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4985" />
+      <location filename="../Project/Project.py" line="5004" />
       <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="4991" />
+      <location filename="../Project/Project.py" line="5010" />
       <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="5012" />
+      <location filename="../Project/Project.py" line="5031" />
       <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="5018" />
+      <location filename="../Project/Project.py" line="5037" />
       <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="5034" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Install Project</source>
       <translation>Projekt installieren</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5035" />
+      <location filename="../Project/Project.py" line="5054" />
       <source>&amp;Install Project</source>
       <translation>Projekt &amp;installieren</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5042" />
+      <location filename="../Project/Project.py" line="5061" />
       <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="5045" />
+      <location filename="../Project/Project.py" line="5064" />
       <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="5056" />
+      <location filename="../Project/Project.py" line="5075" />
       <source>&amp;Configure</source>
       <translation>&amp;Einstellungen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5063" />
+      <location filename="../Project/Project.py" line="5082" />
       <source>Configure the embedded environment.</source>
       <translation>Konfiguriert die eingebettete Umgebung.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
-      <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="5076" />
-      <source>Upgrade</source>
-      <translation>Aktualisieren</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5077" />
-      <source>&amp;Upgrade</source>
-      <translation>&amp;Aktualisieren</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5083" />
-      <source>Upgrade the embedded environment.</source>
-      <translation>Aktualisiert die eingebettete Umgebung.</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5085" />
-      <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="5097" />
-      <source>Recreate</source>
-      <translation>Neu erzeugen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5098" />
-      <source>&amp;Recreate</source>
-      <translation>&amp;Neu erzeugen</translation>
+      <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="5095" />
+      <source>Upgrade</source>
+      <translation>Aktualisieren</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5096" />
+      <source>&amp;Upgrade</source>
+      <translation>&amp;Aktualisieren</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5102" />
+      <source>Upgrade the embedded environment.</source>
+      <translation>Aktualisiert die eingebettete Umgebung.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5104" />
+      <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="5116" />
+      <source>Recreate</source>
+      <translation>Neu erzeugen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5117" />
+      <source>&amp;Recreate</source>
+      <translation>&amp;Neu erzeugen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5123" />
       <source>Recreate the embedded environment.</source>
       <translation>Erzeugt die eingebettete Umgebung neu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5106" />
+      <location filename="../Project/Project.py" line="5125" />
       <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="5135" />
-      <source>&amp;Project</source>
-      <translation>&amp;Projekt</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5136" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Zu&amp;letzt geöffnete Projekte</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5137" />
-      <source>Session</source>
-      <translation>Sitzung</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5138" />
-      <source>Debugger</source>
-      <translation>Debugger</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5139" />
-      <source>Embedded Environment</source>
-      <translation>Eingebettete Umgebung</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5141" />
-      <source>Project-T&amp;ools</source>
-      <translation>Projekt&amp;werkzeuge</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5142" />
-      <source>&amp;Version Control</source>
-      <translation>&amp;Versionskontrolle</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5146" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Prüfen</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5148" />
-      <source>Code &amp;Formatting</source>
-      <translation>Code &amp;Formatierung</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5150" />
-      <source>Sho&amp;w</source>
-      <translation>&amp;Zeige</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagramme</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Pac&amp;kagers</source>
-      <translation>Pa&amp;ketierer</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5153" />
-      <source>Source &amp;Documentation</source>
-      <translation>&amp;Quelltextdokumentation</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5155" />
-      <source>Make</source>
-      <translation>Make</translation>
+      <source>&amp;Project</source>
+      <translation>&amp;Projekt</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5156" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Zu&amp;letzt geöffnete Projekte</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5157" />
+      <source>Session</source>
+      <translation>Sitzung</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5158" />
+      <source>Debugger</source>
+      <translation>Debugger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5159" />
+      <source>Embedded Environment</source>
+      <translation>Eingebettete Umgebung</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5161" />
+      <source>Project-T&amp;ools</source>
+      <translation>Projekt&amp;werkzeuge</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5162" />
+      <source>&amp;Version Control</source>
+      <translation>&amp;Versionskontrolle</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5166" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Prüfen</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5168" />
+      <source>Code &amp;Formatting</source>
+      <translation>Code &amp;Formatierung</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5170" />
+      <source>Sho&amp;w</source>
+      <translation>&amp;Zeige</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5171" />
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagramme</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Pac&amp;kagers</source>
+      <translation>Pa&amp;ketierer</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
+      <source>Source &amp;Documentation</source>
+      <translation>&amp;Quelltextdokumentation</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5175" />
+      <source>Make</source>
+      <translation>Make</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5176" />
       <source>Other Tools</source>
       <translation>Weitere Werkzeuge</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5317" />
-      <location filename="../Project/Project.py" line="5314" />
+      <location filename="../Project/Project.py" line="5337" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>Project</source>
       <translation>Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5378" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Clear</source>
       <translation>&amp;Löschen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5557" />
       <source>Search New Files</source>
       <translation>Neue Dateien suchen</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5558" />
       <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="5687" />
-      <location filename="../Project/Project.py" line="5674" />
+      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5694" />
       <source>Version Control System</source>
       <translation>Versionskontrollsystem</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5695" />
       <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="5688" />
+      <location filename="../Project/Project.py" line="5708" />
       <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="5836" />
+      <location filename="../Project/Project.py" line="5856" />
       <source>Coverage Data</source>
       <translation>Quelltext Abdeckungsdaten</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5882" />
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5902" />
+      <location filename="../Project/Project.py" line="5857" />
       <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="5849" />
+      <location filename="../Project/Project.py" line="5869" />
       <source>Code Coverage</source>
       <translation>Quelltext Abdeckung</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5850" />
+      <location filename="../Project/Project.py" line="5870" />
       <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="5895" />
+      <location filename="../Project/Project.py" line="5915" />
       <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="5947" />
+      <location filename="../Project/Project.py" line="5967" />
       <source>Include module names?</source>
       <translation>Modulnamen anzeigen?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6081" />
+      <location filename="../Project/Project.py" line="6101" />
       <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="6132" />
+      <location filename="../Project/Project.py" line="6152" />
       <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="6421" />
-      <location filename="../Project/Project.py" line="6379" />
-      <location filename="../Project/Project.py" line="6333" />
-      <location filename="../Project/Project.py" line="6322" />
-      <location filename="../Project/Project.py" line="6304" />
-      <location filename="../Project/Project.py" line="6271" />
-      <location filename="../Project/Project.py" line="6241" />
-      <location filename="../Project/Project.py" line="6213" />
-      <location filename="../Project/Project.py" line="6183" />
-      <location filename="../Project/Project.py" line="6169" />
-      <location filename="../Project/Project.py" line="6152" />
+      <location filename="../Project/Project.py" line="6441" />
+      <location filename="../Project/Project.py" line="6399" />
+      <location filename="../Project/Project.py" line="6353" />
+      <location filename="../Project/Project.py" line="6342" />
+      <location filename="../Project/Project.py" line="6324" />
+      <location filename="../Project/Project.py" line="6291" />
+      <location filename="../Project/Project.py" line="6261" />
+      <location filename="../Project/Project.py" line="6233" />
+      <location filename="../Project/Project.py" line="6203" />
+      <location filename="../Project/Project.py" line="6189" />
+      <location filename="../Project/Project.py" line="6172" />
       <source>Create Plugin Archive</source>
       <translation>Erzeuge Plugin Archiv</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6153" />
+      <location filename="../Project/Project.py" line="6173" />
       <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="6170" />
+      <location filename="../Project/Project.py" line="6190" />
       <source>Select package lists:</source>
       <translation>Wähle Paketlisten:</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6184" />
+      <location filename="../Project/Project.py" line="6204" />
       <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="6192" />
+      <location filename="../Project/Project.py" line="6212" />
       <source>Creating plugin archives...</source>
       <translation>Erzeuge Plugin Archive...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6193" />
+      <location filename="../Project/Project.py" line="6213" />
       <source>Abort</source>
       <translation>Abbruch</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6196" />
+      <location filename="../Project/Project.py" line="6216" />
       <source>%v/%m Archives</source>
       <translation>%v/%m Archive</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6214" />
+      <location filename="../Project/Project.py" line="6234" />
       <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="6242" />
+      <location filename="../Project/Project.py" line="6262" />
       <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="6272" />
+      <location filename="../Project/Project.py" line="6292" />
       <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="6305" />
+      <location filename="../Project/Project.py" line="6325" />
       <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="6323" />
+      <location filename="../Project/Project.py" line="6343" />
       <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="6334" />
+      <location filename="../Project/Project.py" line="6354" />
       <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="6380" />
+      <location filename="../Project/Project.py" line="6400" />
       <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="6422" />
+      <location filename="../Project/Project.py" line="6442" />
       <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="6544" />
+      <location filename="../Project/Project.py" line="6564" />
       <source>The make process did not start.</source>
       <translation>Der make Prozess ist nicht gestartet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6593" />
+      <location filename="../Project/Project.py" line="6613" />
       <source>The make process crashed.</source>
       <translation>Der make Prozess ist abgestürzt.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6601" />
+      <location filename="../Project/Project.py" line="6621" />
       <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="6606" />
+      <location filename="../Project/Project.py" line="6626" />
       <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="6622" />
+      <location filename="../Project/Project.py" line="6642" />
       <source>The makefile contains errors.</source>
       <translation>Die make Datei enthält Fehler.</translation>
     </message>
@@ -57826,22 +57847,22 @@
   <context>
     <name>ProjectFile</name>
     <message>
-      <location filename="../Project/ProjectFile.py" line="109" />
+      <location filename="../Project/ProjectFile.py" line="108" />
       <source>Save Project File</source>
       <translation>Projektdatei speichern</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFile.py" line="110" />
+      <location filename="../Project/ProjectFile.py" line="109" />
       <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Projektdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectFile.py" line="134" />
+      <source>Read Project File</source>
+      <translation>Projektdatei lesen</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFile.py" line="135" />
-      <source>Read Project File</source>
-      <translation>Projektdatei lesen</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFile.py" line="136" />
       <source>&lt;p&gt;The project 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 Projektdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -59705,265 +59726,265 @@
   <context>
     <name>ProjectTranslationsBrowser</name>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="99" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="76" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="74" />
       <source>Translations</source>
       <translation>Übersetzungen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="79" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="77" />
       <source>&lt;b&gt;Project Translations Browser&lt;/b&gt;&lt;p&gt;This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Projektübersetzungen-Browser&lt;/b&gt;&lt;p&gt;Dies bietet eine Übersicht aller im Projekt enthaltenen Übersetzungen an. Verschieden Aktionen können über das Kontextmenü ausgeführt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="95" />
       <source>Translation Files ({0})</source>
       <translation>Übersetzungsdateien ({0})</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="98" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="96" />
       <source>Translation Files</source>
       <translation>Übersetzungsdateien</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="109" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="107" />
       <source>Translations Browser</source>
       <translation>Übersetzungenbrowser</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="239" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="183" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="237" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="181" />
       <source>Generate translation</source>
       <translation>Übersetzung erzeugen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="249" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="247" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation (with obsolete)</source>
       <translation>Übersetzung erzeugen (mit überholten Texten)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="538" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="360" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="258" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="194" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="536" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="507" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="330" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="256" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="192" />
       <source>Generate all translations</source>
       <translation>Alle Übersetzungen erzeugen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="513" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="369" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="267" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="198" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="545" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="511" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="367" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="196" />
       <source>Generate all translations (with obsolete)</source>
       <translation>Alle Übersetzungen erzeugen (mit überholten Texten)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="419" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="417" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
       <source>Open in Qt-Linguist</source>
       <translation>Mit Qt Linguist öffnen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="423" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="279" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="206" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="471" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="421" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="277" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="204" />
       <source>Open in Editor</source>
       <translation>Mit Editor öffnen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="286" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="284" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
       <source>Release translation</source>
       <translation>Übersetzung freigeben</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="518" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="377" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="341" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="295" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="553" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="516" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="375" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="339" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="293" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="214" />
       <source>Release all translations</source>
       <translation>Alle Übersetzungen freigeben</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="220" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
       <source>Preview translation</source>
       <translation>Übersetzungsvorschau</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="346" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="344" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Preview all translations</source>
       <translation>Übersetzungsvorschau (alle)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="441" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="352" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="527" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
       <source>Extract messages</source>
       <translation>Texte extrahieren</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="469" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="275" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="273" />
       <source>Open</source>
       <translation>Öffnen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="488" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="302" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="486" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="300" />
       <source>Remove from project</source>
       <translation>Aus dem Projekt entfernen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="561" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="491" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="305" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="559" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="489" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
       <source>Delete</source>
       <translation>Löschen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="384" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="309" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="307" />
       <source>Add translation...</source>
       <translation>Übersetzung hinzufügen...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="568" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="566" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="385" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
       <source>Add translation files...</source>
       <translation>Übersetzungsdateien hinzufügen...</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="569" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="313" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Pfad in die Zwischenablage kopieren</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="492" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="388" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="315" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Pfad in die Zwischenablage kopieren</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="573" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="390" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Configure...</source>
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="448" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
       <source>Generate translations</source>
       <translation>Übersetzungen erzeugen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="460" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="458" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="410" />
       <source>Generate translations (with obsolete)</source>
       <translation>Übersetzungen erzeugen (mit überholten Texten)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="480" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="478" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="426" />
       <source>Release translations</source>
       <translation>Übersetzungen freigeben</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="432" />
       <source>Preview translations</source>
       <translation>Übersetzungsvorschau</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="835" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="833" />
       <source>Delete translation files</source>
       <translation>Übersetzungsdateien löschen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="836" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="834" />
       <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="1504" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1001" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="961" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1502" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="999" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="959" />
       <source>Write temporary project file</source>
       <translation>Temporäre Projektdatei schreiben</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1505" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1241" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="962" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1239" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="960" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Keine Überstzungsdateien (*.ts) ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1002" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1000" />
       <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="1240" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1123" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1111" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1238" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1121" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1109" />
       <source>Translation file generation</source>
       <translation>Übersetzungsdatei erzeugen</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1112" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1110" />
       <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="1118" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1116" />
       <source> The process has crashed.</source>
       <translation> Der Prouess ist abgestürzt.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1122" />
       <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="1534" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1532" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1292" />
       <source>Process Generation Error</source>
       <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1337" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1295" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1335" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1293" />
       <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="1427" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1425" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1405" />
       <source>Translation file release</source>
       <translation>Übersetzungsdatei freigeben</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1406" />
       <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="1428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1426" />
       <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="1535" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1533" />
       <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>
@@ -83186,2149 +83207,2149 @@
       <translation>Erstelle Signal/Slot-Verbindungen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="574" />
+      <location filename="../UI/UserInterface.py" line="573" />
       <source>Initializing Tools...</source>
       <translation>Initialisiere Werkzeuge...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="585" />
+      <location filename="../UI/UserInterface.py" line="584" />
       <source>Registering Objects...</source>
       <translation>Registriere Objekte...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="619" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Initializing Actions...</source>
       <translation>Initialisiere Aktionen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="621" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Initializing Menus...</source>
       <translation>Initialisiere Menüs...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="623" />
+      <location filename="../UI/UserInterface.py" line="622" />
       <source>Initializing Toolbars...</source>
       <translation>Initialisiere Werkzeugleisten...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="625" />
+      <location filename="../UI/UserInterface.py" line="624" />
       <source>Initializing Statusbar...</source>
       <translation>Initialisiere Statuszeile...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Single Application Server...</source>
       <translation>Initialisiere Applikationsserver...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="658" />
+      <location filename="../UI/UserInterface.py" line="657" />
       <source>Initializing Plugins...</source>
       <translation>Initialisiere Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="661" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Activating Plugins...</source>
       <translation>Aktiviere Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="663" />
+      <location filename="../UI/UserInterface.py" line="662" />
       <source>Generating Plugins Toolbars...</source>
       <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="666" />
+      <location filename="../UI/UserInterface.py" line="665" />
       <source>Cleaning Plugins Download Area...</source>
       <translation>Bereinige den Plugins Downloadbereich...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="673" />
+      <location filename="../UI/UserInterface.py" line="672" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Lade Toolbarmanager...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="680" />
       <source>Setting View Profile...</source>
       <translation>Stelle Ansichtenprofil ein...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="693" />
       <source>Reading Tasks...</source>
       <translation>Lese Aufgaben...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="699" />
+      <location filename="../UI/UserInterface.py" line="698" />
       <source>Reading Templates...</source>
       <translation>Lese Vorlagen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="703" />
       <source>Starting Debugger...</source>
       <translation>Starte Debugger...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
-      <location filename="../UI/UserInterface.py" line="1066" />
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1065" />
       <source>Left Toolbox</source>
       <translation>Linke Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2224" />
-      <location filename="../UI/UserInterface.py" line="1076" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1075" />
       <source>Horizontal Toolbox</source>
       <translation>Horizontale Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2201" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1085" />
       <source>Right Toolbox</source>
       <translation>Rechte Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2020" />
-      <location filename="../UI/UserInterface.py" line="1279" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2019" />
+      <location filename="../UI/UserInterface.py" line="1278" />
+      <location filename="../UI/UserInterface.py" line="1095" />
       <source>Multiproject-Viewer</source>
       <translation>Mehrfachprojektanzeige</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1997" />
+      <location filename="../UI/UserInterface.py" line="1284" />
+      <location filename="../UI/UserInterface.py" line="1101" />
+      <source>Project-Viewer</source>
+      <translation>Projektanzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2559" />
+      <location filename="../UI/UserInterface.py" line="2558" />
+      <location filename="../UI/UserInterface.py" line="1291" />
+      <location filename="../UI/UserInterface.py" line="1108" />
+      <source>Find/Replace In Files</source>
+      <translation>Suchen/Ersetzen in Dateien</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1298" />
+      <location filename="../UI/UserInterface.py" line="1115" />
+      <source>Find File</source>
+      <translation>Datei suchen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1304" />
+      <location filename="../UI/UserInterface.py" line="1121" />
+      <source>VCS Status</source>
+      <translation>VCS-Status</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1311" />
+      <location filename="../UI/UserInterface.py" line="1128" />
+      <source>Template-Viewer</source>
+      <translation>Vorlagen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2085" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1135" />
+      <source>File-Browser</source>
+      <translation>Dateibrowser</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1325" />
+      <location filename="../UI/UserInterface.py" line="1142" />
+      <source>Symbols</source>
+      <translation>Symbole</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2041" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Debug-Viewer</source>
+      <translation>Debuganzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2412" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1159" />
+      <source>Code Documentation Viewer</source>
+      <translation>Dokumentationsanzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2628" />
+      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="1361" />
+      <location filename="../UI/UserInterface.py" line="1166" />
+      <source>Help Viewer</source>
+      <translation>Hilfeanzeiger</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1367" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>Plugin Repository</source>
+      <translation>Plugin-Repository</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1373" />
+      <location filename="../UI/UserInterface.py" line="1178" />
+      <source>Virtual Environments</source>
+      <translation>Virtuelle Umgebungen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2440" />
+      <location filename="../UI/UserInterface.py" line="2439" />
+      <location filename="../UI/UserInterface.py" line="1378" />
+      <location filename="../UI/UserInterface.py" line="1183" />
+      <source>PyPI</source>
+      <translation>PyPI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="2461" />
+      <location filename="../UI/UserInterface.py" line="1385" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Conda</source>
+      <translation>Conda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1392" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Cooperation</source>
+      <translation>Zusammenarbeit</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2340" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
+      <source>IRC</source>
+      <translation>IRC</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="2483" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>MicroPython</source>
+      <translation>MicroPython</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2063" />
+      <location filename="../UI/UserInterface.py" line="1410" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Shell</source>
+      <translation>Shell</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2129" />
+      <location filename="../UI/UserInterface.py" line="1416" />
+      <location filename="../UI/UserInterface.py" line="1219" />
+      <source>Task-Viewer</source>
+      <translation>Aufgabenanzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2107" />
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1223" />
+      <source>Log-Viewer</source>
+      <translation>Ausgabefenster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1429" />
+      <location filename="../UI/UserInterface.py" line="1230" />
+      <source>Numbers</source>
+      <translation>Zahlen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1815" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} – Passiver Modus</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1822" />
+      <location filename="../UI/UserInterface.py" line="1818" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} – {1} – Passiver Modus</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1826" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} . {1} – {2} – Passiver Modus</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1850" />
+      <source>Quit</source>
+      <translation>Beenden</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1852" />
+      <source>&amp;Quit</source>
+      <translation>B&amp;eenden</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1853" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1858" />
+      <source>Quit the IDE</source>
+      <translation>Beenden der Entwicklungsumgebung</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1860" />
+      <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="1874" />
+      <location filename="../UI/UserInterface.py" line="1872" />
+      <source>Restart</source>
+      <translation>Neu starten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Shift+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1880" />
+      <source>Restart the IDE</source>
+      <translation>Neustart der Entwicklungsumgebung</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
+      <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="1900" />
+      <location filename="../UI/UserInterface.py" line="1893" />
+      <source>Save session</source>
+      <translation>Sitzung speichern</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1894" />
+      <source>Save session...</source>
+      <translation>Sitzung speichern...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1902" />
+      <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="7649" />
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Load session</source>
+      <translation>Sitzung laden</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1913" />
+      <source>Load session...</source>
+      <translation>Sitzung laden...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1921" />
+      <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="1931" />
+      <source>New Window</source>
+      <translation>Neues Fenster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1933" />
+      <source>New &amp;Window</source>
+      <translation>Neues &amp;Fenster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1934" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>Open a new eric instance</source>
+      <translation>Öffnet eine neue eric Instanz</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1941" />
+      <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="1955" />
+      <location filename="../UI/UserInterface.py" line="1953" />
+      <source>Edit Profile</source>
+      <translation>Editieren-Profil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
+      <source>Activate the edit view profile</source>
+      <translation>Aktiviert das Editieren-Ansichtsprofil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1964" />
+      <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="1977" />
+      <location filename="../UI/UserInterface.py" line="1975" />
+      <source>Debug Profile</source>
+      <translation>Debuggen-Profil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1984" />
+      <source>Activate the debug view profile</source>
+      <translation>Aktiviert das Debuggen-Ansichtsprofil</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1986" />
+      <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="1998" />
-      <location filename="../UI/UserInterface.py" line="1285" />
-      <location filename="../UI/UserInterface.py" line="1102" />
-      <source>Project-Viewer</source>
-      <translation>Projektanzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2560" />
-      <location filename="../UI/UserInterface.py" line="2559" />
-      <location filename="../UI/UserInterface.py" line="1292" />
-      <location filename="../UI/UserInterface.py" line="1109" />
-      <source>Find/Replace In Files</source>
-      <translation>Suchen/Ersetzen in Dateien</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
-      <location filename="../UI/UserInterface.py" line="2582" />
-      <location filename="../UI/UserInterface.py" line="1299" />
-      <location filename="../UI/UserInterface.py" line="1116" />
-      <source>Find File</source>
-      <translation>Datei suchen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1305" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>VCS Status</source>
-      <translation>VCS-Status</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
-      <location filename="../UI/UserInterface.py" line="1312" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Template-Viewer</source>
-      <translation>Vorlagen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2086" />
-      <location filename="../UI/UserInterface.py" line="1319" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>File-Browser</source>
-      <translation>Dateibrowser</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Symbols</source>
-      <translation>Symbole</translation>
+      <source>&amp;Project-Viewer</source>
+      <translation>&amp;Projektanzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2005" />
+      <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="2008" />
+      <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="2020" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>&amp;Mehrfachprojektanzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2027" />
+      <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="2030" />
+      <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="2042" />
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1153" />
-      <source>Debug-Viewer</source>
-      <translation>Debuganzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2414" />
-      <location filename="../UI/UserInterface.py" line="2413" />
-      <location filename="../UI/UserInterface.py" line="1355" />
-      <location filename="../UI/UserInterface.py" line="1160" />
-      <source>Code Documentation Viewer</source>
-      <translation>Dokumentationsanzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2629" />
-      <location filename="../UI/UserInterface.py" line="2628" />
-      <location filename="../UI/UserInterface.py" line="1362" />
-      <location filename="../UI/UserInterface.py" line="1167" />
-      <source>Help Viewer</source>
-      <translation>Hilfeanzeiger</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <location filename="../UI/UserInterface.py" line="2509" />
-      <location filename="../UI/UserInterface.py" line="2508" />
-      <location filename="../UI/UserInterface.py" line="1368" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Plugin Repository</source>
-      <translation>Plugin-Repository</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
-      <location filename="../UI/UserInterface.py" line="2532" />
-      <location filename="../UI/UserInterface.py" line="1374" />
-      <location filename="../UI/UserInterface.py" line="1179" />
-      <source>Virtual Environments</source>
-      <translation>Virtuelle Umgebungen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2441" />
-      <location filename="../UI/UserInterface.py" line="2440" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1184" />
-      <source>PyPI</source>
-      <translation>PyPI</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2463" />
-      <location filename="../UI/UserInterface.py" line="2462" />
-      <location filename="../UI/UserInterface.py" line="1386" />
-      <location filename="../UI/UserInterface.py" line="1189" />
-      <source>Conda</source>
-      <translation>Conda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1393" />
-      <location filename="../UI/UserInterface.py" line="1196" />
-      <source>Cooperation</source>
-      <translation>Zusammenarbeit</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
-      <location filename="../UI/UserInterface.py" line="1397" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>IRC</source>
-      <translation>IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
-      <location filename="../UI/UserInterface.py" line="2484" />
-      <location filename="../UI/UserInterface.py" line="1403" />
-      <location filename="../UI/UserInterface.py" line="1208" />
-      <source>MicroPython</source>
-      <translation>MicroPython</translation>
+      <source>&amp;Debug-Viewer</source>
+      <translation>&amp;Debuganzeige</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2049" />
+      <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="2052" />
+      <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="2064" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Shell</source>
-      <translation>Shell</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2130" />
-      <location filename="../UI/UserInterface.py" line="1417" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>Task-Viewer</source>
-      <translation>Aufgabenanzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2108" />
-      <location filename="../UI/UserInterface.py" line="1423" />
-      <location filename="../UI/UserInterface.py" line="1224" />
-      <source>Log-Viewer</source>
-      <translation>Ausgabefenster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1430" />
-      <location filename="../UI/UserInterface.py" line="1231" />
-      <source>Numbers</source>
-      <translation>Zahlen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1816" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} – Passiver Modus</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1823" />
-      <location filename="../UI/UserInterface.py" line="1819" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} – {1} – Passiver Modus</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} . {1} – {2} – Passiver Modus</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1851" />
-      <source>Quit</source>
-      <translation>Beenden</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <source>&amp;Quit</source>
-      <translation>B&amp;eenden</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1854" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>Quit the IDE</source>
-      <translation>Beenden der Entwicklungsumgebung</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1861" />
-      <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="1875" />
-      <location filename="../UI/UserInterface.py" line="1873" />
-      <source>Restart</source>
-      <translation>Neu starten</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Shift+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1881" />
-      <source>Restart the IDE</source>
-      <translation>Neustart der Entwicklungsumgebung</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1883" />
-      <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="1901" />
-      <location filename="../UI/UserInterface.py" line="1894" />
-      <source>Save session</source>
-      <translation>Sitzung speichern</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>Save session...</source>
-      <translation>Sitzung speichern...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1903" />
-      <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="7650" />
-      <location filename="../UI/UserInterface.py" line="1920" />
-      <location filename="../UI/UserInterface.py" line="1913" />
-      <source>Load session</source>
-      <translation>Sitzung laden</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1914" />
-      <source>Load session...</source>
-      <translation>Sitzung laden...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1922" />
-      <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="1932" />
-      <source>New Window</source>
-      <translation>Neues Fenster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1934" />
-      <source>New &amp;Window</source>
-      <translation>Neues &amp;Fenster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1940" />
-      <source>Open a new eric instance</source>
-      <translation>Öffnet eine neue eric Instanz</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1942" />
-      <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="1956" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <source>Edit Profile</source>
-      <translation>Editieren-Profil</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1963" />
-      <source>Activate the edit view profile</source>
-      <translation>Aktiviert das Editieren-Ansichtsprofil</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1965" />
-      <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="1978" />
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>Debug Profile</source>
-      <translation>Debuggen-Profil</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1985" />
-      <source>Activate the debug view profile</source>
-      <translation>Aktiviert das Debuggen-Ansichtsprofil</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1987" />
-      <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="1999" />
-      <source>&amp;Project-Viewer</source>
-      <translation>&amp;Projektanzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2000" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2006" />
-      <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="2009" />
-      <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="2021" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>&amp;Mehrfachprojektanzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2028" />
-      <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="2031" />
-      <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="2043" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>&amp;Debuganzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2050" />
-      <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="2053" />
-      <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>
+      <source>&amp;Shell</source>
+      <translation>&amp;Shell</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&amp;Shell</source>
-      <translation>&amp;Shell</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2072" />
+      <location filename="../UI/UserInterface.py" line="2071" />
       <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="2075" />
+      <location filename="../UI/UserInterface.py" line="2074" />
       <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="2086" />
+      <source>&amp;File-Browser</source>
+      <translation>Datei&amp;browser</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&amp;File-Browser</source>
-      <translation>Datei&amp;browser</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2094" />
+      <location filename="../UI/UserInterface.py" line="2093" />
       <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="2097" />
+      <location filename="../UI/UserInterface.py" line="2096" />
       <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="2108" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation>&amp;Ausgabefenster</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2109" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation>&amp;Ausgabefenster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2116" />
+      <location filename="../UI/UserInterface.py" line="2115" />
       <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="2119" />
+      <location filename="../UI/UserInterface.py" line="2118" />
       <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="2130" />
+      <source>&amp;Task-Viewer</source>
+      <translation>&amp;Aufgabenanzeige</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&amp;Task-Viewer</source>
-      <translation>&amp;Aufgabenanzeige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2138" />
+      <location filename="../UI/UserInterface.py" line="2137" />
       <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="2141" />
+      <location filename="../UI/UserInterface.py" line="2140" />
       <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="2153" />
+      <source>Templ&amp;ate-Viewer</source>
+      <translation>&amp;Vorlagen</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2154" />
-      <source>Templ&amp;ate-Viewer</source>
-      <translation>&amp;Vorlagen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2161" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <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="2164" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <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="2179" />
+      <location filename="../UI/UserInterface.py" line="2178" />
       <source>&amp;Left Toolbox</source>
       <translation>&amp;Linke Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2186" />
+      <location filename="../UI/UserInterface.py" line="2185" />
       <source>Toggle the Left Toolbox window</source>
       <translation>Schalte das Fenster der linken Werkzeugbox um</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2187" />
       <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="2202" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Right Toolbox</source>
       <translation>&amp;Rechte Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2209" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Right Toolbox window</source>
       <translation>Schalte das Fenster der rechten Werkzeugbox um</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2211" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <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="2225" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>&amp;Horizontale Werkzeugbox</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2232" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2234" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <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="2246" />
+      <source>Left Sidebar</source>
+      <translation>Linke Seitenleiste</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2247" />
-      <source>Left Sidebar</source>
-      <translation>Linke Seitenleiste</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
       <source>&amp;Left Sidebar</source>
       <translation>&amp;Linke Seitenleiste</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2255" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the left sidebar window</source>
       <translation>Schalte das Fenster der linken Seitenleiste um</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2257" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2269" />
+      <source>Right Sidebar</source>
+      <translation>Rechte Seitenleiste</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2270" />
-      <source>Right Sidebar</source>
-      <translation>Rechte Seitenleiste</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2271" />
       <source>&amp;Right Sidebar</source>
       <translation>&amp;Rechte Seitenleiste</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2278" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the right sidebar window</source>
       <translation>Schalte das Fenster der rechten Seitenleiste um</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2280" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2292" />
+      <source>Bottom Sidebar</source>
+      <translation>Untere Seitenleiste</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2293" />
-      <source>Bottom Sidebar</source>
-      <translation>Untere Seitenleiste</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2294" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Untere Seitenleiste</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2301" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Schalte das Fenster der unteren Seitenleiste um</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2303" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <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="2315" />
+      <source>Cooperation-Viewer</source>
+      <translation>Zusammenarbeit</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2316" />
-      <source>Cooperation-Viewer</source>
-      <translation>Zusammenarbeit</translation>
+      <source>Co&amp;operation-Viewer</source>
+      <translation>&amp;Zusammenarbeit</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2317" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation>&amp;Zusammenarbeit</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2324" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <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="2327" />
+      <location filename="../UI/UserInterface.py" line="2326" />
       <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="2341" />
+      <source>&amp;IRC</source>
+      <translation>&amp;IRC</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2342" />
-      <source>&amp;IRC</source>
-      <translation>&amp;IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2349" />
+      <location filename="../UI/UserInterface.py" line="2348" />
       <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="2352" />
+      <location filename="../UI/UserInterface.py" line="2351" />
       <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="2362" />
+      <source>Symbols-Viewer</source>
+      <translation>Symbolanzeiger</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2363" />
-      <source>Symbols-Viewer</source>
-      <translation>Symbolanzeiger</translation>
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>S&amp;ymbolanzeiger</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2364" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>S&amp;ymbolanzeiger</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2371" />
+      <location filename="../UI/UserInterface.py" line="2370" />
       <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="2374" />
+      <location filename="../UI/UserInterface.py" line="2373" />
       <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="2387" />
+      <source>Numbers-Viewer</source>
+      <translation>Zahlenanzeiger</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2388" />
-      <source>Numbers-Viewer</source>
-      <translation>Zahlenanzeiger</translation>
+      <source>Num&amp;bers-Viewer</source>
+      <translation>Za&amp;hlenanzeiger</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2389" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>Za&amp;hlenanzeiger</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2396" />
+      <location filename="../UI/UserInterface.py" line="2395" />
       <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="2399" />
+      <location filename="../UI/UserInterface.py" line="2398" />
       <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="2415" />
+      <location filename="../UI/UserInterface.py" line="2414" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2421" />
+      <location filename="../UI/UserInterface.py" line="2420" />
       <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="2426" />
+      <location filename="../UI/UserInterface.py" line="2425" />
       <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="2442" />
+      <location filename="../UI/UserInterface.py" line="2441" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
+      <location filename="../UI/UserInterface.py" line="2447" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation>Schalte den Eingabefokus auf das PyPI-Fenster um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2451" />
+      <location filename="../UI/UserInterface.py" line="2450" />
       <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="2464" />
+      <location filename="../UI/UserInterface.py" line="2463" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2470" />
+      <location filename="../UI/UserInterface.py" line="2469" />
       <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="2473" />
+      <location filename="../UI/UserInterface.py" line="2472" />
       <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="2486" />
+      <location filename="../UI/UserInterface.py" line="2485" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2492" />
+      <location filename="../UI/UserInterface.py" line="2491" />
       <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="2495" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <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="2510" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation>Ctrl+Alt+Shift+R</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2516" />
+      <location filename="../UI/UserInterface.py" line="2515" />
       <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="2519" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2534" />
+      <location filename="../UI/UserInterface.py" line="2533" />
       <source>Ctrl+Alt+V</source>
       <translation>Ctrl+Alt+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2540" />
+      <location filename="../UI/UserInterface.py" line="2539" />
       <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="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
       <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="2561" />
+      <location filename="../UI/UserInterface.py" line="2560" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation>Ctrl+Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
+      <location filename="../UI/UserInterface.py" line="2566" />
       <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="2570" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <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="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation>Ctrl+Alt+Shift+L</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2590" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <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="2593" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <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="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <source>VCS Status List</source>
+      <translation>VCS Statusliste</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
-      <location filename="../UI/UserInterface.py" line="2606" />
-      <source>VCS Status List</source>
-      <translation>VCS Statusliste</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Alt+Shift+V</source>
       <translation>Alt+Shift+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2614" />
+      <location filename="../UI/UserInterface.py" line="2613" />
       <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="2617" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <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="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>Alt+Shift+H</source>
       <translation>Alt+Shift+H</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2636" />
+      <location filename="../UI/UserInterface.py" line="2635" />
       <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="2639" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <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="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
       <source>What's This?</source>
       <translation>Was ist das?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <source>&amp;What's This?</source>
+      <translation>&amp;Was ist das?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2654" />
-      <source>&amp;What's This?</source>
-      <translation>&amp;Was ist das?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2660" />
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Context sensitive help</source>
       <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2662" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <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="2675" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>Helpviewer</source>
       <translation>Hilfe</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2676" />
+      <source>&amp;Helpviewer...</source>
+      <translation>&amp;Hilfe...</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
-      <source>&amp;Helpviewer...</source>
-      <translation>&amp;Hilfe...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2678" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2683" />
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Open the helpviewer window</source>
       <translation>Öffnet das Hilfe-Fenster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2685" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <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="2704" />
+      <source>Show Versions</source>
+      <translation>Zeige Versionen</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2705" />
-      <source>Show Versions</source>
-      <translation>Zeige Versionen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Show &amp;Versions</source>
       <translation>Zeige &amp;Versionen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2711" />
       <source>Display version information</source>
       <translation>Zeigt Versionsinformationen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2714" />
+      <location filename="../UI/UserInterface.py" line="2713" />
       <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="2729" />
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>Show Error Log</source>
       <translation>Zeige Fehlerbericht</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2722" />
       <source>Show Error &amp;Log...</source>
       <translation>Zeige Fehler&amp;bericht...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2730" />
       <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="2739" />
+      <source>Show Install Info</source>
+      <translation>Installationsinformation</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2740" />
-      <source>Show Install Info</source>
-      <translation>Installationsinformation</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Install &amp;Info...</source>
       <translation>&amp;Installationsinformation...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2747" />
+      <location filename="../UI/UserInterface.py" line="2746" />
       <source>Show Installation Information</source>
       <translation>Installationsinformation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2749" />
+      <location filename="../UI/UserInterface.py" line="2748" />
       <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="4633" />
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="4632" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report Bug</source>
       <translation>Fehler berichten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report &amp;Bug...</source>
       <translation>&amp;Fehler berichten...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
+      <location filename="../UI/UserInterface.py" line="2760" />
       <source>Report a bug</source>
       <translation>Einen Fehler berichten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <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="2770" />
+      <source>Request Feature</source>
+      <translation>Neue Funktion anfragen</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2771" />
-      <source>Request Feature</source>
-      <translation>Neue Funktion anfragen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2772" />
       <source>Request &amp;Feature...</source>
       <translation>Neue &amp;Funktion anfragen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2777" />
       <source>Send a feature request</source>
       <translation>Sende eine Anfrage für eine neue Funktion</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2780" />
+      <location filename="../UI/UserInterface.py" line="2779" />
       <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="4091" />
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>Testing</source>
       <translation>Modultest</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2792" />
       <source>&amp;Testing...</source>
       <translation>Modul&amp;test...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
+      <location filename="../UI/UserInterface.py" line="2798" />
       <source>Start the testing dialog</source>
       <translation>Starte den Modultest Dialog</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2801" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <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="2812" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Restart Last Test</source>
       <translation>Letzten Test neu starten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>&amp;Restart Last Test...</source>
       <translation>Letzten Test &amp;neu starten...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2820" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <source>Restarts the last test</source>
       <translation>Startet den letzten Test erneut</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2821" />
       <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="2832" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>Rerun Failed Tests</source>
       <translation>Fehlerhafte Tests wiederholen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2833" />
       <source>Rerun Failed Tests...</source>
       <translation>Fehlerhafte Tests wiederholen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <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="2844" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <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="2854" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>Test Script</source>
       <translation>Test (Skript)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
+      <location filename="../UI/UserInterface.py" line="2855" />
       <source>Test &amp;Script...</source>
       <translation>Test (&amp;Skript)...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>Run tests of the current script</source>
       <translation>Tests des aktuelles Skripts ausführen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2864" />
+      <location filename="../UI/UserInterface.py" line="2863" />
       <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="2873" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Test Project</source>
       <translation>Test (Projekt)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>Test &amp;Project...</source>
       <translation>Test (&amp;Projekt)...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2881" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <source>Run tests of the current project</source>
       <translation>Tests des aktuellen Projektes ausführen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <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="2905" />
+      <location filename="../UI/UserInterface.py" line="2904" />
       <source>Qt-Designer</source>
       <translation>Qt Designer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2907" />
+      <location filename="../UI/UserInterface.py" line="2906" />
       <source>Qt-&amp;Designer...</source>
       <translation>Qt &amp;Designer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2912" />
       <source>Start Qt-Designer</source>
       <translation>Starte Qt Designer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2915" />
+      <location filename="../UI/UserInterface.py" line="2914" />
       <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="2935" />
+      <location filename="../UI/UserInterface.py" line="2934" />
       <source>Qt-Linguist</source>
       <translation>Qt Linguist</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2937" />
+      <location filename="../UI/UserInterface.py" line="2936" />
       <source>Qt-&amp;Linguist...</source>
       <translation>Qt &amp;Linguist...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2943" />
+      <location filename="../UI/UserInterface.py" line="2942" />
       <source>Start Qt-Linguist</source>
       <translation>Starte Qt Linguist</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2945" />
+      <location filename="../UI/UserInterface.py" line="2944" />
       <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="2953" />
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>UI Previewer</source>
       <translation>UI-Vorschau</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
+      <location filename="../UI/UserInterface.py" line="2954" />
       <source>&amp;UI Previewer...</source>
       <translation>&amp;UI-Vorschau...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2961" />
+      <location filename="../UI/UserInterface.py" line="2960" />
       <source>Start the UI Previewer</source>
       <translation>Starte die UI-Vorschau</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2962" />
       <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="2969" />
+      <location filename="../UI/UserInterface.py" line="2968" />
       <source>Translations Previewer</source>
       <translation>Übersetzungsvorschau</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2971" />
+      <location filename="../UI/UserInterface.py" line="2970" />
       <source>&amp;Translations Previewer...</source>
       <translation>&amp;Übersetzungsvorschau...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="2976" />
       <source>Start the Translations Previewer</source>
       <translation>Die Übersetzungsvorschau starten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2979" />
+      <location filename="../UI/UserInterface.py" line="2978" />
       <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="2988" />
+      <location filename="../UI/UserInterface.py" line="2987" />
       <source>Compare Files</source>
       <translation>Dateien vergleichen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2990" />
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&amp;Compare Files...</source>
       <translation>Dateien &amp;vergleichen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="2995" />
       <source>Compare two files</source>
       <translation>Zwei Dateien vergleichen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2998" />
+      <location filename="../UI/UserInterface.py" line="2997" />
       <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="3007" />
+      <location filename="../UI/UserInterface.py" line="3006" />
       <source>Compare Files side by side</source>
       <translation>Dateien Seite an Seite vergleichen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3009" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare &amp;Files side by side...</source>
       <translation>Dateien &amp;Seite an Seite vergleichen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3017" />
+      <location filename="../UI/UserInterface.py" line="3016" />
       <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="3027" />
+      <location filename="../UI/UserInterface.py" line="3026" />
       <source>SQL Browser</source>
       <translation>SQL-Browser</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3028" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL-&amp;Browser...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3035" />
+      <location filename="../UI/UserInterface.py" line="3034" />
       <source>Browse a SQL database</source>
       <translation>Erforsche eine SQL-Datenbank</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3037" />
+      <location filename="../UI/UserInterface.py" line="3036" />
       <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="3051" />
-      <location filename="../UI/UserInterface.py" line="3043" />
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <location filename="../UI/UserInterface.py" line="3042" />
       <source>Mini Editor</source>
       <translation>Mini-Editor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3045" />
+      <location filename="../UI/UserInterface.py" line="3044" />
       <source>Mini &amp;Editor...</source>
       <translation>Mini-&amp;Editor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3053" />
+      <location filename="../UI/UserInterface.py" line="3052" />
       <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="3062" />
+      <location filename="../UI/UserInterface.py" line="3061" />
       <source>Hex Editor</source>
       <translation>Hex-Editor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3064" />
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&amp;Hex Editor...</source>
       <translation>&amp;Hex Editor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
+      <location filename="../UI/UserInterface.py" line="3069" />
       <source>Start the eric Hex Editor</source>
       <translation>Starte den eric Hex-Editor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3072" />
+      <location filename="../UI/UserInterface.py" line="3071" />
       <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="3082" />
+      <location filename="../UI/UserInterface.py" line="3081" />
       <source>eric Web Browser</source>
       <translation>eric Web Browser</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3084" />
+      <location filename="../UI/UserInterface.py" line="3083" />
       <source>eric &amp;Web Browser...</source>
       <translation>eric &amp;Web Browser...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3089" />
       <source>Start the eric Web Browser</source>
       <translation>Startet den eric Web Browser</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3092" />
+      <location filename="../UI/UserInterface.py" line="3091" />
       <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="3101" />
+      <location filename="../UI/UserInterface.py" line="3100" />
       <source>Icon Editor</source>
       <translation>Icon-Editor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3103" />
+      <location filename="../UI/UserInterface.py" line="3102" />
       <source>&amp;Icon Editor...</source>
       <translation>&amp;Icon-Editor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3109" />
+      <location filename="../UI/UserInterface.py" line="3108" />
       <source>Start the eric Icon Editor</source>
       <translation>Starte den eric Icon-Editor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
+      <location filename="../UI/UserInterface.py" line="3110" />
       <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;Icon-Editor&lt;/b&gt;&lt;p&gt;Startet den eric Icon-Editor zum Editieren einfacher Icons.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3120" />
+      <location filename="../UI/UserInterface.py" line="3119" />
       <source>Snapshot</source>
       <translation>Bildschirmfoto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3122" />
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>&amp;Snapshot...</source>
       <translation>&amp;Bildschirmfoto...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3128" />
+      <location filename="../UI/UserInterface.py" line="3127" />
       <source>Take snapshots of a screen region</source>
       <translation>Bildschirmfoto aufnehmen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3129" />
       <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="3140" />
+      <location filename="../UI/UserInterface.py" line="3139" />
       <source>Preferences</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3142" />
+      <location filename="../UI/UserInterface.py" line="3141" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3147" />
       <source>Set the prefered configuration</source>
       <translation>Konfiguriert die Einstellungen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3149" />
       <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="3161" />
+      <location filename="../UI/UserInterface.py" line="3160" />
       <source>Export Preferences</source>
       <translation>Einstellungen exportieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3163" />
+      <location filename="../UI/UserInterface.py" line="3162" />
       <source>E&amp;xport Preferences...</source>
       <translation>Einstellungen e&amp;xportieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3169" />
+      <location filename="../UI/UserInterface.py" line="3168" />
       <source>Export the current configuration</source>
       <translation>Exportiert die aktuelle Konfiguration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="3170" />
       <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="3180" />
+      <location filename="../UI/UserInterface.py" line="3179" />
       <source>Import Preferences</source>
       <translation>Einstellungen importieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3182" />
+      <location filename="../UI/UserInterface.py" line="3181" />
       <source>I&amp;mport Preferences...</source>
       <translation>Einstellungen i&amp;mportieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3188" />
       <source>Import a previously exported configuration</source>
       <translation>Importiert eine zuvor exportierte Konfiguration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3192" />
+      <location filename="../UI/UserInterface.py" line="3191" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3200" />
       <source>Export Theme</source>
       <translation>Schema exportieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3203" />
+      <location filename="../UI/UserInterface.py" line="3202" />
       <source>Export Theme...</source>
       <translation>Schema exportieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3209" />
+      <location filename="../UI/UserInterface.py" line="3208" />
       <source>Export the current theme</source>
       <translation>Exportiert das aktuelle Schema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
+      <location filename="../UI/UserInterface.py" line="3210" />
       <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="3220" />
+      <location filename="../UI/UserInterface.py" line="3219" />
       <source>Import Theme</source>
       <translation>Schema importieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3222" />
+      <location filename="../UI/UserInterface.py" line="3221" />
       <source>Import Theme...</source>
       <translation>Schema importieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3228" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <source>Import a previously exported theme</source>
       <translation>Importiert ein vorher exportiertes Schema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
+      <location filename="../UI/UserInterface.py" line="3229" />
       <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="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload APIs</source>
       <translation>APIs neu laden</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload &amp;APIs</source>
       <translation>APIs &amp;neu laden</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3241" />
+      <location filename="../UI/UserInterface.py" line="3240" />
       <source>Reload the API information</source>
       <translation>Die API-Informationen neu laden</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3243" />
+      <location filename="../UI/UserInterface.py" line="3242" />
       <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="3257" />
-      <location filename="../UI/UserInterface.py" line="3249" />
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <location filename="../UI/UserInterface.py" line="3248" />
       <source>Show external tools</source>
       <translation>Zeige externe Werkzeuge</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
+      <location filename="../UI/UserInterface.py" line="3250" />
       <source>Show external &amp;tools</source>
       <translation>Zeige externe &amp;Werkzeuge</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3258" />
       <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="3269" />
+      <location filename="../UI/UserInterface.py" line="3268" />
       <source>View Profiles</source>
       <translation>Ansichtenprofile</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
+      <location filename="../UI/UserInterface.py" line="3270" />
       <source>&amp;View Profiles...</source>
       <translation>&amp;Ansichtenprofile...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3277" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Configure view profiles</source>
       <translation>Ansichtenprofile konfigurieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
+      <location filename="../UI/UserInterface.py" line="3278" />
       <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="3290" />
+      <location filename="../UI/UserInterface.py" line="3289" />
       <source>Toolbars</source>
       <translation>Werkzeugleisten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3292" />
+      <location filename="../UI/UserInterface.py" line="3291" />
       <source>Tool&amp;bars...</source>
       <translation>Werkzeug&amp;leisten...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
+      <location filename="../UI/UserInterface.py" line="3297" />
       <source>Configure toolbars</source>
       <translation>Werkzeugleisten einrichten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3299" />
       <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="3311" />
+      <location filename="../UI/UserInterface.py" line="3310" />
       <source>Keyboard Shortcuts</source>
       <translation>Tastaturkurzbefehle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3313" />
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>&amp;Tastaturkurzbefehle...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3319" />
+      <location filename="../UI/UserInterface.py" line="3318" />
       <source>Set the keyboard shortcuts</source>
       <translation>Setze die Tastaturkurzbefehle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
+      <location filename="../UI/UserInterface.py" line="3320" />
       <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="7335" />
-      <location filename="../UI/UserInterface.py" line="7316" />
-      <location filename="../UI/UserInterface.py" line="3331" />
+      <location filename="../UI/UserInterface.py" line="7334" />
+      <location filename="../UI/UserInterface.py" line="7315" />
+      <location filename="../UI/UserInterface.py" line="3330" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Tastaturkurzbefehle exportieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3333" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>Tastaturkurzbefehle &amp;exportieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
+      <location filename="../UI/UserInterface.py" line="3338" />
       <source>Export the keyboard shortcuts</source>
       <translation>Exportiert die Tastaturkurzbefehle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3341" />
+      <location filename="../UI/UserInterface.py" line="3340" />
       <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="7354" />
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="7353" />
+      <location filename="../UI/UserInterface.py" line="3349" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Tastaturkurzbefehle importieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3352" />
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>Tastaturkurzbefehle &amp;importieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="3357" />
       <source>Import the keyboard shortcuts</source>
       <translation>Importiert die Tastaturkurzbefehle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3359" />
       <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="3370" />
+      <location filename="../UI/UserInterface.py" line="3369" />
       <source>Manage SSL Certificates</source>
       <translation>SSL-Zertifikate verwalten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3372" />
+      <location filename="../UI/UserInterface.py" line="3371" />
       <source>Manage SSL Certificates...</source>
       <translation>SSL-Zertifikate verwalten...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3378" />
       <source>Manage the saved SSL certificates</source>
       <translation>Verwalten der gespeicherten SSL-Zertifikate</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3382" />
+      <location filename="../UI/UserInterface.py" line="3381" />
       <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="3392" />
+      <location filename="../UI/UserInterface.py" line="3391" />
       <source>Edit Message Filters</source>
       <translation>Meldungsfilter bearbeiten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3394" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Edit Message Filters...</source>
       <translation>Meldungsfilter bearbeiten...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="3400" />
       <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="3404" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <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="3423" />
-      <location filename="../UI/UserInterface.py" line="3417" />
-      <location filename="../UI/UserInterface.py" line="3415" />
+      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Clear private data</source>
       <translation>Private Daten löschen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3425" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <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="3435" />
+      <location filename="../UI/UserInterface.py" line="3434" />
+      <source>Activate current editor</source>
+      <translation>Aktiviere aktuellen Editor</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3436" />
-      <location filename="../UI/UserInterface.py" line="3435" />
-      <source>Activate current editor</source>
-      <translation>Aktiviere aktuellen Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3447" />
+      <location filename="../UI/UserInterface.py" line="3446" />
+      <source>Show next</source>
+      <translation>Zeige nächste</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3448" />
-      <location filename="../UI/UserInterface.py" line="3447" />
-      <source>Show next</source>
-      <translation>Zeige nächste</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3458" />
+      <source>Show previous</source>
+      <translation>Zeige vorherige</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3460" />
-      <location filename="../UI/UserInterface.py" line="3459" />
-      <source>Show previous</source>
-      <translation>Zeige vorherige</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3461" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Switch between tabs</source>
+      <translation>Zwischen Tabs umschalten</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3472" />
-      <location filename="../UI/UserInterface.py" line="3471" />
-      <source>Switch between tabs</source>
-      <translation>Zwischen Tabs umschalten</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
       <source>Plugin Infos</source>
       <translation>Plugininformationen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3485" />
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>&amp;Plugin Infos...</source>
       <translation>&amp;Plugininformationen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
+      <location filename="../UI/UserInterface.py" line="3490" />
       <source>Show Plugin Infos</source>
       <translation>Zeigt Plugininformationen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
+      <location filename="../UI/UserInterface.py" line="3492" />
       <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="3511" />
-      <location filename="../UI/UserInterface.py" line="3503" />
+      <location filename="../UI/UserInterface.py" line="3510" />
+      <location filename="../UI/UserInterface.py" line="3502" />
       <source>Install Plugins</source>
       <translation>Plugins installieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3504" />
       <source>&amp;Install Plugins...</source>
       <translation>Plugins &amp;installieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
+      <location filename="../UI/UserInterface.py" line="3512" />
       <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="3530" />
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Uninstall Plugin</source>
       <translation>Plugin deinstallieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3524" />
+      <location filename="../UI/UserInterface.py" line="3523" />
       <source>&amp;Uninstall Plugin...</source>
       <translation>Plugin &amp;deinstallieren...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <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="3543" />
+      <location filename="../UI/UserInterface.py" line="3542" />
       <source>Plugin &amp;Repository...</source>
       <translation>Plugin-&amp;Repository...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <source>Show Plugins available for download</source>
       <translation>Zeige  zum Download verfügbare Plugins an</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3551" />
+      <location filename="../UI/UserInterface.py" line="3550" />
       <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="3578" />
       <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="3576" />
       <source>Qt5 Documentation</source>
       <translation>Qt5 Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3584" />
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Open Qt5 Documentation</source>
       <translation>Öffne die Qt5 Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3599" />
       <location filename="../UI/UserInterface.py" line="3598" />
+      <location filename="../UI/UserInterface.py" line="3597" />
       <source>Qt6 Documentation</source>
       <translation>Qt6 Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3605" />
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>Open Qt6 Documentation</source>
       <translation>Öffne die Qt6 Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3606" />
       <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="3620" />
       <location filename="../UI/UserInterface.py" line="3619" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>PyQt5 Documentation</source>
       <translation>PyQt5-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3626" />
+      <location filename="../UI/UserInterface.py" line="3625" />
       <source>Open PyQt5 Documentation</source>
       <translation>Öffne die PyQt5-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3627" />
       <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="3641" />
       <location filename="../UI/UserInterface.py" line="3640" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>PyQt6 Documentation</source>
       <translation>PyQt6-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3647" />
+      <location filename="../UI/UserInterface.py" line="3646" />
       <source>Open PyQt6 Documentation</source>
       <translation>Öffne die PyQt6-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3648" />
       <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="3667" />
       <location filename="../UI/UserInterface.py" line="3666" />
+      <location filename="../UI/UserInterface.py" line="3665" />
       <source>Python 3 Documentation</source>
       <translation>Python 3-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3673" />
+      <location filename="../UI/UserInterface.py" line="3672" />
       <source>Open Python 3 Documentation</source>
       <translation>Öffne die Python 3-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <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="3694" />
       <location filename="../UI/UserInterface.py" line="3693" />
+      <location filename="../UI/UserInterface.py" line="3692" />
       <source>eric API Documentation</source>
       <translation>eric-API-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3700" />
+      <location filename="../UI/UserInterface.py" line="3699" />
       <source>Open eric API Documentation</source>
       <translation>Öffne die eric-API-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
       <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="3720" />
       <location filename="../UI/UserInterface.py" line="3719" />
+      <location filename="../UI/UserInterface.py" line="3718" />
       <source>PySide2 Documentation</source>
       <translation>PySide2-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3726" />
+      <location filename="../UI/UserInterface.py" line="3725" />
       <source>Open PySide2 Documentation</source>
       <translation>Öffne die PySide2-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
       <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="3746" />
       <location filename="../UI/UserInterface.py" line="3745" />
+      <location filename="../UI/UserInterface.py" line="3744" />
       <source>PySide6 Documentation</source>
       <translation>PySide6-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3752" />
+      <location filename="../UI/UserInterface.py" line="3751" />
       <source>Open PySide6 Documentation</source>
       <translation>Öffne die PySide6-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <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="3854" />
+      <location filename="../UI/UserInterface.py" line="3853" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtras</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
+      <location filename="../UI/UserInterface.py" line="3863" />
       <source>Wi&amp;zards</source>
       <translation>&amp;Assistenten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3882" />
+      <location filename="../UI/UserInterface.py" line="3881" />
       <source>P&amp;lugins</source>
       <translation>Plugi&amp;ns</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3891" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>Configure...</source>
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3900" />
+      <location filename="../UI/UserInterface.py" line="3899" />
       <source>&amp;Testing</source>
       <translation>Modul&amp;tests</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3917" />
+      <location filename="../UI/UserInterface.py" line="3916" />
       <source>Select Tool Group</source>
       <translation>Werkzeuggruppe wählen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Se&amp;ttings</source>
       <translation>&amp;Einstellungen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3961" />
+      <location filename="../UI/UserInterface.py" line="3960" />
       <source>&amp;Window</source>
       <translation>&amp;Fenster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3970" />
+      <location filename="../UI/UserInterface.py" line="3969" />
       <source>&amp;Windows</source>
       <translation>&amp;Fenster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3974" />
+      <location filename="../UI/UserInterface.py" line="3973" />
       <source>Central Park</source>
       <translation>Mittelbereich</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3978" />
+      <location filename="../UI/UserInterface.py" line="3977" />
       <source>Left Side</source>
       <translation>Linke Seite</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3997" />
+      <location filename="../UI/UserInterface.py" line="3996" />
       <source>Right Side</source>
       <translation>Rechte Seite</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4016" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Bottom Side</source>
       <translation>Unterer Rand</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4024" />
+      <location filename="../UI/UserInterface.py" line="4023" />
       <source>Plug-ins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4030" />
+      <location filename="../UI/UserInterface.py" line="4029" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Werkzeugleisten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4043" />
+      <location filename="../UI/UserInterface.py" line="4042" />
       <source>&amp;Help</source>
       <translation>&amp;Hilfe</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="4112" />
+      <location filename="../UI/UserInterface.py" line="4089" />
       <source>Tools</source>
       <translation>Werkzeuge</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4093" />
+      <source>Settings</source>
+      <translation>Einstellungen</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6147" />
       <location filename="../UI/UserInterface.py" line="4115" />
       <location filename="../UI/UserInterface.py" line="4094" />
-      <source>Settings</source>
-      <translation>Einstellungen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6148" />
+      <source>Help</source>
+      <translation>Hilfe</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4116" />
       <location filename="../UI/UserInterface.py" line="4095" />
-      <source>Help</source>
-      <translation>Hilfe</translation>
+      <source>Profiles</source>
+      <translation>Profile</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="4117" />
       <location filename="../UI/UserInterface.py" line="4096" />
-      <source>Profiles</source>
-      <translation>Profile</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4118" />
-      <location filename="../UI/UserInterface.py" line="4097" />
       <source>Plugins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4113" />
       <source>Unittest</source>
       <translation>Modultests</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4286" />
+      <location filename="../UI/UserInterface.py" line="4285" />
       <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="4295" />
+      <location filename="../UI/UserInterface.py" line="4294" />
       <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="4304" />
+      <location filename="../UI/UserInterface.py" line="4303" />
       <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="4313" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4322" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4331" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4345" />
+      <location filename="../UI/UserInterface.py" line="4344" />
       <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="4416" />
-      <location filename="../UI/UserInterface.py" line="4375" />
+      <location filename="../UI/UserInterface.py" line="4415" />
+      <location filename="../UI/UserInterface.py" line="4374" />
       <source>External Tools/{0}</source>
       <translation>Externe Werkzeuge/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4524" />
+      <location filename="../UI/UserInterface.py" line="4523" />
       <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="4573" />
+      <location filename="../UI/UserInterface.py" line="4572" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Sicherheit)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4590" />
+      <location filename="../UI/UserInterface.py" line="4589" />
       <source>Desktop</source>
       <translation>Arbeitsumgebung</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4593" />
       <source>Session Type</source>
       <translation>Sitzungstyp</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4597" />
+      <location filename="../UI/UserInterface.py" line="4596" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4633" />
       <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="4948" />
+      <source>Restart application</source>
+      <translation>Anwendung neu starten</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4949" />
-      <source>Restart application</source>
-      <translation>Anwendung neu starten</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4950" />
       <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="4973" />
+      <source>Upgrade PyQt</source>
+      <translation>PyQt aktualisieren</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4974" />
-      <source>Upgrade PyQt</source>
-      <translation>PyQt aktualisieren</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4975" />
       <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>
@@ -85337,13 +85358,13 @@
 Soll die Aktualisierung jetzt durchgeführt werden?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5025" />
-      <location filename="../UI/UserInterface.py" line="4999" />
+      <location filename="../UI/UserInterface.py" line="5024" />
+      <location filename="../UI/UserInterface.py" line="4998" />
       <source>Upgrade Eric</source>
       <translation>Eric aktualisieren</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5000" />
+      <location filename="../UI/UserInterface.py" line="4999" />
       <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>
@@ -85352,7 +85373,7 @@
 Soll die Aktualisierung jetzt durchgeführt werden?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5026" />
+      <location filename="../UI/UserInterface.py" line="5025" />
       <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>
@@ -85361,47 +85382,59 @@
 Soll die Aktualisierung jetzt durchgeführt werden?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5084" />
+      <location filename="../UI/UserInterface.py" line="5083" />
       <source>&amp;Builtin Tools</source>
       <translation>&amp;Eingebaute Werkzeuge</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5101" />
+      <location filename="../UI/UserInterface.py" line="5100" />
       <source>&amp;Plugin Tools</source>
       <translation>&amp;Pluginwerkzeuge</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5103" />
       <source>&amp;User Tools</source>
       <translation>&amp;Benutzerwerkzeuge</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5130" />
+      <location filename="../UI/UserInterface.py" line="5129" />
       <source>Configure Tool Groups ...</source>
       <translation>Konfiguriere Werkzeuggruppen...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5134" />
+      <location filename="../UI/UserInterface.py" line="5133" />
       <source>Configure current Tool Group ...</source>
       <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5173" />
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5172" />
+      <location filename="../UI/UserInterface.py" line="5152" />
       <source>No User Tools Configured</source>
       <translation>Keine Benutzerwerkzeuge konfiguriert</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5247" />
+      <location filename="../UI/UserInterface.py" line="5246" />
       <source>&amp;Show all</source>
       <translation>Alle an&amp;zeigen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5249" />
+      <location filename="../UI/UserInterface.py" line="5248" />
       <source>&amp;Hide all</source>
       <translation>Alle &amp;ausblenden</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6282" />
+      <location filename="../UI/UserInterface.py" line="6271" />
+      <location filename="../UI/UserInterface.py" line="6223" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6049" />
+      <location filename="../UI/UserInterface.py" line="6039" />
+      <location filename="../UI/UserInterface.py" line="5982" />
+      <location filename="../UI/UserInterface.py" line="5972" />
+      <source>Problem</source>
+      <translation>Problem</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6283" />
       <location filename="../UI/UserInterface.py" line="6272" />
       <location filename="../UI/UserInterface.py" line="6224" />
@@ -85410,312 +85443,300 @@
       <location filename="../UI/UserInterface.py" line="6040" />
       <location filename="../UI/UserInterface.py" line="5983" />
       <location filename="../UI/UserInterface.py" line="5973" />
-      <source>Problem</source>
-      <translation>Problem</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6273" />
-      <location filename="../UI/UserInterface.py" line="6225" />
-      <location filename="../UI/UserInterface.py" line="6215" />
-      <location filename="../UI/UserInterface.py" line="6051" />
-      <location filename="../UI/UserInterface.py" line="6041" />
-      <location filename="../UI/UserInterface.py" line="5984" />
-      <location filename="../UI/UserInterface.py" line="5974" />
       <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="6496" />
-      <location filename="../UI/UserInterface.py" line="6409" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6296" />
-      <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6164" />
-      <location filename="../UI/UserInterface.py" line="6124" />
-      <location filename="../UI/UserInterface.py" line="6115" />
-      <location filename="../UI/UserInterface.py" line="6081" />
-      <location filename="../UI/UserInterface.py" line="6072" />
-      <location filename="../UI/UserInterface.py" line="6014" />
-      <location filename="../UI/UserInterface.py" line="6005" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6408" />
+      <location filename="../UI/UserInterface.py" line="6318" />
+      <location filename="../UI/UserInterface.py" line="6295" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6163" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
+      <location filename="../UI/UserInterface.py" line="6080" />
+      <location filename="../UI/UserInterface.py" line="6071" />
+      <location filename="../UI/UserInterface.py" line="6013" />
+      <location filename="../UI/UserInterface.py" line="6004" />
       <source>Process Generation Error</source>
       <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6006" />
+      <location filename="../UI/UserInterface.py" line="6005" />
       <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="6015" />
+      <location filename="../UI/UserInterface.py" line="6014" />
       <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="6073" />
+      <location filename="../UI/UserInterface.py" line="6072" />
       <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="6082" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <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="6116" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <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="6125" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <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="6149" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <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="6165" />
+      <location filename="../UI/UserInterface.py" line="6164" />
       <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="6186" />
+      <location filename="../UI/UserInterface.py" line="6185" />
       <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="6238" />
+      <location filename="../UI/UserInterface.py" line="6237" />
       <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="6297" />
+      <location filename="../UI/UserInterface.py" line="6296" />
       <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="6320" />
+      <location filename="../UI/UserInterface.py" line="6319" />
       <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="6410" />
+      <location filename="../UI/UserInterface.py" line="6409" />
       <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="6442" />
+      <location filename="../UI/UserInterface.py" line="6432" />
+      <source>External Tools</source>
+      <translation>Externe Werkzeuge</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <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="6443" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <source>External Tools</source>
-      <translation>Externe Werkzeuge</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6434" />
-      <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="6444" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6479" />
+      <location filename="../UI/UserInterface.py" line="6478" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Starte Prozess „{0} {1}“.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6497" />
+      <location filename="../UI/UserInterface.py" line="6496" />
       <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="6573" />
+      <location filename="../UI/UserInterface.py" line="6572" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Prozess „{0}“ ist beendet.
 </translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6857" />
+      <location filename="../UI/UserInterface.py" line="6795" />
+      <location filename="../UI/UserInterface.py" line="6751" />
+      <location filename="../UI/UserInterface.py" line="6679" />
+      <location filename="../UI/UserInterface.py" line="6615" />
+      <source>Documentation Missing</source>
+      <translation>Dokumentation fehlt</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6858" />
       <location filename="../UI/UserInterface.py" line="6796" />
       <location filename="../UI/UserInterface.py" line="6752" />
       <location filename="../UI/UserInterface.py" line="6680" />
       <location filename="../UI/UserInterface.py" line="6616" />
-      <source>Documentation Missing</source>
-      <translation>Dokumentation fehlt</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6859" />
-      <location filename="../UI/UserInterface.py" line="6797" />
-      <location filename="../UI/UserInterface.py" line="6753" />
-      <location filename="../UI/UserInterface.py" line="6681" />
-      <location filename="../UI/UserInterface.py" line="6617" />
       <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="6839" />
+      <location filename="../UI/UserInterface.py" line="6723" />
+      <source>Documentation</source>
+      <translation>Dokumentation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6724" />
+      <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="6840" />
-      <location filename="../UI/UserInterface.py" line="6724" />
-      <source>Documentation</source>
-      <translation>Dokumentation</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6725" />
-      <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="6841" />
       <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="7020" />
+      <location filename="../UI/UserInterface.py" line="6955" />
+      <source>Start Web Browser</source>
+      <translation>Web Browser starten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6956" />
+      <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="7021" />
-      <location filename="../UI/UserInterface.py" line="6956" />
-      <source>Start Web Browser</source>
-      <translation>Web Browser starten</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6957" />
-      <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="7022" />
       <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="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Open Browser</source>
       <translation>Browser starten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <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="7318" />
+      <location filename="../UI/UserInterface.py" line="7317" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation>Tastaturkurzbefehlsdatei (*.ekj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7336" />
+      <location filename="../UI/UserInterface.py" line="7335" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation>Tastaturkurzbefehlsdatei (*.ekj);;XML Tastaturkurzbefehlsdatei (*.e4k)</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7538" />
+      <source>Read Tasks</source>
+      <translation>Aufgaben lesen</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7539" />
-      <source>Read Tasks</source>
-      <translation>Aufgaben lesen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7540" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Aufgabendatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7582" />
       <source>Read Session</source>
       <translation>Sitzung lesen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7611" />
-      <location filename="../UI/UserInterface.py" line="7584" />
-      <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="7610" />
+      <location filename="../UI/UserInterface.py" line="7583" />
+      <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="7609" />
       <source>Read session</source>
       <translation>Sitzung lesen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7627" />
+      <location filename="../UI/UserInterface.py" line="7626" />
       <source>Save Session</source>
       <translation>Sitzung speichern</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7629" />
+      <location filename="../UI/UserInterface.py" line="7628" />
       <source>eric Session Files (*.esj)</source>
       <translation>eric Sitzungsdateien (*.esj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7652" />
+      <location filename="../UI/UserInterface.py" line="7651" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation>eric Sitzungsdateien (*.esj);;eric XML Sitzungsdateien (*.e5s)</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7697" />
+      <source>Crash Session found!</source>
+      <translation>Absturzsitzung gefunden!</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7698" />
-      <source>Crash Session found!</source>
-      <translation>Absturzsitzung gefunden!</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7699" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation>Eine Sitzungsdatei einer abgestürzten Sitzung wurde gefunden. Soll diese Sitzung wiederhergestellt werden?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8058" />
+      <source>Drop Error</source>
+      <translation>Drop-Fehler</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8059" />
-      <source>Drop Error</source>
-      <translation>Drop-Fehler</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8060" />
       <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="8233" />
+      <source>Upgrade available</source>
+      <translation>Aktualisierung verfügbar</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8234" />
-      <source>Upgrade available</source>
-      <translation>Aktualisierung verfügbar</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8235" />
       <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;</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;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8285" />
+      <location filename="../UI/UserInterface.py" line="8272" />
+      <source>First time usage</source>
+      <translation>Erstmalige Nutzung</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8273" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation>eric7 wurde noch nicht konfiguriert, aber es wurde eine eric6 Konfiguration gefunden. Soll diese importiert werden?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8286" />
-      <location filename="../UI/UserInterface.py" line="8273" />
-      <source>First time usage</source>
-      <translation>Erstmalige Nutzung</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8274" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation>eric7 wurde noch nicht konfiguriert, aber es wurde eine eric6 Konfiguration gefunden. Soll diese importiert werden?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8287" />
       <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="8310" />
+      <location filename="../UI/UserInterface.py" line="8309" />
       <source>Select Workspace Directory</source>
       <translation>Wähle Arbeitsverzeichnis</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8490" />
+      <source>Unsaved Data Detected</source>
+      <translation>Nicht gespeicherte Daten gefunden</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8491" />
-      <source>Unsaved Data Detected</source>
-      <translation>Nicht gespeicherte Daten gefunden</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8492" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation>Einige Editoren haben nicht gespeicherte Inhalte. Sollen diese gespeichert werden?</translation>
     </message>
@@ -85796,7 +85817,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1616" />
+      <location filename="../Utilities/__init__.py" line="1615" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sie können %-Codes als Platzhalter in der Eingabe verwenden. Unterstützte Codes sind:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;Spalte des Cursor des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;Verzeichnis des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;Dateiname des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;Home-Verzeichnis des aktullen Nutzers&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;Zeile des Cursor des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;Pfad des aktuellen Projektes&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selektierter Text des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;Nutzername des aktuellen Nutzers&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;das Prozentzeichen&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_empty.ts	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/i18n/eric7_empty.ts	Fri Nov 25 11:51:51 2022 +0100
@@ -5406,7 +5406,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="206" />
+      <location filename="../Utilities/__init__.py" line="205" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation type="unfinished" />
     </message>
@@ -8740,88 +8740,89 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="221" />
+      <location filename="../Debugger/DebugViewer.py" line="149" />
+      <source>Source</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Don't Show</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Show Only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="233" />
-      <location filename="../Debugger/DebugViewer.py" line="162" />
+      <location filename="../Debugger/DebugViewer.py" line="248" />
+      <location filename="../Debugger/DebugViewer.py" line="176" />
       <source>Enter regular expression patterns separated by ';' to define variable filters. </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="239" />
-      <location filename="../Debugger/DebugViewer.py" line="168" />
-      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="246" />
-      <location filename="../Debugger/DebugViewer.py" line="176" />
-      <source>Set</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="184" />
-      <source>Shows the list of global variables and their values.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="206" />
-      <source>Source</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugViewer.py" line="254" />
+      <location filename="../Debugger/DebugViewer.py" line="182" />
+      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="261" />
+      <location filename="../Debugger/DebugViewer.py" line="190" />
+      <source>Set</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="198" />
+      <source>Shows the list of global variables and their values.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="269" />
       <source>Shows the list of local variables and their values.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="271" />
+      <location filename="../Debugger/DebugViewer.py" line="295" />
       <source>Shows the current call stack.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="281" />
+      <location filename="../Debugger/DebugViewer.py" line="305" />
       <source>Shows a trace of the program flow.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="292" />
+      <location filename="../Debugger/DebugViewer.py" line="316" />
       <source>Shows a list of defined breakpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="303" />
+      <location filename="../Debugger/DebugViewer.py" line="327" />
       <source>Shows a list of defined watchpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="312" />
+      <location filename="../Debugger/DebugViewer.py" line="336" />
       <source>Shows a list of raised exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="323" />
+      <location filename="../Debugger/DebugViewer.py" line="347" />
       <source>Shows a code disassembly in case of an exception.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="749" />
+      <location filename="../Debugger/DebugViewer.py" line="790" />
       <source>&lt;p&gt;Debugger with ID &lt;b&gt;{0}&lt;/b&gt; has been connected.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="992" />
-      <location filename="../Debugger/DebugViewer.py" line="864" />
+      <location filename="../Debugger/DebugViewer.py" line="1033" />
+      <location filename="../Debugger/DebugViewer.py" line="905" />
       <source>unknown state ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -9298,26 +9299,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
       <source>Add allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="343" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="307" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Enter the IP address of an allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="357" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="320" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
       <source>Edit allowed host</source>
       <translation type="unfinished" />
     </message>
@@ -20628,7 +20629,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/FiletypeAssociationDialog.py" line="56" />
+      <location filename="../Project/FiletypeAssociationDialog.py" line="58" />
       <location filename="../Project/FiletypeAssociationDialog.py" line="45" />
       <source>Ignore</source>
       <translation type="unfinished" />
@@ -46367,7 +46368,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="462" />
+      <location filename="../Preferences/__init__.py" line="461" />
       <location filename="../QScintilla/Lexers/__init__.py" line="386" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished" />
@@ -46620,7 +46621,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="465" />
+      <location filename="../Preferences/__init__.py" line="464" />
       <location filename="../QScintilla/Lexers/__init__.py" line="479" />
       <source>Python3 Files (*.py)</source>
       <translation type="unfinished" />
@@ -55166,18 +55167,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1608" />
+      <location filename="../Preferences/__init__.py" line="1653" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1637" />
-      <location filename="../Preferences/__init__.py" line="1610" />
+      <location filename="../Preferences/__init__.py" line="1682" />
+      <location filename="../Preferences/__init__.py" line="1655" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1635" />
+      <location filename="../Preferences/__init__.py" line="1680" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
@@ -55198,7 +55199,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="472" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -56043,7 +56044,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3311" />
+      <location filename="../Project/Project.py" line="3313" />
       <location filename="../Project/Project.py" line="2130" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
@@ -56074,1305 +56075,1325 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2517" />
+      <location filename="../Project/Project.py" line="2518" />
       <source>Create project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2518" />
+      <location filename="../Project/Project.py" line="2519" />
       <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="3115" />
-      <location filename="../Project/Project.py" line="2579" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3116" />
       <location filename="../Project/Project.py" line="2580" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3117" />
+      <location filename="../Project/Project.py" line="2581" />
       <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="2600" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2601" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2602" />
       <source>&lt;p&gt;The mainscript &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="2922" />
-      <location filename="../Project/Project.py" line="2625" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2923" />
       <location filename="../Project/Project.py" line="2626" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2924" />
+      <location filename="../Project/Project.py" line="2627" />
       <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="3144" />
-      <location filename="../Project/Project.py" line="2764" />
-      <location filename="../Project/Project.py" line="2735" />
-      <location filename="../Project/Project.py" line="2691" />
-      <location filename="../Project/Project.py" line="2666" />
-      <location filename="../Project/Project.py" line="2636" />
-      <source>New Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2637" />
-      <source>Add existing files to the project?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3145" />
+      <location filename="../Project/Project.py" line="2765" />
+      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2692" />
       <location filename="../Project/Project.py" line="2667" />
+      <location filename="../Project/Project.py" line="2637" />
+      <source>New Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2638" />
+      <source>Add existing files to the project?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3146" />
+      <location filename="../Project/Project.py" line="2668" />
       <source>Select Version Control System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2765" />
-      <location filename="../Project/Project.py" line="2692" />
+      <location filename="../Project/Project.py" line="2766" />
+      <location filename="../Project/Project.py" line="2693" />
       <source>Would you like to edit the VCS command options?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4082" />
-      <location filename="../Project/Project.py" line="2707" />
-      <source>New project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../Project/Project.py" line="4085" />
       <location filename="../Project/Project.py" line="2708" />
+      <source>New project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2709" />
       <source>Shall the project file be added to the repository?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2741" />
-      <location filename="../Project/Project.py" line="2729" />
+      <location filename="../Project/Project.py" line="2742" />
+      <location filename="../Project/Project.py" line="2730" />
       <source>None</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2737" />
       <source>Select version control system for the project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2848" />
-      <source>Translation Pattern</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2849" />
+      <source>Translation Pattern</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2850" />
       <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="4102" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="4105" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Open project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3096" />
+      <location filename="../Project/Project.py" line="3097" />
       <source>Project Files (*.epj);;XML Project Files (*.e4p)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="3298" />
+      <location filename="../Project/Project.py" line="3288" />
+      <source>Project Files (*.epj)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="3296" />
-      <location filename="../Project/Project.py" line="3286" />
-      <source>Project Files (*.epj)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3294" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3310" />
+      <location filename="../Project/Project.py" line="3312" />
       <source>Save File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3349" />
+      <location filename="../Project/Project.py" line="3351" />
       <source>Close Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3350" />
+      <location filename="../Project/Project.py" line="3352" />
       <source>The current project has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3538" />
-      <location filename="../Project/Project.py" line="3504" />
+      <location filename="../Project/Project.py" line="3541" />
+      <location filename="../Project/Project.py" line="3507" />
       <source>Syntax errors detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="3539" />
-      <location filename="../Project/Project.py" line="3505" />
+      <location filename="../Project/Project.py" line="3542" />
+      <location filename="../Project/Project.py" line="3508" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4084" />
+      <location filename="../Project/Project.py" line="4087" />
       <source>&amp;New...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4090" />
+      <location filename="../Project/Project.py" line="4093" />
       <source>Generate a new project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4092" />
+      <location filename="../Project/Project.py" line="4095" />
       <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="4104" />
+      <location filename="../Project/Project.py" line="4107" />
       <source>&amp;Open...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4110" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>Open an existing project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4115" />
       <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="4118" />
+      <location filename="../Project/Project.py" line="4121" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4123" />
+      <source>&amp;Reload</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4129" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4131" />
+      <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="4137" />
       <source>Close project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4120" />
+      <location filename="../Project/Project.py" line="4139" />
       <source>&amp;Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4126" />
+      <location filename="../Project/Project.py" line="4145" />
       <source>Close the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4128" />
+      <location filename="../Project/Project.py" line="4147" />
       <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="4134" />
+      <location filename="../Project/Project.py" line="4153" />
       <source>Save project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4410" />
-      <location filename="../Project/Project.py" line="4136" />
+      <location filename="../Project/Project.py" line="4429" />
+      <location filename="../Project/Project.py" line="4155" />
       <source>&amp;Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4142" />
+      <location filename="../Project/Project.py" line="4161" />
       <source>Save the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4144" />
+      <location filename="../Project/Project.py" line="4163" />
       <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="4150" />
+      <location filename="../Project/Project.py" line="4169" />
       <source>Save project as</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4152" />
+      <location filename="../Project/Project.py" line="4171" />
       <source>Save &amp;as...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4158" />
-      <source>Save the current project to a new file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4160" />
-      <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="4175" />
-      <source>Add files to project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4177" />
-      <source>Add &amp;files...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4183" />
-      <source>Add files to the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4185" />
-      <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>
+      <source>Save the current project to a new file</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4179" />
+      <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="4194" />
+      <source>Add files to project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4196" />
+      <source>Add &amp;files...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4202" />
+      <source>Add files to the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4204" />
+      <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="4215" />
       <source>Add directory to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4198" />
+      <location filename="../Project/Project.py" line="4217" />
       <source>Add directory...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4205" />
+      <location filename="../Project/Project.py" line="4224" />
       <source>Add a directory to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4208" />
-      <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="4218" />
-      <source>Add translation to project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4220" />
-      <source>Add &amp;translation...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4227" />
+      <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="4237" />
+      <source>Add translation to project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4239" />
+      <source>Add &amp;translation...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4246" />
       <source>Add a translation to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4230" />
-      <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="4240" />
-      <source>Search new files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4241" />
-      <source>Searc&amp;h new files...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4247" />
-      <source>Search new files in the project directory.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4249" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <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="4259" />
+      <source>Search new files</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4260" />
+      <source>Searc&amp;h new files...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4266" />
+      <source>Search new files in the project directory.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4268" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4279" />
       <source>Search Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4261" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4262" />
-      <source>Alt+Ctrl+P</source>
-      <comment>Project|Search Project File</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4267" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4269" />
-      <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="4278" />
-      <source>Project properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4280" />
-      <source>&amp;Properties...</source>
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4281" />
+      <source>Alt+Ctrl+P</source>
+      <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4286" />
-      <source>Show the project properties</source>
+      <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4288" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <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="4297" />
-      <source>User project properties</source>
+      <source>Project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4299" />
+      <source>&amp;Properties...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4305" />
+      <source>Show the project properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4307" />
+      <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="4316" />
+      <source>User project properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4318" />
       <source>&amp;User Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4306" />
+      <location filename="../Project/Project.py" line="4325" />
       <source>Show the user specific project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4309" />
+      <location filename="../Project/Project.py" line="4328" />
       <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="4319" />
+      <location filename="../Project/Project.py" line="4338" />
       <source>Filetype Associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4320" />
+      <location filename="../Project/Project.py" line="4339" />
       <source>Filetype Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4327" />
+      <location filename="../Project/Project.py" line="4346" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4330" />
+      <location filename="../Project/Project.py" line="4349" />
       <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="4343" />
+      <location filename="../Project/Project.py" line="4362" />
       <source>Lexer Associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4344" />
+      <location filename="../Project/Project.py" line="4363" />
       <source>Lexer Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4351" />
+      <location filename="../Project/Project.py" line="4370" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4354" />
-      <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="4372" />
-      <source>Debugger Properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4373" />
-      <source>Debugger &amp;Properties...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4379" />
-      <source>Show the debugger properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4381" />
-      <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>
+      <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="4391" />
-      <source>Load</source>
+      <source>Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4392" />
-      <source>&amp;Load</source>
+      <source>Debugger &amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4398" />
-      <source>Load the debugger properties</source>
+      <source>Show the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4400" />
+      <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="4410" />
+      <source>Load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4411" />
+      <source>&amp;Load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4417" />
+      <source>Load the debugger properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4419" />
       <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="4409" />
-      <source>Save</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4416" />
-      <source>Save the debugger properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4418" />
-      <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="4427" />
-      <source>Delete</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4428" />
-      <source>&amp;Delete</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4434" />
-      <source>Delete the debugger properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4436" />
-      <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>
+      <source>Save</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4435" />
+      <source>Save the debugger properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4437" />
+      <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="4446" />
-      <source>Reset</source>
+      <source>Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4447" />
-      <source>&amp;Reset</source>
+      <source>&amp;Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4453" />
-      <source>Reset the debugger properties</source>
+      <source>Delete the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4455" />
+      <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="4465" />
+      <source>Reset</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4466" />
+      <source>&amp;Reset</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4472" />
+      <source>Reset the debugger properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4474" />
       <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="4471" />
-      <location filename="../Project/Project.py" line="4470" />
+      <location filename="../Project/Project.py" line="4490" />
+      <location filename="../Project/Project.py" line="4489" />
       <source>Load session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4477" />
+      <location filename="../Project/Project.py" line="4496" />
       <source>Load the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4479" />
+      <location filename="../Project/Project.py" line="4498" />
       <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="4495" />
-      <location filename="../Project/Project.py" line="4494" />
+      <location filename="../Project/Project.py" line="4514" />
+      <location filename="../Project/Project.py" line="4513" />
       <source>Save session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4501" />
+      <location filename="../Project/Project.py" line="4520" />
       <source>Save the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4503" />
+      <location filename="../Project/Project.py" line="4522" />
       <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="4519" />
-      <location filename="../Project/Project.py" line="4518" />
+      <location filename="../Project/Project.py" line="4538" />
+      <location filename="../Project/Project.py" line="4537" />
       <source>Delete session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4525" />
+      <location filename="../Project/Project.py" line="4544" />
       <source>Delete the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4527" />
+      <location filename="../Project/Project.py" line="4546" />
       <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="4542" />
+      <location filename="../Project/Project.py" line="4561" />
       <source>Code Metrics</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4543" />
+      <location filename="../Project/Project.py" line="4562" />
       <source>&amp;Code Metrics...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4550" />
+      <location filename="../Project/Project.py" line="4569" />
       <source>Show some code metrics for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4553" />
+      <location filename="../Project/Project.py" line="4572" />
       <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="4563" />
+      <location filename="../Project/Project.py" line="4582" />
       <source>Python Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4564" />
+      <location filename="../Project/Project.py" line="4583" />
       <source>Code Co&amp;verage...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4571" />
+      <location filename="../Project/Project.py" line="4590" />
       <source>Show code coverage information for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4574" />
+      <location filename="../Project/Project.py" line="4593" />
       <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="5894" />
-      <location filename="../Project/Project.py" line="5881" />
-      <location filename="../Project/Project.py" line="4584" />
+      <location filename="../Project/Project.py" line="5914" />
+      <location filename="../Project/Project.py" line="5901" />
+      <location filename="../Project/Project.py" line="4603" />
       <source>Profile Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4585" />
+      <location filename="../Project/Project.py" line="4604" />
       <source>&amp;Profile Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4592" />
-      <source>Show profiling data for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4595" />
-      <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="5946" />
-      <location filename="../Project/Project.py" line="4610" />
-      <source>Application Diagram</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4611" />
-      <source>&amp;Application Diagram...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4618" />
-      <source>Show a diagram of the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4621" />
-      <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
+      <source>Show profiling data for the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4614" />
+      <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="5966" />
+      <location filename="../Project/Project.py" line="4629" />
+      <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4630" />
-      <source>Load Diagram</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4631" />
-      <source>&amp;Load Diagram...</source>
+      <source>&amp;Application Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4637" />
-      <source>Load a diagram from file.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4639" />
-      <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="6131" />
-      <location filename="../Project/Project.py" line="6080" />
-      <location filename="../Project/Project.py" line="4654" />
-      <source>Create Package List</source>
+      <source>Show a diagram of the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4640" />
+      <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="4649" />
+      <source>Load Diagram</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4650" />
+      <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4656" />
+      <source>Load a diagram from file.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4658" />
+      <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="6151" />
+      <location filename="../Project/Project.py" line="6100" />
+      <location filename="../Project/Project.py" line="4673" />
+      <source>Create Package List</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4675" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4663" />
+      <location filename="../Project/Project.py" line="4682" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4666" />
-      <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="6200" />
-      <location filename="../Project/Project.py" line="4677" />
-      <source>Create Plugin Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4679" />
-      <source>Create Plugin &amp;Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4685" />
+      <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="6220" />
+      <location filename="../Project/Project.py" line="4696" />
+      <source>Create Plugin Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4698" />
+      <source>Create Plugin &amp;Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4704" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4687" />
+      <location filename="../Project/Project.py" line="4706" />
       <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="4699" />
+      <location filename="../Project/Project.py" line="4718" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4701" />
+      <location filename="../Project/Project.py" line="4720" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4708" />
+      <location filename="../Project/Project.py" line="4727" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4711" />
+      <location filename="../Project/Project.py" line="4730" />
       <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="6621" />
-      <location filename="../Project/Project.py" line="6592" />
-      <location filename="../Project/Project.py" line="6543" />
-      <location filename="../Project/Project.py" line="4730" />
+      <location filename="../Project/Project.py" line="6641" />
+      <location filename="../Project/Project.py" line="6612" />
+      <location filename="../Project/Project.py" line="6563" />
+      <location filename="../Project/Project.py" line="4749" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4731" />
-      <source>&amp;Execute Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4737" />
-      <source>Perform a 'make' run.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4739" />
-      <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="6598" />
-      <location filename="../Project/Project.py" line="4749" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4750" />
+      <source>&amp;Execute Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4756" />
+      <source>Perform a 'make' run.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4758" />
+      <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="6618" />
+      <location filename="../Project/Project.py" line="4768" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4769" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4757" />
+      <location filename="../Project/Project.py" line="4776" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4760" />
-      <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="4778" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4779" />
+      <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="4797" />
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4798" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4786" />
+      <location filename="../Project/Project.py" line="4805" />
       <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4789" />
+      <location filename="../Project/Project.py" line="4808" />
       <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="4806" />
+      <location filename="../Project/Project.py" line="4825" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4826" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4813" />
+      <location filename="../Project/Project.py" line="4832" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4815" />
+      <location filename="../Project/Project.py" line="4834" />
       <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="4827" />
+      <location filename="../Project/Project.py" line="4846" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4847" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4835" />
+      <location filename="../Project/Project.py" line="4854" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4838" />
+      <location filename="../Project/Project.py" line="4857" />
       <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="4850" />
+      <location filename="../Project/Project.py" line="4869" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4851" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4858" />
-      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4863" />
-      <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="4876" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4877" />
+      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4882" />
+      <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="4895" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4884" />
+      <location filename="../Project/Project.py" line="4903" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4890" />
+      <location filename="../Project/Project.py" line="4909" />
       <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="5055" />
-      <location filename="../Project/Project.py" line="5005" />
-      <location filename="../Project/Project.py" line="5004" />
-      <location filename="../Project/Project.py" line="4904" />
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="5074" />
+      <location filename="../Project/Project.py" line="5024" />
+      <location filename="../Project/Project.py" line="5023" />
+      <location filename="../Project/Project.py" line="4923" />
+      <location filename="../Project/Project.py" line="4922" />
       <source>Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4930" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4916" />
+      <location filename="../Project/Project.py" line="4935" />
       <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="4932" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4933" />
+      <location filename="../Project/Project.py" line="4952" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4939" />
+      <location filename="../Project/Project.py" line="4958" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4960" />
       <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="4954" />
-      <location filename="../Project/Project.py" line="4953" />
+      <location filename="../Project/Project.py" line="4973" />
+      <location filename="../Project/Project.py" line="4972" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4961" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4983" />
       <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="4978" />
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4997" />
+      <location filename="../Project/Project.py" line="4996" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4985" />
+      <location filename="../Project/Project.py" line="5004" />
       <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="4991" />
+      <location filename="../Project/Project.py" line="5010" />
       <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="5012" />
+      <location filename="../Project/Project.py" line="5031" />
       <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="5018" />
+      <location filename="../Project/Project.py" line="5037" />
       <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="5034" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5035" />
+      <location filename="../Project/Project.py" line="5054" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5042" />
+      <location filename="../Project/Project.py" line="5061" />
       <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5045" />
+      <location filename="../Project/Project.py" line="5064" />
       <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="5056" />
+      <location filename="../Project/Project.py" line="5075" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5063" />
+      <location filename="../Project/Project.py" line="5082" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
-      <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="5076" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5077" />
-      <source>&amp;Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5083" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5085" />
-      <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="5097" />
-      <source>Recreate</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5098" />
-      <source>&amp;Recreate</source>
+      <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="5095" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5096" />
+      <source>&amp;Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5102" />
+      <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5104" />
+      <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="5116" />
+      <source>Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5117" />
+      <source>&amp;Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5123" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5106" />
+      <location filename="../Project/Project.py" line="5125" />
       <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="5135" />
-      <source>&amp;Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5136" />
-      <source>Open &amp;Recent Projects</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5137" />
-      <source>Session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5138" />
-      <source>Debugger</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5139" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5141" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5142" />
-      <source>&amp;Version Control</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5146" />
-      <source>Chec&amp;k</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5148" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5150" />
-      <source>Sho&amp;w</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&amp;Diagrams</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Pac&amp;kagers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5153" />
-      <source>Source &amp;Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5155" />
-      <source>Make</source>
+      <source>&amp;Project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5156" />
+      <source>Open &amp;Recent Projects</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5157" />
+      <source>Session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5158" />
+      <source>Debugger</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5159" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5161" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5162" />
+      <source>&amp;Version Control</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5166" />
+      <source>Chec&amp;k</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5168" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5170" />
+      <source>Sho&amp;w</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5171" />
+      <source>&amp;Diagrams</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Pac&amp;kagers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
+      <source>Source &amp;Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5175" />
+      <source>Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5176" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5317" />
-      <location filename="../Project/Project.py" line="5314" />
+      <location filename="../Project/Project.py" line="5337" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5378" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5557" />
       <source>Search New Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5558" />
       <source>There were no new files found to be added.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5687" />
-      <location filename="../Project/Project.py" line="5674" />
+      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5694" />
       <source>Version Control System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5695" />
       <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="5688" />
+      <location filename="../Project/Project.py" line="5708" />
       <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="5836" />
+      <location filename="../Project/Project.py" line="5856" />
       <source>Coverage Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5882" />
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5902" />
+      <location filename="../Project/Project.py" line="5857" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5849" />
+      <location filename="../Project/Project.py" line="5869" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5850" />
+      <location filename="../Project/Project.py" line="5870" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5915" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5947" />
+      <location filename="../Project/Project.py" line="5967" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6081" />
+      <location filename="../Project/Project.py" line="6101" />
       <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="6132" />
+      <location filename="../Project/Project.py" line="6152" />
       <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="6421" />
-      <location filename="../Project/Project.py" line="6379" />
-      <location filename="../Project/Project.py" line="6333" />
-      <location filename="../Project/Project.py" line="6322" />
-      <location filename="../Project/Project.py" line="6304" />
-      <location filename="../Project/Project.py" line="6271" />
-      <location filename="../Project/Project.py" line="6241" />
-      <location filename="../Project/Project.py" line="6213" />
-      <location filename="../Project/Project.py" line="6183" />
-      <location filename="../Project/Project.py" line="6169" />
-      <location filename="../Project/Project.py" line="6152" />
+      <location filename="../Project/Project.py" line="6441" />
+      <location filename="../Project/Project.py" line="6399" />
+      <location filename="../Project/Project.py" line="6353" />
+      <location filename="../Project/Project.py" line="6342" />
+      <location filename="../Project/Project.py" line="6324" />
+      <location filename="../Project/Project.py" line="6291" />
+      <location filename="../Project/Project.py" line="6261" />
+      <location filename="../Project/Project.py" line="6233" />
+      <location filename="../Project/Project.py" line="6203" />
+      <location filename="../Project/Project.py" line="6189" />
+      <location filename="../Project/Project.py" line="6172" />
       <source>Create Plugin Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6153" />
+      <location filename="../Project/Project.py" line="6173" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6170" />
+      <location filename="../Project/Project.py" line="6190" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6184" />
+      <location filename="../Project/Project.py" line="6204" />
       <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="6192" />
+      <location filename="../Project/Project.py" line="6212" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6193" />
+      <location filename="../Project/Project.py" line="6213" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6196" />
+      <location filename="../Project/Project.py" line="6216" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6214" />
+      <location filename="../Project/Project.py" line="6234" />
       <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="6242" />
+      <location filename="../Project/Project.py" line="6262" />
       <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="6272" />
+      <location filename="../Project/Project.py" line="6292" />
       <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="6305" />
+      <location filename="../Project/Project.py" line="6325" />
       <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="6323" />
+      <location filename="../Project/Project.py" line="6343" />
       <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="6334" />
+      <location filename="../Project/Project.py" line="6354" />
       <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="6380" />
+      <location filename="../Project/Project.py" line="6400" />
       <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="6422" />
+      <location filename="../Project/Project.py" line="6442" />
       <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="6544" />
+      <location filename="../Project/Project.py" line="6564" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6593" />
+      <location filename="../Project/Project.py" line="6613" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6601" />
+      <location filename="../Project/Project.py" line="6621" />
       <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="6606" />
+      <location filename="../Project/Project.py" line="6626" />
       <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="6622" />
+      <location filename="../Project/Project.py" line="6642" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -57568,22 +57589,22 @@
   <context>
     <name>ProjectFile</name>
     <message>
-      <location filename="../Project/ProjectFile.py" line="109" />
+      <location filename="../Project/ProjectFile.py" line="108" />
       <source>Save Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFile.py" line="110" />
+      <location filename="../Project/ProjectFile.py" line="109" />
       <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectFile.py" line="134" />
+      <source>Read Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectFile.py" line="135" />
-      <source>Read Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectFile.py" line="136" />
       <source>&lt;p&gt;The project 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>
@@ -59447,265 +59468,265 @@
   <context>
     <name>ProjectTranslationsBrowser</name>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="99" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="76" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="74" />
       <source>Translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="79" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="77" />
       <source>&lt;b&gt;Project Translations Browser&lt;/b&gt;&lt;p&gt;This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="95" />
       <source>Translation Files ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="98" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="96" />
       <source>Translation Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="109" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="107" />
       <source>Translations Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="239" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="183" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="237" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="181" />
       <source>Generate translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="249" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="247" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="538" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="360" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="258" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="194" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="536" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="507" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="330" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="256" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="192" />
       <source>Generate all translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="513" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="369" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="267" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="198" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="545" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="511" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="367" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="196" />
       <source>Generate all translations (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="419" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="417" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
       <source>Open in Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="423" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="279" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="206" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="471" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="421" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="277" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="204" />
       <source>Open in Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="286" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="284" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
       <source>Release translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="518" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="377" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="341" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="295" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="553" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="516" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="375" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="339" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="293" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="214" />
       <source>Release all translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="220" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
       <source>Preview translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="346" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="344" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Preview all translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="441" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="352" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="527" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
       <source>Extract messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="469" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="275" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="273" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="488" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="302" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="486" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="300" />
       <source>Remove from project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="561" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="491" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="305" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="559" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="489" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
       <source>Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="384" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="309" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="307" />
       <source>Add translation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="568" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="566" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="385" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
       <source>Add translation files...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="569" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="313" />
+      <source>Copy Path to Clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="492" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="388" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="315" />
-      <source>Copy Path to Clipboard</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="573" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="390" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="448" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
       <source>Generate translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="460" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="458" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="410" />
       <source>Generate translations (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="480" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="478" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="426" />
       <source>Release translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="432" />
       <source>Preview translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="835" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="833" />
       <source>Delete translation files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="836" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="834" />
       <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="1504" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1001" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="961" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1502" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="999" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="959" />
       <source>Write temporary project file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1505" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1241" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="962" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1239" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="960" />
       <source>No translation files (*.ts) selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1002" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1000" />
       <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="1240" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1123" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1111" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1238" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1121" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1109" />
       <source>Translation file generation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1112" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1110" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1118" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1116" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1122" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1534" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1532" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1292" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1337" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1295" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1335" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1293" />
       <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="1427" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1425" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1405" />
       <source>Translation file release</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1406" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1426" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1535" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1533" />
       <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>
@@ -82609,2216 +82630,2228 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="574" />
+      <location filename="../UI/UserInterface.py" line="573" />
       <source>Initializing Tools...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="585" />
+      <location filename="../UI/UserInterface.py" line="584" />
       <source>Registering Objects...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="619" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Initializing Actions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="621" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Initializing Menus...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="623" />
+      <location filename="../UI/UserInterface.py" line="622" />
       <source>Initializing Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="625" />
+      <location filename="../UI/UserInterface.py" line="624" />
       <source>Initializing Statusbar...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Single Application Server...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="658" />
+      <location filename="../UI/UserInterface.py" line="657" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="661" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Activating Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="663" />
+      <location filename="../UI/UserInterface.py" line="662" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="666" />
+      <location filename="../UI/UserInterface.py" line="665" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="673" />
+      <location filename="../UI/UserInterface.py" line="672" />
       <source>Restoring Toolbarmanager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="680" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="693" />
       <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="699" />
+      <location filename="../UI/UserInterface.py" line="698" />
       <source>Reading Templates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="703" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
-      <location filename="../UI/UserInterface.py" line="1066" />
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1065" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2224" />
-      <location filename="../UI/UserInterface.py" line="1076" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1075" />
       <source>Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2201" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1085" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2020" />
-      <location filename="../UI/UserInterface.py" line="1279" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2019" />
+      <location filename="../UI/UserInterface.py" line="1278" />
+      <location filename="../UI/UserInterface.py" line="1095" />
       <source>Multiproject-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1997" />
+      <location filename="../UI/UserInterface.py" line="1284" />
+      <location filename="../UI/UserInterface.py" line="1101" />
+      <source>Project-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2559" />
+      <location filename="../UI/UserInterface.py" line="2558" />
+      <location filename="../UI/UserInterface.py" line="1291" />
+      <location filename="../UI/UserInterface.py" line="1108" />
+      <source>Find/Replace In Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1298" />
+      <location filename="../UI/UserInterface.py" line="1115" />
+      <source>Find File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1304" />
+      <location filename="../UI/UserInterface.py" line="1121" />
+      <source>VCS Status</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1311" />
+      <location filename="../UI/UserInterface.py" line="1128" />
+      <source>Template-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2085" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1135" />
+      <source>File-Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1325" />
+      <location filename="../UI/UserInterface.py" line="1142" />
+      <source>Symbols</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2041" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Debug-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2412" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1159" />
+      <source>Code Documentation Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2628" />
+      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="1361" />
+      <location filename="../UI/UserInterface.py" line="1166" />
+      <source>Help Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1367" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>Plugin Repository</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1373" />
+      <location filename="../UI/UserInterface.py" line="1178" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2440" />
+      <location filename="../UI/UserInterface.py" line="2439" />
+      <location filename="../UI/UserInterface.py" line="1378" />
+      <location filename="../UI/UserInterface.py" line="1183" />
+      <source>PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="2461" />
+      <location filename="../UI/UserInterface.py" line="1385" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Conda</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1392" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Cooperation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2340" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
+      <source>IRC</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="2483" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>MicroPython</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2063" />
+      <location filename="../UI/UserInterface.py" line="1410" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2129" />
+      <location filename="../UI/UserInterface.py" line="1416" />
+      <location filename="../UI/UserInterface.py" line="1219" />
+      <source>Task-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2107" />
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1223" />
+      <source>Log-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1429" />
+      <location filename="../UI/UserInterface.py" line="1230" />
+      <source>Numbers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1815" />
+      <source>{0} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1822" />
+      <location filename="../UI/UserInterface.py" line="1818" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1826" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1850" />
+      <source>Quit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1852" />
+      <source>&amp;Quit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1853" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1858" />
+      <source>Quit the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1860" />
+      <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="1874" />
+      <location filename="../UI/UserInterface.py" line="1872" />
+      <source>Restart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1880" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
+      <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="1900" />
+      <location filename="../UI/UserInterface.py" line="1893" />
+      <source>Save session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1894" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1902" />
+      <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="7649" />
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Load session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1913" />
+      <source>Load session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1921" />
+      <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="1931" />
+      <source>New Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1933" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1934" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1941" />
+      <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="1955" />
+      <location filename="../UI/UserInterface.py" line="1953" />
+      <source>Edit Profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
+      <source>Activate the edit view profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1964" />
+      <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="1977" />
+      <location filename="../UI/UserInterface.py" line="1975" />
+      <source>Debug Profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1984" />
+      <source>Activate the debug view profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1986" />
+      <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="1998" />
-      <location filename="../UI/UserInterface.py" line="1285" />
-      <location filename="../UI/UserInterface.py" line="1102" />
-      <source>Project-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2560" />
-      <location filename="../UI/UserInterface.py" line="2559" />
-      <location filename="../UI/UserInterface.py" line="1292" />
-      <location filename="../UI/UserInterface.py" line="1109" />
-      <source>Find/Replace In Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
-      <location filename="../UI/UserInterface.py" line="2582" />
-      <location filename="../UI/UserInterface.py" line="1299" />
-      <location filename="../UI/UserInterface.py" line="1116" />
-      <source>Find File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1305" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>VCS Status</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
-      <location filename="../UI/UserInterface.py" line="1312" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Template-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2086" />
-      <location filename="../UI/UserInterface.py" line="1319" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>File-Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Symbols</source>
+      <source>&amp;Project-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Alt+Shift+P</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2005" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2008" />
+      <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="2020" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Alt+Shift+M</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2027" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2030" />
+      <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="2042" />
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1153" />
-      <source>Debug-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2414" />
-      <location filename="../UI/UserInterface.py" line="2413" />
-      <location filename="../UI/UserInterface.py" line="1355" />
-      <location filename="../UI/UserInterface.py" line="1160" />
-      <source>Code Documentation Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2629" />
-      <location filename="../UI/UserInterface.py" line="2628" />
-      <location filename="../UI/UserInterface.py" line="1362" />
-      <location filename="../UI/UserInterface.py" line="1167" />
-      <source>Help Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <location filename="../UI/UserInterface.py" line="2509" />
-      <location filename="../UI/UserInterface.py" line="2508" />
-      <location filename="../UI/UserInterface.py" line="1368" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Plugin Repository</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
-      <location filename="../UI/UserInterface.py" line="2532" />
-      <location filename="../UI/UserInterface.py" line="1374" />
-      <location filename="../UI/UserInterface.py" line="1179" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2441" />
-      <location filename="../UI/UserInterface.py" line="2440" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1184" />
-      <source>PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2463" />
-      <location filename="../UI/UserInterface.py" line="2462" />
-      <location filename="../UI/UserInterface.py" line="1386" />
-      <location filename="../UI/UserInterface.py" line="1189" />
-      <source>Conda</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1393" />
-      <location filename="../UI/UserInterface.py" line="1196" />
-      <source>Cooperation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
-      <location filename="../UI/UserInterface.py" line="1397" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>IRC</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
-      <location filename="../UI/UserInterface.py" line="2484" />
-      <location filename="../UI/UserInterface.py" line="1403" />
-      <location filename="../UI/UserInterface.py" line="1208" />
-      <source>MicroPython</source>
+      <source>&amp;Debug-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <source>Alt+Shift+D</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2049" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2052" />
+      <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="2064" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2130" />
-      <location filename="../UI/UserInterface.py" line="1417" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>Task-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2108" />
-      <location filename="../UI/UserInterface.py" line="1423" />
-      <location filename="../UI/UserInterface.py" line="1224" />
-      <source>Log-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1430" />
-      <location filename="../UI/UserInterface.py" line="1231" />
-      <source>Numbers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1816" />
-      <source>{0} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1823" />
-      <location filename="../UI/UserInterface.py" line="1819" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1851" />
-      <source>Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <source>&amp;Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1854" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>Quit the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1861" />
-      <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="1875" />
-      <location filename="../UI/UserInterface.py" line="1873" />
-      <source>Restart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1881" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1883" />
-      <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="1901" />
-      <location filename="../UI/UserInterface.py" line="1894" />
-      <source>Save session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1903" />
-      <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="7650" />
-      <location filename="../UI/UserInterface.py" line="1920" />
-      <location filename="../UI/UserInterface.py" line="1913" />
-      <source>Load session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1914" />
-      <source>Load session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1922" />
-      <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="1932" />
-      <source>New Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1934" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1940" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1942" />
-      <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="1956" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <source>Edit Profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1963" />
-      <source>Activate the edit view profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1965" />
-      <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="1978" />
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>Debug Profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1985" />
-      <source>Activate the debug view profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1987" />
-      <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="1999" />
-      <source>&amp;Project-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2000" />
-      <source>Alt+Shift+P</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2006" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2009" />
-      <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="2021" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Alt+Shift+M</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2028" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2031" />
-      <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="2043" />
-      <source>&amp;Debug-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Alt+Shift+D</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2050" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2053" />
-      <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>
+      <source>&amp;Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&amp;Shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+S</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2072" />
+      <location filename="../UI/UserInterface.py" line="2071" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2075" />
+      <location filename="../UI/UserInterface.py" line="2074" />
       <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="2086" />
+      <source>&amp;File-Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&amp;File-Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2094" />
+      <location filename="../UI/UserInterface.py" line="2093" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2097" />
+      <location filename="../UI/UserInterface.py" line="2096" />
       <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="2108" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2109" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+G</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2116" />
+      <location filename="../UI/UserInterface.py" line="2115" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2119" />
+      <location filename="../UI/UserInterface.py" line="2118" />
       <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="2130" />
+      <source>&amp;Task-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&amp;Task-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+T</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2138" />
+      <location filename="../UI/UserInterface.py" line="2137" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2141" />
+      <location filename="../UI/UserInterface.py" line="2140" />
       <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="2153" />
+      <source>Templ&amp;ate-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2154" />
-      <source>Templ&amp;ate-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
       <source>Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2161" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <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="2179" />
+      <location filename="../UI/UserInterface.py" line="2178" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2186" />
+      <location filename="../UI/UserInterface.py" line="2185" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2187" />
       <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="2202" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2209" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2211" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <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="2225" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2232" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2234" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <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="2246" />
+      <source>Left Sidebar</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2247" />
-      <source>Left Sidebar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
       <source>&amp;Left Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2255" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the left sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2257" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2269" />
+      <source>Right Sidebar</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2270" />
-      <source>Right Sidebar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2271" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2278" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2280" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2292" />
+      <source>Bottom Sidebar</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2293" />
-      <source>Bottom Sidebar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2294" />
       <source>&amp;Bottom Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2301" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the bottom sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2303" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <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="2315" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2316" />
-      <source>Cooperation-Viewer</source>
+      <source>Co&amp;operation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2317" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
       <source>Alt+Shift+O</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2324" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2326" />
       <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="2341" />
+      <source>&amp;IRC</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2342" />
-      <source>&amp;IRC</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2349" />
+      <location filename="../UI/UserInterface.py" line="2348" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2352" />
+      <location filename="../UI/UserInterface.py" line="2351" />
       <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="2362" />
+      <source>Symbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2363" />
-      <source>Symbols-Viewer</source>
+      <source>S&amp;ymbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2364" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2371" />
+      <location filename="../UI/UserInterface.py" line="2370" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2374" />
+      <location filename="../UI/UserInterface.py" line="2373" />
       <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="2387" />
+      <source>Numbers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2388" />
-      <source>Numbers-Viewer</source>
+      <source>Num&amp;bers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2389" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2396" />
+      <location filename="../UI/UserInterface.py" line="2395" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2399" />
+      <location filename="../UI/UserInterface.py" line="2398" />
       <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="2415" />
+      <location filename="../UI/UserInterface.py" line="2414" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2421" />
+      <location filename="../UI/UserInterface.py" line="2420" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2426" />
+      <location filename="../UI/UserInterface.py" line="2425" />
       <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="2442" />
+      <location filename="../UI/UserInterface.py" line="2441" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
+      <location filename="../UI/UserInterface.py" line="2447" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2451" />
+      <location filename="../UI/UserInterface.py" line="2450" />
       <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="2464" />
+      <location filename="../UI/UserInterface.py" line="2463" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2470" />
+      <location filename="../UI/UserInterface.py" line="2469" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2473" />
+      <location filename="../UI/UserInterface.py" line="2472" />
       <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="2486" />
+      <location filename="../UI/UserInterface.py" line="2485" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2492" />
+      <location filename="../UI/UserInterface.py" line="2491" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2495" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <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="2510" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2516" />
+      <location filename="../UI/UserInterface.py" line="2515" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2534" />
+      <location filename="../UI/UserInterface.py" line="2533" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2540" />
+      <location filename="../UI/UserInterface.py" line="2539" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
       <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="2561" />
+      <location filename="../UI/UserInterface.py" line="2560" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
+      <location filename="../UI/UserInterface.py" line="2566" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2570" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <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="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2590" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2593" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <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="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <source>VCS Status List</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
-      <location filename="../UI/UserInterface.py" line="2606" />
-      <source>VCS Status List</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2614" />
+      <location filename="../UI/UserInterface.py" line="2613" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <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="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2636" />
+      <location filename="../UI/UserInterface.py" line="2635" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2639" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <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="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <source>&amp;What's This?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2654" />
-      <source>&amp;What's This?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
       <source>Shift+F1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2660" />
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2662" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <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="2675" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>Helpviewer</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2676" />
+      <source>&amp;Helpviewer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
-      <source>&amp;Helpviewer...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2678" />
       <source>F1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2683" />
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Open the helpviewer window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2685" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <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="2704" />
+      <source>Show Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2705" />
-      <source>Show Versions</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Show &amp;Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2711" />
       <source>Display version information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2714" />
+      <location filename="../UI/UserInterface.py" line="2713" />
       <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="2729" />
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>Show Error Log</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2722" />
       <source>Show Error &amp;Log...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2730" />
       <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="2739" />
+      <source>Show Install Info</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2740" />
-      <source>Show Install Info</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2747" />
+      <location filename="../UI/UserInterface.py" line="2746" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2749" />
+      <location filename="../UI/UserInterface.py" line="2748" />
       <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="4633" />
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="4632" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report Bug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report &amp;Bug...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
+      <location filename="../UI/UserInterface.py" line="2760" />
       <source>Report a bug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <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="2770" />
+      <source>Request Feature</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2771" />
-      <source>Request Feature</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2772" />
       <source>Request &amp;Feature...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2777" />
       <source>Send a feature request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2780" />
+      <location filename="../UI/UserInterface.py" line="2779" />
       <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="4091" />
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2792" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
+      <location filename="../UI/UserInterface.py" line="2798" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2801" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <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="2812" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2820" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2821" />
       <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="2832" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2833" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2844" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <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="2854" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
+      <location filename="../UI/UserInterface.py" line="2855" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>Run tests of the current script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2864" />
+      <location filename="../UI/UserInterface.py" line="2863" />
       <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="2873" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2881" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <source>Run tests of the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <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="2905" />
+      <location filename="../UI/UserInterface.py" line="2904" />
       <source>Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2907" />
+      <location filename="../UI/UserInterface.py" line="2906" />
       <source>Qt-&amp;Designer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2912" />
       <source>Start Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2915" />
+      <location filename="../UI/UserInterface.py" line="2914" />
       <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="2935" />
+      <location filename="../UI/UserInterface.py" line="2934" />
       <source>Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2937" />
+      <location filename="../UI/UserInterface.py" line="2936" />
       <source>Qt-&amp;Linguist...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2943" />
+      <location filename="../UI/UserInterface.py" line="2942" />
       <source>Start Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2945" />
+      <location filename="../UI/UserInterface.py" line="2944" />
       <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="2953" />
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>UI Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
+      <location filename="../UI/UserInterface.py" line="2954" />
       <source>&amp;UI Previewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2961" />
+      <location filename="../UI/UserInterface.py" line="2960" />
       <source>Start the UI Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2962" />
       <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="2969" />
+      <location filename="../UI/UserInterface.py" line="2968" />
       <source>Translations Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2971" />
+      <location filename="../UI/UserInterface.py" line="2970" />
       <source>&amp;Translations Previewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="2976" />
       <source>Start the Translations Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2979" />
+      <location filename="../UI/UserInterface.py" line="2978" />
       <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="2988" />
+      <location filename="../UI/UserInterface.py" line="2987" />
       <source>Compare Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2990" />
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&amp;Compare Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="2995" />
       <source>Compare two files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2998" />
+      <location filename="../UI/UserInterface.py" line="2997" />
       <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="3007" />
+      <location filename="../UI/UserInterface.py" line="3006" />
       <source>Compare Files side by side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3009" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3017" />
+      <location filename="../UI/UserInterface.py" line="3016" />
       <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="3027" />
+      <location filename="../UI/UserInterface.py" line="3026" />
       <source>SQL Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3028" />
       <source>SQL &amp;Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3035" />
+      <location filename="../UI/UserInterface.py" line="3034" />
       <source>Browse a SQL database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3037" />
+      <location filename="../UI/UserInterface.py" line="3036" />
       <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="3051" />
-      <location filename="../UI/UserInterface.py" line="3043" />
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <location filename="../UI/UserInterface.py" line="3042" />
       <source>Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3045" />
+      <location filename="../UI/UserInterface.py" line="3044" />
       <source>Mini &amp;Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3053" />
+      <location filename="../UI/UserInterface.py" line="3052" />
       <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="3062" />
+      <location filename="../UI/UserInterface.py" line="3061" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3064" />
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
+      <location filename="../UI/UserInterface.py" line="3069" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3072" />
+      <location filename="../UI/UserInterface.py" line="3071" />
       <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="3082" />
+      <location filename="../UI/UserInterface.py" line="3081" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3084" />
+      <location filename="../UI/UserInterface.py" line="3083" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3089" />
       <source>Start the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3092" />
+      <location filename="../UI/UserInterface.py" line="3091" />
       <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="3101" />
+      <location filename="../UI/UserInterface.py" line="3100" />
       <source>Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3103" />
+      <location filename="../UI/UserInterface.py" line="3102" />
       <source>&amp;Icon Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3109" />
+      <location filename="../UI/UserInterface.py" line="3108" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
+      <location filename="../UI/UserInterface.py" line="3110" />
       <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="3120" />
+      <location filename="../UI/UserInterface.py" line="3119" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3122" />
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3128" />
+      <location filename="../UI/UserInterface.py" line="3127" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3129" />
       <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="3140" />
+      <location filename="../UI/UserInterface.py" line="3139" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3142" />
+      <location filename="../UI/UserInterface.py" line="3141" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3147" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3149" />
       <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="3161" />
+      <location filename="../UI/UserInterface.py" line="3160" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3163" />
+      <location filename="../UI/UserInterface.py" line="3162" />
       <source>E&amp;xport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3169" />
+      <location filename="../UI/UserInterface.py" line="3168" />
       <source>Export the current configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="3170" />
       <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="3180" />
+      <location filename="../UI/UserInterface.py" line="3179" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3182" />
+      <location filename="../UI/UserInterface.py" line="3181" />
       <source>I&amp;mport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3188" />
       <source>Import a previously exported configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3192" />
+      <location filename="../UI/UserInterface.py" line="3191" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3200" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3203" />
+      <location filename="../UI/UserInterface.py" line="3202" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3209" />
+      <location filename="../UI/UserInterface.py" line="3208" />
       <source>Export the current theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
+      <location filename="../UI/UserInterface.py" line="3210" />
       <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="3220" />
+      <location filename="../UI/UserInterface.py" line="3219" />
       <source>Import Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3222" />
+      <location filename="../UI/UserInterface.py" line="3221" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3228" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
+      <location filename="../UI/UserInterface.py" line="3229" />
       <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="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload &amp;APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3241" />
+      <location filename="../UI/UserInterface.py" line="3240" />
       <source>Reload the API information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3243" />
+      <location filename="../UI/UserInterface.py" line="3242" />
       <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="3257" />
-      <location filename="../UI/UserInterface.py" line="3249" />
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <location filename="../UI/UserInterface.py" line="3248" />
       <source>Show external tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
+      <location filename="../UI/UserInterface.py" line="3250" />
       <source>Show external &amp;tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3258" />
       <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="3269" />
+      <location filename="../UI/UserInterface.py" line="3268" />
       <source>View Profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
+      <location filename="../UI/UserInterface.py" line="3270" />
       <source>&amp;View Profiles...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3277" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Configure view profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
+      <location filename="../UI/UserInterface.py" line="3278" />
       <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="3290" />
+      <location filename="../UI/UserInterface.py" line="3289" />
       <source>Toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3292" />
+      <location filename="../UI/UserInterface.py" line="3291" />
       <source>Tool&amp;bars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
+      <location filename="../UI/UserInterface.py" line="3297" />
       <source>Configure toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3299" />
       <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="3311" />
+      <location filename="../UI/UserInterface.py" line="3310" />
       <source>Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3313" />
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3319" />
+      <location filename="../UI/UserInterface.py" line="3318" />
       <source>Set the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
+      <location filename="../UI/UserInterface.py" line="3320" />
       <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="7335" />
-      <location filename="../UI/UserInterface.py" line="7316" />
-      <location filename="../UI/UserInterface.py" line="3331" />
+      <location filename="../UI/UserInterface.py" line="7334" />
+      <location filename="../UI/UserInterface.py" line="7315" />
+      <location filename="../UI/UserInterface.py" line="3330" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3333" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
+      <location filename="../UI/UserInterface.py" line="3338" />
       <source>Export the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3341" />
+      <location filename="../UI/UserInterface.py" line="3340" />
       <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="7354" />
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="7353" />
+      <location filename="../UI/UserInterface.py" line="3349" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3352" />
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="3357" />
       <source>Import the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3359" />
       <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="3370" />
+      <location filename="../UI/UserInterface.py" line="3369" />
       <source>Manage SSL Certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3372" />
+      <location filename="../UI/UserInterface.py" line="3371" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3378" />
       <source>Manage the saved SSL certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3382" />
+      <location filename="../UI/UserInterface.py" line="3381" />
       <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="3392" />
+      <location filename="../UI/UserInterface.py" line="3391" />
       <source>Edit Message Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3394" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="3400" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3404" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <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="3423" />
-      <location filename="../UI/UserInterface.py" line="3417" />
-      <location filename="../UI/UserInterface.py" line="3415" />
+      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Clear private data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3425" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <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="3435" />
+      <location filename="../UI/UserInterface.py" line="3434" />
+      <source>Activate current editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3436" />
-      <location filename="../UI/UserInterface.py" line="3435" />
-      <source>Activate current editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3447" />
+      <location filename="../UI/UserInterface.py" line="3446" />
+      <source>Show next</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3448" />
-      <location filename="../UI/UserInterface.py" line="3447" />
-      <source>Show next</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
       <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3458" />
+      <source>Show previous</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3460" />
-      <location filename="../UI/UserInterface.py" line="3459" />
-      <source>Show previous</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3461" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Switch between tabs</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3472" />
-      <location filename="../UI/UserInterface.py" line="3471" />
-      <source>Switch between tabs</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Ctrl+1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
       <source>Plugin Infos</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3485" />
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>&amp;Plugin Infos...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
+      <location filename="../UI/UserInterface.py" line="3490" />
       <source>Show Plugin Infos</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
+      <location filename="../UI/UserInterface.py" line="3492" />
       <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="3511" />
-      <location filename="../UI/UserInterface.py" line="3503" />
+      <location filename="../UI/UserInterface.py" line="3510" />
+      <location filename="../UI/UserInterface.py" line="3502" />
       <source>Install Plugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3504" />
       <source>&amp;Install Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
+      <location filename="../UI/UserInterface.py" line="3512" />
       <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="3530" />
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Uninstall Plugin</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3524" />
+      <location filename="../UI/UserInterface.py" line="3523" />
       <source>&amp;Uninstall Plugin...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <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="3543" />
+      <location filename="../UI/UserInterface.py" line="3542" />
       <source>Plugin &amp;Repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <source>Show Plugins available for download</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3551" />
+      <location filename="../UI/UserInterface.py" line="3550" />
       <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="3578" />
       <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="3576" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3584" />
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Open Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3599" />
       <location filename="../UI/UserInterface.py" line="3598" />
+      <location filename="../UI/UserInterface.py" line="3597" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3605" />
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3606" />
       <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="3620" />
       <location filename="../UI/UserInterface.py" line="3619" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3626" />
+      <location filename="../UI/UserInterface.py" line="3625" />
       <source>Open PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3627" />
       <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="3641" />
       <location filename="../UI/UserInterface.py" line="3640" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3647" />
+      <location filename="../UI/UserInterface.py" line="3646" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3648" />
       <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="3667" />
       <location filename="../UI/UserInterface.py" line="3666" />
+      <location filename="../UI/UserInterface.py" line="3665" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3673" />
+      <location filename="../UI/UserInterface.py" line="3672" />
       <source>Open Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <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="3694" />
       <location filename="../UI/UserInterface.py" line="3693" />
+      <location filename="../UI/UserInterface.py" line="3692" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3700" />
+      <location filename="../UI/UserInterface.py" line="3699" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
       <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="3720" />
       <location filename="../UI/UserInterface.py" line="3719" />
+      <location filename="../UI/UserInterface.py" line="3718" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3726" />
+      <location filename="../UI/UserInterface.py" line="3725" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
       <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="3746" />
       <location filename="../UI/UserInterface.py" line="3745" />
+      <location filename="../UI/UserInterface.py" line="3744" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3752" />
+      <location filename="../UI/UserInterface.py" line="3751" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <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="3854" />
+      <location filename="../UI/UserInterface.py" line="3853" />
       <source>E&amp;xtras</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
+      <location filename="../UI/UserInterface.py" line="3863" />
       <source>Wi&amp;zards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3882" />
+      <location filename="../UI/UserInterface.py" line="3881" />
       <source>P&amp;lugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3891" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3900" />
+      <location filename="../UI/UserInterface.py" line="3899" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3917" />
+      <location filename="../UI/UserInterface.py" line="3916" />
       <source>Select Tool Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3961" />
+      <location filename="../UI/UserInterface.py" line="3960" />
       <source>&amp;Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3970" />
+      <location filename="../UI/UserInterface.py" line="3969" />
       <source>&amp;Windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3974" />
+      <location filename="../UI/UserInterface.py" line="3973" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3978" />
+      <location filename="../UI/UserInterface.py" line="3977" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3997" />
+      <location filename="../UI/UserInterface.py" line="3996" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4016" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4024" />
+      <location filename="../UI/UserInterface.py" line="4023" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4030" />
+      <location filename="../UI/UserInterface.py" line="4029" />
       <source>&amp;Toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4043" />
+      <location filename="../UI/UserInterface.py" line="4042" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="4112" />
+      <location filename="../UI/UserInterface.py" line="4089" />
       <source>Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4093" />
+      <source>Settings</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6147" />
       <location filename="../UI/UserInterface.py" line="4115" />
       <location filename="../UI/UserInterface.py" line="4094" />
-      <source>Settings</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6148" />
+      <source>Help</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4116" />
       <location filename="../UI/UserInterface.py" line="4095" />
-      <source>Help</source>
+      <source>Profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="4117" />
       <location filename="../UI/UserInterface.py" line="4096" />
-      <source>Profiles</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4118" />
-      <location filename="../UI/UserInterface.py" line="4097" />
       <source>Plugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4113" />
       <source>Unittest</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4286" />
+      <location filename="../UI/UserInterface.py" line="4285" />
       <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="4295" />
+      <location filename="../UI/UserInterface.py" line="4294" />
       <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="4304" />
+      <location filename="../UI/UserInterface.py" line="4303" />
       <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="4313" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4322" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4331" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4345" />
+      <location filename="../UI/UserInterface.py" line="4344" />
       <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="4416" />
-      <location filename="../UI/UserInterface.py" line="4375" />
+      <location filename="../UI/UserInterface.py" line="4415" />
+      <location filename="../UI/UserInterface.py" line="4374" />
       <source>External Tools/{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4524" />
+      <location filename="../UI/UserInterface.py" line="4523" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4573" />
+      <location filename="../UI/UserInterface.py" line="4572" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4590" />
+      <location filename="../UI/UserInterface.py" line="4589" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4593" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4597" />
+      <location filename="../UI/UserInterface.py" line="4596" />
       <source>&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4633" />
       <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="4948" />
+      <source>Restart application</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4949" />
-      <source>Restart application</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4950" />
       <source>The application needs to be restarted. Do it now?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="4973" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4974" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4975" />
       <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="5024" />
+      <location filename="../UI/UserInterface.py" line="4998" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="4999" />
+      <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="5025" />
-      <location filename="../UI/UserInterface.py" line="4999" />
-      <source>Upgrade Eric</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5000" />
-      <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="5026" />
       <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="5084" />
+      <location filename="../UI/UserInterface.py" line="5083" />
       <source>&amp;Builtin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5101" />
+      <location filename="../UI/UserInterface.py" line="5100" />
       <source>&amp;Plugin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5103" />
       <source>&amp;User Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5130" />
+      <location filename="../UI/UserInterface.py" line="5129" />
       <source>Configure Tool Groups ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5134" />
+      <location filename="../UI/UserInterface.py" line="5133" />
       <source>Configure current Tool Group ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5173" />
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5172" />
+      <location filename="../UI/UserInterface.py" line="5152" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5247" />
+      <location filename="../UI/UserInterface.py" line="5246" />
       <source>&amp;Show all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5249" />
+      <location filename="../UI/UserInterface.py" line="5248" />
       <source>&amp;Hide all</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6282" />
+      <location filename="../UI/UserInterface.py" line="6271" />
+      <location filename="../UI/UserInterface.py" line="6223" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6049" />
+      <location filename="../UI/UserInterface.py" line="6039" />
+      <location filename="../UI/UserInterface.py" line="5982" />
+      <location filename="../UI/UserInterface.py" line="5972" />
+      <source>Problem</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6283" />
       <location filename="../UI/UserInterface.py" line="6272" />
       <location filename="../UI/UserInterface.py" line="6224" />
@@ -84827,310 +84860,298 @@
       <location filename="../UI/UserInterface.py" line="6040" />
       <location filename="../UI/UserInterface.py" line="5983" />
       <location filename="../UI/UserInterface.py" line="5973" />
-      <source>Problem</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6273" />
-      <location filename="../UI/UserInterface.py" line="6225" />
-      <location filename="../UI/UserInterface.py" line="6215" />
-      <location filename="../UI/UserInterface.py" line="6051" />
-      <location filename="../UI/UserInterface.py" line="6041" />
-      <location filename="../UI/UserInterface.py" line="5984" />
-      <location filename="../UI/UserInterface.py" line="5974" />
       <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="6495" />
+      <location filename="../UI/UserInterface.py" line="6408" />
+      <location filename="../UI/UserInterface.py" line="6318" />
+      <location filename="../UI/UserInterface.py" line="6295" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6163" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
+      <location filename="../UI/UserInterface.py" line="6080" />
+      <location filename="../UI/UserInterface.py" line="6071" />
+      <location filename="../UI/UserInterface.py" line="6013" />
+      <location filename="../UI/UserInterface.py" line="6004" />
+      <source>Process Generation Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6005" />
+      <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="6014" />
+      <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="6072" />
+      <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="6081" />
+      <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="6115" />
+      <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="6124" />
+      <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="6148" />
+      <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="6164" />
+      <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="6185" />
+      <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="6237" />
+      <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="6296" />
+      <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="6319" />
+      <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="6409" />
+      <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="6442" />
+      <location filename="../UI/UserInterface.py" line="6432" />
+      <source>External Tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <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="6443" />
+      <source>No toolgroup entry '{0}' found.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6478" />
+      <source>Starting process '{0} {1}'.
+</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6496" />
-      <location filename="../UI/UserInterface.py" line="6409" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6296" />
-      <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6164" />
-      <location filename="../UI/UserInterface.py" line="6124" />
-      <location filename="../UI/UserInterface.py" line="6115" />
-      <location filename="../UI/UserInterface.py" line="6081" />
-      <location filename="../UI/UserInterface.py" line="6072" />
-      <location filename="../UI/UserInterface.py" line="6014" />
-      <location filename="../UI/UserInterface.py" line="6005" />
-      <source>Process Generation Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6006" />
-      <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="6015" />
-      <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="6073" />
-      <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="6082" />
-      <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="6116" />
-      <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="6125" />
-      <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="6149" />
-      <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="6165" />
-      <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="6186" />
-      <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="6238" />
-      <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="6297" />
-      <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="6320" />
-      <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="6410" />
-      <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="6443" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <source>External Tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6434" />
-      <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="6444" />
-      <source>No toolgroup entry '{0}' found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6479" />
-      <source>Starting process '{0} {1}'.
-</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6497" />
       <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="6573" />
+      <location filename="../UI/UserInterface.py" line="6572" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6857" />
+      <location filename="../UI/UserInterface.py" line="6795" />
+      <location filename="../UI/UserInterface.py" line="6751" />
+      <location filename="../UI/UserInterface.py" line="6679" />
+      <location filename="../UI/UserInterface.py" line="6615" />
+      <source>Documentation Missing</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6858" />
       <location filename="../UI/UserInterface.py" line="6796" />
       <location filename="../UI/UserInterface.py" line="6752" />
       <location filename="../UI/UserInterface.py" line="6680" />
       <location filename="../UI/UserInterface.py" line="6616" />
-      <source>Documentation Missing</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6859" />
-      <location filename="../UI/UserInterface.py" line="6797" />
-      <location filename="../UI/UserInterface.py" line="6753" />
-      <location filename="../UI/UserInterface.py" line="6681" />
-      <location filename="../UI/UserInterface.py" line="6617" />
       <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="6839" />
+      <location filename="../UI/UserInterface.py" line="6723" />
+      <source>Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6724" />
+      <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="6840" />
-      <location filename="../UI/UserInterface.py" line="6724" />
-      <source>Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6725" />
-      <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="6841" />
       <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="7020" />
+      <location filename="../UI/UserInterface.py" line="6955" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6956" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7021" />
-      <location filename="../UI/UserInterface.py" line="6956" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6957" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7022" />
       <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="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7318" />
+      <location filename="../UI/UserInterface.py" line="7317" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7336" />
+      <location filename="../UI/UserInterface.py" line="7335" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7538" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7539" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7540" />
       <source>&lt;p&gt;The tasks 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="7583" />
+      <location filename="../UI/UserInterface.py" line="7582" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7611" />
-      <location filename="../UI/UserInterface.py" line="7584" />
-      <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="7610" />
+      <location filename="../UI/UserInterface.py" line="7583" />
+      <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="7609" />
       <source>Read session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7627" />
+      <location filename="../UI/UserInterface.py" line="7626" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7629" />
+      <location filename="../UI/UserInterface.py" line="7628" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7652" />
+      <location filename="../UI/UserInterface.py" line="7651" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7697" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7698" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7699" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8058" />
+      <source>Drop Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8059" />
-      <source>Drop Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8060" />
       <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="8233" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8234" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8235" />
       <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;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8285" />
+      <location filename="../UI/UserInterface.py" line="8272" />
+      <source>First time usage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8273" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8286" />
-      <location filename="../UI/UserInterface.py" line="8273" />
-      <source>First time usage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8274" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8287" />
       <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="8310" />
+      <location filename="../UI/UserInterface.py" line="8309" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8490" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8491" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8492" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -85210,7 +85231,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1616" />
+      <location filename="../Utilities/__init__.py" line="1615" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_en.ts	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/i18n/eric7_en.ts	Fri Nov 25 11:51:51 2022 +0100
@@ -5414,7 +5414,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="206" />
+      <location filename="../Utilities/__init__.py" line="205" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation type="unfinished" />
     </message>
@@ -8748,88 +8748,89 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="221" />
+      <location filename="../Debugger/DebugViewer.py" line="149" />
+      <source>Source</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Don't Show</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Show Only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="233" />
-      <location filename="../Debugger/DebugViewer.py" line="162" />
+      <location filename="../Debugger/DebugViewer.py" line="248" />
+      <location filename="../Debugger/DebugViewer.py" line="176" />
       <source>Enter regular expression patterns separated by ';' to define variable filters. </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="239" />
-      <location filename="../Debugger/DebugViewer.py" line="168" />
-      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="246" />
-      <location filename="../Debugger/DebugViewer.py" line="176" />
-      <source>Set</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="184" />
-      <source>Shows the list of global variables and their values.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="206" />
-      <source>Source</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugViewer.py" line="254" />
+      <location filename="../Debugger/DebugViewer.py" line="182" />
+      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="261" />
+      <location filename="../Debugger/DebugViewer.py" line="190" />
+      <source>Set</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="198" />
+      <source>Shows the list of global variables and their values.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="269" />
       <source>Shows the list of local variables and their values.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="271" />
+      <location filename="../Debugger/DebugViewer.py" line="295" />
       <source>Shows the current call stack.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="281" />
+      <location filename="../Debugger/DebugViewer.py" line="305" />
       <source>Shows a trace of the program flow.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="292" />
+      <location filename="../Debugger/DebugViewer.py" line="316" />
       <source>Shows a list of defined breakpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="303" />
+      <location filename="../Debugger/DebugViewer.py" line="327" />
       <source>Shows a list of defined watchpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="312" />
+      <location filename="../Debugger/DebugViewer.py" line="336" />
       <source>Shows a list of raised exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="323" />
+      <location filename="../Debugger/DebugViewer.py" line="347" />
       <source>Shows a code disassembly in case of an exception.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="749" />
+      <location filename="../Debugger/DebugViewer.py" line="790" />
       <source>&lt;p&gt;Debugger with ID &lt;b&gt;{0}&lt;/b&gt; has been connected.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="992" />
-      <location filename="../Debugger/DebugViewer.py" line="864" />
+      <location filename="../Debugger/DebugViewer.py" line="1033" />
+      <location filename="../Debugger/DebugViewer.py" line="905" />
       <source>unknown state ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -9306,26 +9307,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
       <source>Add allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="343" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="307" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Enter the IP address of an allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="357" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="320" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
       <source>Edit allowed host</source>
       <translation type="unfinished" />
     </message>
@@ -20643,7 +20644,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/FiletypeAssociationDialog.py" line="56" />
+      <location filename="../Project/FiletypeAssociationDialog.py" line="58" />
       <location filename="../Project/FiletypeAssociationDialog.py" line="45" />
       <source>Ignore</source>
       <translation type="unfinished" />
@@ -46408,7 +46409,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="462" />
+      <location filename="../Preferences/__init__.py" line="461" />
       <location filename="../QScintilla/Lexers/__init__.py" line="386" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished" />
@@ -46661,7 +46662,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="465" />
+      <location filename="../Preferences/__init__.py" line="464" />
       <location filename="../QScintilla/Lexers/__init__.py" line="479" />
       <source>Python3 Files (*.py)</source>
       <translation type="unfinished" />
@@ -55212,18 +55213,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1608" />
+      <location filename="../Preferences/__init__.py" line="1653" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1637" />
-      <location filename="../Preferences/__init__.py" line="1610" />
+      <location filename="../Preferences/__init__.py" line="1682" />
+      <location filename="../Preferences/__init__.py" line="1655" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1635" />
+      <location filename="../Preferences/__init__.py" line="1680" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
@@ -55244,7 +55245,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="472" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -56089,7 +56090,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3311" />
+      <location filename="../Project/Project.py" line="3313" />
       <location filename="../Project/Project.py" line="2130" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
@@ -56120,154 +56121,154 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2517" />
+      <location filename="../Project/Project.py" line="2518" />
       <source>Create project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2518" />
+      <location filename="../Project/Project.py" line="2519" />
       <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="3115" />
-      <location filename="../Project/Project.py" line="2579" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3116" />
       <location filename="../Project/Project.py" line="2580" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3117" />
+      <location filename="../Project/Project.py" line="2581" />
       <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="2600" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2601" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2602" />
       <source>&lt;p&gt;The mainscript &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="2922" />
-      <location filename="../Project/Project.py" line="2625" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2923" />
       <location filename="../Project/Project.py" line="2626" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2924" />
+      <location filename="../Project/Project.py" line="2627" />
       <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="3144" />
-      <location filename="../Project/Project.py" line="2764" />
-      <location filename="../Project/Project.py" line="2735" />
-      <location filename="../Project/Project.py" line="2691" />
-      <location filename="../Project/Project.py" line="2666" />
-      <location filename="../Project/Project.py" line="2636" />
-      <source>New Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2637" />
-      <source>Add existing files to the project?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3145" />
+      <location filename="../Project/Project.py" line="2765" />
+      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2692" />
       <location filename="../Project/Project.py" line="2667" />
+      <location filename="../Project/Project.py" line="2637" />
+      <source>New Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2638" />
+      <source>Add existing files to the project?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3146" />
+      <location filename="../Project/Project.py" line="2668" />
       <source>Select Version Control System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2765" />
-      <location filename="../Project/Project.py" line="2692" />
+      <location filename="../Project/Project.py" line="2766" />
+      <location filename="../Project/Project.py" line="2693" />
       <source>Would you like to edit the VCS command options?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4082" />
-      <location filename="../Project/Project.py" line="2707" />
-      <source>New project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../Project/Project.py" line="4085" />
       <location filename="../Project/Project.py" line="2708" />
+      <source>New project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2709" />
       <source>Shall the project file be added to the repository?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2741" />
-      <location filename="../Project/Project.py" line="2729" />
+      <location filename="../Project/Project.py" line="2742" />
+      <location filename="../Project/Project.py" line="2730" />
       <source>None</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2737" />
       <source>Select version control system for the project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2848" />
-      <source>Translation Pattern</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2849" />
+      <source>Translation Pattern</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2850" />
       <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="4102" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="4105" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Open project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3096" />
+      <location filename="../Project/Project.py" line="3097" />
       <source>Project Files (*.epj);;XML Project Files (*.e4p)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="3298" />
+      <location filename="../Project/Project.py" line="3288" />
+      <source>Project Files (*.epj)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="3296" />
-      <location filename="../Project/Project.py" line="3286" />
-      <source>Project Files (*.epj)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3294" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3310" />
+      <location filename="../Project/Project.py" line="3312" />
       <source>Save File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3349" />
+      <location filename="../Project/Project.py" line="3351" />
       <source>Close Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3350" />
+      <location filename="../Project/Project.py" line="3352" />
       <source>The current project has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3538" />
-      <location filename="../Project/Project.py" line="3504" />
+      <location filename="../Project/Project.py" line="3541" />
+      <location filename="../Project/Project.py" line="3507" />
       <source>Syntax errors detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="3539" />
-      <location filename="../Project/Project.py" line="3505" />
+      <location filename="../Project/Project.py" line="3542" />
+      <location filename="../Project/Project.py" line="3508" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>The project contains one file with syntax errors.</numerusform>
@@ -56275,1151 +56276,1171 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4084" />
+      <location filename="../Project/Project.py" line="4087" />
       <source>&amp;New...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4090" />
+      <location filename="../Project/Project.py" line="4093" />
       <source>Generate a new project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4092" />
+      <location filename="../Project/Project.py" line="4095" />
       <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="4104" />
+      <location filename="../Project/Project.py" line="4107" />
       <source>&amp;Open...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4110" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>Open an existing project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4115" />
       <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="4118" />
+      <location filename="../Project/Project.py" line="4121" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4123" />
+      <source>&amp;Reload</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4129" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4131" />
+      <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="4137" />
       <source>Close project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4120" />
+      <location filename="../Project/Project.py" line="4139" />
       <source>&amp;Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4126" />
+      <location filename="../Project/Project.py" line="4145" />
       <source>Close the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4128" />
+      <location filename="../Project/Project.py" line="4147" />
       <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="4134" />
+      <location filename="../Project/Project.py" line="4153" />
       <source>Save project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4410" />
-      <location filename="../Project/Project.py" line="4136" />
+      <location filename="../Project/Project.py" line="4429" />
+      <location filename="../Project/Project.py" line="4155" />
       <source>&amp;Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4142" />
+      <location filename="../Project/Project.py" line="4161" />
       <source>Save the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4144" />
+      <location filename="../Project/Project.py" line="4163" />
       <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="4150" />
+      <location filename="../Project/Project.py" line="4169" />
       <source>Save project as</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4152" />
+      <location filename="../Project/Project.py" line="4171" />
       <source>Save &amp;as...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4158" />
-      <source>Save the current project to a new file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4160" />
-      <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="4175" />
-      <source>Add files to project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4177" />
-      <source>Add &amp;files...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4183" />
-      <source>Add files to the current project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4185" />
-      <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>
+      <source>Save the current project to a new file</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4179" />
+      <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="4194" />
+      <source>Add files to project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4196" />
+      <source>Add &amp;files...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4202" />
+      <source>Add files to the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4204" />
+      <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="4215" />
       <source>Add directory to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4198" />
+      <location filename="../Project/Project.py" line="4217" />
       <source>Add directory...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4205" />
+      <location filename="../Project/Project.py" line="4224" />
       <source>Add a directory to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4208" />
-      <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="4218" />
-      <source>Add translation to project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4220" />
-      <source>Add &amp;translation...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4227" />
+      <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="4237" />
+      <source>Add translation to project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4239" />
+      <source>Add &amp;translation...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4246" />
       <source>Add a translation to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4230" />
-      <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="4240" />
-      <source>Search new files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4241" />
-      <source>Searc&amp;h new files...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4247" />
-      <source>Search new files in the project directory.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4249" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <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="4259" />
+      <source>Search new files</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4260" />
+      <source>Searc&amp;h new files...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4266" />
+      <source>Search new files in the project directory.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4268" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4279" />
       <source>Search Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4261" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4262" />
-      <source>Alt+Ctrl+P</source>
-      <comment>Project|Search Project File</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4267" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4269" />
-      <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="4278" />
-      <source>Project properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4280" />
-      <source>&amp;Properties...</source>
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4281" />
+      <source>Alt+Ctrl+P</source>
+      <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4286" />
-      <source>Show the project properties</source>
+      <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4288" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <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="4297" />
-      <source>User project properties</source>
+      <source>Project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4299" />
+      <source>&amp;Properties...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4305" />
+      <source>Show the project properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4307" />
+      <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="4316" />
+      <source>User project properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4318" />
       <source>&amp;User Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4306" />
+      <location filename="../Project/Project.py" line="4325" />
       <source>Show the user specific project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4309" />
+      <location filename="../Project/Project.py" line="4328" />
       <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="4319" />
+      <location filename="../Project/Project.py" line="4338" />
       <source>Filetype Associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4320" />
+      <location filename="../Project/Project.py" line="4339" />
       <source>Filetype Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4327" />
+      <location filename="../Project/Project.py" line="4346" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4330" />
+      <location filename="../Project/Project.py" line="4349" />
       <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="4343" />
+      <location filename="../Project/Project.py" line="4362" />
       <source>Lexer Associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4344" />
+      <location filename="../Project/Project.py" line="4363" />
       <source>Lexer Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4351" />
+      <location filename="../Project/Project.py" line="4370" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4354" />
-      <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="4372" />
-      <source>Debugger Properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4373" />
-      <source>Debugger &amp;Properties...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4379" />
-      <source>Show the debugger properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4381" />
-      <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>
+      <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="4391" />
-      <source>Load</source>
+      <source>Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4392" />
-      <source>&amp;Load</source>
+      <source>Debugger &amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4398" />
-      <source>Load the debugger properties</source>
+      <source>Show the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4400" />
+      <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="4410" />
+      <source>Load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4411" />
+      <source>&amp;Load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4417" />
+      <source>Load the debugger properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4419" />
       <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="4409" />
-      <source>Save</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4416" />
-      <source>Save the debugger properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4418" />
-      <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="4427" />
-      <source>Delete</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4428" />
-      <source>&amp;Delete</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4434" />
-      <source>Delete the debugger properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4436" />
-      <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>
+      <source>Save</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4435" />
+      <source>Save the debugger properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4437" />
+      <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="4446" />
-      <source>Reset</source>
+      <source>Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4447" />
-      <source>&amp;Reset</source>
+      <source>&amp;Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4453" />
-      <source>Reset the debugger properties</source>
+      <source>Delete the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4455" />
+      <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="4465" />
+      <source>Reset</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4466" />
+      <source>&amp;Reset</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4472" />
+      <source>Reset the debugger properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4474" />
       <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="4471" />
-      <location filename="../Project/Project.py" line="4470" />
+      <location filename="../Project/Project.py" line="4490" />
+      <location filename="../Project/Project.py" line="4489" />
       <source>Load session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4477" />
+      <location filename="../Project/Project.py" line="4496" />
       <source>Load the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4479" />
+      <location filename="../Project/Project.py" line="4498" />
       <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="4495" />
-      <location filename="../Project/Project.py" line="4494" />
+      <location filename="../Project/Project.py" line="4514" />
+      <location filename="../Project/Project.py" line="4513" />
       <source>Save session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4501" />
+      <location filename="../Project/Project.py" line="4520" />
       <source>Save the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4503" />
+      <location filename="../Project/Project.py" line="4522" />
       <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="4519" />
-      <location filename="../Project/Project.py" line="4518" />
+      <location filename="../Project/Project.py" line="4538" />
+      <location filename="../Project/Project.py" line="4537" />
       <source>Delete session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4525" />
+      <location filename="../Project/Project.py" line="4544" />
       <source>Delete the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4527" />
+      <location filename="../Project/Project.py" line="4546" />
       <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="4542" />
+      <location filename="../Project/Project.py" line="4561" />
       <source>Code Metrics</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4543" />
+      <location filename="../Project/Project.py" line="4562" />
       <source>&amp;Code Metrics...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4550" />
+      <location filename="../Project/Project.py" line="4569" />
       <source>Show some code metrics for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4553" />
+      <location filename="../Project/Project.py" line="4572" />
       <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="4563" />
+      <location filename="../Project/Project.py" line="4582" />
       <source>Python Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4564" />
+      <location filename="../Project/Project.py" line="4583" />
       <source>Code Co&amp;verage...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4571" />
+      <location filename="../Project/Project.py" line="4590" />
       <source>Show code coverage information for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4574" />
+      <location filename="../Project/Project.py" line="4593" />
       <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="5894" />
-      <location filename="../Project/Project.py" line="5881" />
-      <location filename="../Project/Project.py" line="4584" />
+      <location filename="../Project/Project.py" line="5914" />
+      <location filename="../Project/Project.py" line="5901" />
+      <location filename="../Project/Project.py" line="4603" />
       <source>Profile Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4585" />
+      <location filename="../Project/Project.py" line="4604" />
       <source>&amp;Profile Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4592" />
-      <source>Show profiling data for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4595" />
-      <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="5946" />
-      <location filename="../Project/Project.py" line="4610" />
-      <source>Application Diagram</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4611" />
-      <source>&amp;Application Diagram...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4618" />
-      <source>Show a diagram of the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4621" />
-      <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
+      <source>Show profiling data for the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4614" />
+      <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="5966" />
+      <location filename="../Project/Project.py" line="4629" />
+      <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4630" />
-      <source>Load Diagram</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4631" />
-      <source>&amp;Load Diagram...</source>
+      <source>&amp;Application Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4637" />
-      <source>Load a diagram from file.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4639" />
-      <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="6131" />
-      <location filename="../Project/Project.py" line="6080" />
-      <location filename="../Project/Project.py" line="4654" />
-      <source>Create Package List</source>
+      <source>Show a diagram of the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4640" />
+      <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="4649" />
+      <source>Load Diagram</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4650" />
+      <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4656" />
+      <source>Load a diagram from file.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4658" />
+      <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="6151" />
+      <location filename="../Project/Project.py" line="6100" />
+      <location filename="../Project/Project.py" line="4673" />
+      <source>Create Package List</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4675" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4663" />
+      <location filename="../Project/Project.py" line="4682" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4666" />
-      <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="6200" />
-      <location filename="../Project/Project.py" line="4677" />
-      <source>Create Plugin Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4679" />
-      <source>Create Plugin &amp;Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4685" />
+      <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="6220" />
+      <location filename="../Project/Project.py" line="4696" />
+      <source>Create Plugin Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4698" />
+      <source>Create Plugin &amp;Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4704" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4687" />
+      <location filename="../Project/Project.py" line="4706" />
       <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="4699" />
+      <location filename="../Project/Project.py" line="4718" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4701" />
+      <location filename="../Project/Project.py" line="4720" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4708" />
+      <location filename="../Project/Project.py" line="4727" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4711" />
+      <location filename="../Project/Project.py" line="4730" />
       <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="6621" />
-      <location filename="../Project/Project.py" line="6592" />
-      <location filename="../Project/Project.py" line="6543" />
-      <location filename="../Project/Project.py" line="4730" />
+      <location filename="../Project/Project.py" line="6641" />
+      <location filename="../Project/Project.py" line="6612" />
+      <location filename="../Project/Project.py" line="6563" />
+      <location filename="../Project/Project.py" line="4749" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4731" />
-      <source>&amp;Execute Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4737" />
-      <source>Perform a 'make' run.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4739" />
-      <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="6598" />
-      <location filename="../Project/Project.py" line="4749" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4750" />
+      <source>&amp;Execute Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4756" />
+      <source>Perform a 'make' run.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4758" />
+      <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="6618" />
+      <location filename="../Project/Project.py" line="4768" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4769" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4757" />
+      <location filename="../Project/Project.py" line="4776" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4760" />
-      <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="4778" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4779" />
+      <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="4797" />
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4798" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4786" />
+      <location filename="../Project/Project.py" line="4805" />
       <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4789" />
+      <location filename="../Project/Project.py" line="4808" />
       <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="4806" />
+      <location filename="../Project/Project.py" line="4825" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4826" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4813" />
+      <location filename="../Project/Project.py" line="4832" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4815" />
+      <location filename="../Project/Project.py" line="4834" />
       <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="4827" />
+      <location filename="../Project/Project.py" line="4846" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4847" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4835" />
+      <location filename="../Project/Project.py" line="4854" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4838" />
+      <location filename="../Project/Project.py" line="4857" />
       <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="4850" />
+      <location filename="../Project/Project.py" line="4869" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4851" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4858" />
-      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4863" />
-      <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="4876" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4877" />
+      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4882" />
+      <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="4895" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4884" />
+      <location filename="../Project/Project.py" line="4903" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4890" />
+      <location filename="../Project/Project.py" line="4909" />
       <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="5055" />
-      <location filename="../Project/Project.py" line="5005" />
-      <location filename="../Project/Project.py" line="5004" />
-      <location filename="../Project/Project.py" line="4904" />
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="5074" />
+      <location filename="../Project/Project.py" line="5024" />
+      <location filename="../Project/Project.py" line="5023" />
+      <location filename="../Project/Project.py" line="4923" />
+      <location filename="../Project/Project.py" line="4922" />
       <source>Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4930" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4916" />
+      <location filename="../Project/Project.py" line="4935" />
       <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="4932" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4933" />
+      <location filename="../Project/Project.py" line="4952" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4939" />
+      <location filename="../Project/Project.py" line="4958" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4960" />
       <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="4954" />
-      <location filename="../Project/Project.py" line="4953" />
+      <location filename="../Project/Project.py" line="4973" />
+      <location filename="../Project/Project.py" line="4972" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4961" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4983" />
       <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="4978" />
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4997" />
+      <location filename="../Project/Project.py" line="4996" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4985" />
+      <location filename="../Project/Project.py" line="5004" />
       <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="4991" />
+      <location filename="../Project/Project.py" line="5010" />
       <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="5012" />
+      <location filename="../Project/Project.py" line="5031" />
       <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="5018" />
+      <location filename="../Project/Project.py" line="5037" />
       <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="5034" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5035" />
+      <location filename="../Project/Project.py" line="5054" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5042" />
+      <location filename="../Project/Project.py" line="5061" />
       <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5045" />
+      <location filename="../Project/Project.py" line="5064" />
       <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="5056" />
+      <location filename="../Project/Project.py" line="5075" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5063" />
+      <location filename="../Project/Project.py" line="5082" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
-      <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="5076" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5077" />
-      <source>&amp;Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5083" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5085" />
-      <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="5097" />
-      <source>Recreate</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5098" />
-      <source>&amp;Recreate</source>
+      <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="5095" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5096" />
+      <source>&amp;Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5102" />
+      <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5104" />
+      <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="5116" />
+      <source>Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5117" />
+      <source>&amp;Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5123" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5106" />
+      <location filename="../Project/Project.py" line="5125" />
       <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="5135" />
-      <source>&amp;Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5136" />
-      <source>Open &amp;Recent Projects</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5137" />
-      <source>Session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5138" />
-      <source>Debugger</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5139" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5141" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5142" />
-      <source>&amp;Version Control</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5146" />
-      <source>Chec&amp;k</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5148" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5150" />
-      <source>Sho&amp;w</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&amp;Diagrams</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Pac&amp;kagers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5153" />
-      <source>Source &amp;Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5155" />
-      <source>Make</source>
+      <source>&amp;Project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5156" />
+      <source>Open &amp;Recent Projects</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5157" />
+      <source>Session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5158" />
+      <source>Debugger</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5159" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5161" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5162" />
+      <source>&amp;Version Control</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5166" />
+      <source>Chec&amp;k</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5168" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5170" />
+      <source>Sho&amp;w</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5171" />
+      <source>&amp;Diagrams</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Pac&amp;kagers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
+      <source>Source &amp;Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5175" />
+      <source>Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5176" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5317" />
-      <location filename="../Project/Project.py" line="5314" />
+      <location filename="../Project/Project.py" line="5337" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5378" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5557" />
       <source>Search New Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5558" />
       <source>There were no new files found to be added.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5687" />
-      <location filename="../Project/Project.py" line="5674" />
+      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5694" />
       <source>Version Control System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5695" />
       <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="5688" />
+      <location filename="../Project/Project.py" line="5708" />
       <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="5836" />
+      <location filename="../Project/Project.py" line="5856" />
       <source>Coverage Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5882" />
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5902" />
+      <location filename="../Project/Project.py" line="5857" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5849" />
+      <location filename="../Project/Project.py" line="5869" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5850" />
+      <location filename="../Project/Project.py" line="5870" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5915" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5947" />
+      <location filename="../Project/Project.py" line="5967" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6081" />
+      <location filename="../Project/Project.py" line="6101" />
       <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="6132" />
+      <location filename="../Project/Project.py" line="6152" />
       <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="6421" />
-      <location filename="../Project/Project.py" line="6379" />
-      <location filename="../Project/Project.py" line="6333" />
-      <location filename="../Project/Project.py" line="6322" />
-      <location filename="../Project/Project.py" line="6304" />
-      <location filename="../Project/Project.py" line="6271" />
-      <location filename="../Project/Project.py" line="6241" />
-      <location filename="../Project/Project.py" line="6213" />
-      <location filename="../Project/Project.py" line="6183" />
-      <location filename="../Project/Project.py" line="6169" />
-      <location filename="../Project/Project.py" line="6152" />
+      <location filename="../Project/Project.py" line="6441" />
+      <location filename="../Project/Project.py" line="6399" />
+      <location filename="../Project/Project.py" line="6353" />
+      <location filename="../Project/Project.py" line="6342" />
+      <location filename="../Project/Project.py" line="6324" />
+      <location filename="../Project/Project.py" line="6291" />
+      <location filename="../Project/Project.py" line="6261" />
+      <location filename="../Project/Project.py" line="6233" />
+      <location filename="../Project/Project.py" line="6203" />
+      <location filename="../Project/Project.py" line="6189" />
+      <location filename="../Project/Project.py" line="6172" />
       <source>Create Plugin Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6153" />
+      <location filename="../Project/Project.py" line="6173" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6170" />
+      <location filename="../Project/Project.py" line="6190" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6184" />
+      <location filename="../Project/Project.py" line="6204" />
       <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="6192" />
+      <location filename="../Project/Project.py" line="6212" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6193" />
+      <location filename="../Project/Project.py" line="6213" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6196" />
+      <location filename="../Project/Project.py" line="6216" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6214" />
+      <location filename="../Project/Project.py" line="6234" />
       <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="6242" />
+      <location filename="../Project/Project.py" line="6262" />
       <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="6272" />
+      <location filename="../Project/Project.py" line="6292" />
       <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="6305" />
+      <location filename="../Project/Project.py" line="6325" />
       <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="6323" />
+      <location filename="../Project/Project.py" line="6343" />
       <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="6334" />
+      <location filename="../Project/Project.py" line="6354" />
       <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="6380" />
+      <location filename="../Project/Project.py" line="6400" />
       <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="6422" />
+      <location filename="../Project/Project.py" line="6442" />
       <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="6544" />
+      <location filename="../Project/Project.py" line="6564" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6593" />
+      <location filename="../Project/Project.py" line="6613" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6601" />
+      <location filename="../Project/Project.py" line="6621" />
       <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="6606" />
+      <location filename="../Project/Project.py" line="6626" />
       <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="6622" />
+      <location filename="../Project/Project.py" line="6642" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -57615,22 +57636,22 @@
   <context>
     <name>ProjectFile</name>
     <message>
-      <location filename="../Project/ProjectFile.py" line="109" />
+      <location filename="../Project/ProjectFile.py" line="108" />
       <source>Save Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFile.py" line="110" />
+      <location filename="../Project/ProjectFile.py" line="109" />
       <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectFile.py" line="134" />
+      <source>Read Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectFile.py" line="135" />
-      <source>Read Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectFile.py" line="136" />
       <source>&lt;p&gt;The project 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>
@@ -59494,265 +59515,265 @@
   <context>
     <name>ProjectTranslationsBrowser</name>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="99" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="76" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="74" />
       <source>Translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="79" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="77" />
       <source>&lt;b&gt;Project Translations Browser&lt;/b&gt;&lt;p&gt;This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="95" />
       <source>Translation Files ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="98" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="96" />
       <source>Translation Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="109" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="107" />
       <source>Translations Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="239" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="183" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="237" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="181" />
       <source>Generate translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="249" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="247" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="538" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="360" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="258" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="194" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="536" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="507" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="330" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="256" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="192" />
       <source>Generate all translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="513" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="369" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="267" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="198" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="545" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="511" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="367" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="196" />
       <source>Generate all translations (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="419" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="417" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
       <source>Open in Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="423" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="279" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="206" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="471" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="421" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="277" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="204" />
       <source>Open in Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="286" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="284" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
       <source>Release translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="518" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="377" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="341" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="295" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="553" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="516" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="375" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="339" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="293" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="214" />
       <source>Release all translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="220" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
       <source>Preview translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="346" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="344" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Preview all translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="441" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="352" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="527" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
       <source>Extract messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="469" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="275" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="273" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="488" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="302" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="486" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="300" />
       <source>Remove from project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="561" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="491" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="305" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="559" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="489" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
       <source>Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="384" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="309" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="307" />
       <source>Add translation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="568" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="566" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="385" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
       <source>Add translation files...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="569" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="313" />
+      <source>Copy Path to Clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="492" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="388" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="315" />
-      <source>Copy Path to Clipboard</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="573" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="390" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="448" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
       <source>Generate translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="460" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="458" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="410" />
       <source>Generate translations (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="480" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="478" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="426" />
       <source>Release translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="432" />
       <source>Preview translations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="835" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="833" />
       <source>Delete translation files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="836" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="834" />
       <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="1504" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1001" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="961" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1502" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="999" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="959" />
       <source>Write temporary project file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1505" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1241" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="962" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1239" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="960" />
       <source>No translation files (*.ts) selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1002" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1000" />
       <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="1240" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1123" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1111" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1238" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1121" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1109" />
       <source>Translation file generation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1112" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1110" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1118" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1116" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1122" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1534" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1532" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1292" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1337" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1295" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1335" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1293" />
       <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="1427" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1425" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1405" />
       <source>Translation file release</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1406" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1426" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1535" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1533" />
       <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>
@@ -82662,2216 +82683,2228 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="574" />
+      <location filename="../UI/UserInterface.py" line="573" />
       <source>Initializing Tools...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="585" />
+      <location filename="../UI/UserInterface.py" line="584" />
       <source>Registering Objects...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="619" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Initializing Actions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="621" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Initializing Menus...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="623" />
+      <location filename="../UI/UserInterface.py" line="622" />
       <source>Initializing Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="625" />
+      <location filename="../UI/UserInterface.py" line="624" />
       <source>Initializing Statusbar...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Single Application Server...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="658" />
+      <location filename="../UI/UserInterface.py" line="657" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="661" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Activating Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="663" />
+      <location filename="../UI/UserInterface.py" line="662" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="666" />
+      <location filename="../UI/UserInterface.py" line="665" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="673" />
+      <location filename="../UI/UserInterface.py" line="672" />
       <source>Restoring Toolbarmanager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="680" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="693" />
       <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="699" />
+      <location filename="../UI/UserInterface.py" line="698" />
       <source>Reading Templates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="703" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
-      <location filename="../UI/UserInterface.py" line="1066" />
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1065" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2224" />
-      <location filename="../UI/UserInterface.py" line="1076" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1075" />
       <source>Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2201" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1085" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2020" />
-      <location filename="../UI/UserInterface.py" line="1279" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2019" />
+      <location filename="../UI/UserInterface.py" line="1278" />
+      <location filename="../UI/UserInterface.py" line="1095" />
       <source>Multiproject-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1997" />
+      <location filename="../UI/UserInterface.py" line="1284" />
+      <location filename="../UI/UserInterface.py" line="1101" />
+      <source>Project-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2559" />
+      <location filename="../UI/UserInterface.py" line="2558" />
+      <location filename="../UI/UserInterface.py" line="1291" />
+      <location filename="../UI/UserInterface.py" line="1108" />
+      <source>Find/Replace In Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1298" />
+      <location filename="../UI/UserInterface.py" line="1115" />
+      <source>Find File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1304" />
+      <location filename="../UI/UserInterface.py" line="1121" />
+      <source>VCS Status</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1311" />
+      <location filename="../UI/UserInterface.py" line="1128" />
+      <source>Template-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2085" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1135" />
+      <source>File-Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1325" />
+      <location filename="../UI/UserInterface.py" line="1142" />
+      <source>Symbols</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2041" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Debug-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2412" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1159" />
+      <source>Code Documentation Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2628" />
+      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="1361" />
+      <location filename="../UI/UserInterface.py" line="1166" />
+      <source>Help Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1367" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>Plugin Repository</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1373" />
+      <location filename="../UI/UserInterface.py" line="1178" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2440" />
+      <location filename="../UI/UserInterface.py" line="2439" />
+      <location filename="../UI/UserInterface.py" line="1378" />
+      <location filename="../UI/UserInterface.py" line="1183" />
+      <source>PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="2461" />
+      <location filename="../UI/UserInterface.py" line="1385" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Conda</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1392" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Cooperation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2340" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
+      <source>IRC</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="2483" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>MicroPython</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2063" />
+      <location filename="../UI/UserInterface.py" line="1410" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2129" />
+      <location filename="../UI/UserInterface.py" line="1416" />
+      <location filename="../UI/UserInterface.py" line="1219" />
+      <source>Task-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2107" />
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1223" />
+      <source>Log-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1429" />
+      <location filename="../UI/UserInterface.py" line="1230" />
+      <source>Numbers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1815" />
+      <source>{0} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1822" />
+      <location filename="../UI/UserInterface.py" line="1818" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1826" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1850" />
+      <source>Quit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1852" />
+      <source>&amp;Quit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1853" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1858" />
+      <source>Quit the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1860" />
+      <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="1874" />
+      <location filename="../UI/UserInterface.py" line="1872" />
+      <source>Restart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1880" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
+      <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="1900" />
+      <location filename="../UI/UserInterface.py" line="1893" />
+      <source>Save session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1894" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1902" />
+      <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="7649" />
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Load session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1913" />
+      <source>Load session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1921" />
+      <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="1931" />
+      <source>New Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1933" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1934" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1941" />
+      <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="1955" />
+      <location filename="../UI/UserInterface.py" line="1953" />
+      <source>Edit Profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
+      <source>Activate the edit view profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1964" />
+      <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="1977" />
+      <location filename="../UI/UserInterface.py" line="1975" />
+      <source>Debug Profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1984" />
+      <source>Activate the debug view profile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1986" />
+      <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="1998" />
-      <location filename="../UI/UserInterface.py" line="1285" />
-      <location filename="../UI/UserInterface.py" line="1102" />
-      <source>Project-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2560" />
-      <location filename="../UI/UserInterface.py" line="2559" />
-      <location filename="../UI/UserInterface.py" line="1292" />
-      <location filename="../UI/UserInterface.py" line="1109" />
-      <source>Find/Replace In Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
-      <location filename="../UI/UserInterface.py" line="2582" />
-      <location filename="../UI/UserInterface.py" line="1299" />
-      <location filename="../UI/UserInterface.py" line="1116" />
-      <source>Find File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1305" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>VCS Status</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
-      <location filename="../UI/UserInterface.py" line="1312" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Template-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2086" />
-      <location filename="../UI/UserInterface.py" line="1319" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>File-Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Symbols</source>
+      <source>&amp;Project-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Alt+Shift+P</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2005" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2008" />
+      <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="2020" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Alt+Shift+M</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2027" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2030" />
+      <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="2042" />
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1153" />
-      <source>Debug-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2414" />
-      <location filename="../UI/UserInterface.py" line="2413" />
-      <location filename="../UI/UserInterface.py" line="1355" />
-      <location filename="../UI/UserInterface.py" line="1160" />
-      <source>Code Documentation Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2629" />
-      <location filename="../UI/UserInterface.py" line="2628" />
-      <location filename="../UI/UserInterface.py" line="1362" />
-      <location filename="../UI/UserInterface.py" line="1167" />
-      <source>Help Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <location filename="../UI/UserInterface.py" line="2509" />
-      <location filename="../UI/UserInterface.py" line="2508" />
-      <location filename="../UI/UserInterface.py" line="1368" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Plugin Repository</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
-      <location filename="../UI/UserInterface.py" line="2532" />
-      <location filename="../UI/UserInterface.py" line="1374" />
-      <location filename="../UI/UserInterface.py" line="1179" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2441" />
-      <location filename="../UI/UserInterface.py" line="2440" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1184" />
-      <source>PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2463" />
-      <location filename="../UI/UserInterface.py" line="2462" />
-      <location filename="../UI/UserInterface.py" line="1386" />
-      <location filename="../UI/UserInterface.py" line="1189" />
-      <source>Conda</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1393" />
-      <location filename="../UI/UserInterface.py" line="1196" />
-      <source>Cooperation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
-      <location filename="../UI/UserInterface.py" line="1397" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>IRC</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
-      <location filename="../UI/UserInterface.py" line="2484" />
-      <location filename="../UI/UserInterface.py" line="1403" />
-      <location filename="../UI/UserInterface.py" line="1208" />
-      <source>MicroPython</source>
+      <source>&amp;Debug-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <source>Alt+Shift+D</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2049" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2052" />
+      <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="2064" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2130" />
-      <location filename="../UI/UserInterface.py" line="1417" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>Task-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2108" />
-      <location filename="../UI/UserInterface.py" line="1423" />
-      <location filename="../UI/UserInterface.py" line="1224" />
-      <source>Log-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1430" />
-      <location filename="../UI/UserInterface.py" line="1231" />
-      <source>Numbers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1816" />
-      <source>{0} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1823" />
-      <location filename="../UI/UserInterface.py" line="1819" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1851" />
-      <source>Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <source>&amp;Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1854" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>Quit the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1861" />
-      <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="1875" />
-      <location filename="../UI/UserInterface.py" line="1873" />
-      <source>Restart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1881" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1883" />
-      <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="1901" />
-      <location filename="../UI/UserInterface.py" line="1894" />
-      <source>Save session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1903" />
-      <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="7650" />
-      <location filename="../UI/UserInterface.py" line="1920" />
-      <location filename="../UI/UserInterface.py" line="1913" />
-      <source>Load session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1914" />
-      <source>Load session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1922" />
-      <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="1932" />
-      <source>New Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1934" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1940" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1942" />
-      <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="1956" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <source>Edit Profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1963" />
-      <source>Activate the edit view profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1965" />
-      <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="1978" />
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>Debug Profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1985" />
-      <source>Activate the debug view profile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1987" />
-      <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="1999" />
-      <source>&amp;Project-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2000" />
-      <source>Alt+Shift+P</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2006" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2009" />
-      <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="2021" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Alt+Shift+M</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2028" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2031" />
-      <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="2043" />
-      <source>&amp;Debug-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Alt+Shift+D</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2050" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2053" />
-      <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>
+      <source>&amp;Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&amp;Shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+S</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2072" />
+      <location filename="../UI/UserInterface.py" line="2071" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2075" />
+      <location filename="../UI/UserInterface.py" line="2074" />
       <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="2086" />
+      <source>&amp;File-Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&amp;File-Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2094" />
+      <location filename="../UI/UserInterface.py" line="2093" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2097" />
+      <location filename="../UI/UserInterface.py" line="2096" />
       <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="2108" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2109" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+G</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2116" />
+      <location filename="../UI/UserInterface.py" line="2115" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2119" />
+      <location filename="../UI/UserInterface.py" line="2118" />
       <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="2130" />
+      <source>&amp;Task-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&amp;Task-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+T</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2138" />
+      <location filename="../UI/UserInterface.py" line="2137" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2141" />
+      <location filename="../UI/UserInterface.py" line="2140" />
       <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="2153" />
+      <source>Templ&amp;ate-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2154" />
-      <source>Templ&amp;ate-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
       <source>Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2161" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <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="2179" />
+      <location filename="../UI/UserInterface.py" line="2178" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2186" />
+      <location filename="../UI/UserInterface.py" line="2185" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2187" />
       <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="2202" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2209" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2211" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <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="2225" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2232" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2234" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <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="2246" />
+      <source>Left Sidebar</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2247" />
-      <source>Left Sidebar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
       <source>&amp;Left Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2255" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the left sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2257" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2269" />
+      <source>Right Sidebar</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2270" />
-      <source>Right Sidebar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2271" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2278" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2280" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2292" />
+      <source>Bottom Sidebar</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2293" />
-      <source>Bottom Sidebar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2294" />
       <source>&amp;Bottom Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2301" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the bottom sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2303" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <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="2315" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2316" />
-      <source>Cooperation-Viewer</source>
+      <source>Co&amp;operation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2317" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
       <source>Alt+Shift+O</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2324" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2326" />
       <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="2341" />
+      <source>&amp;IRC</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2342" />
-      <source>&amp;IRC</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2349" />
+      <location filename="../UI/UserInterface.py" line="2348" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2352" />
+      <location filename="../UI/UserInterface.py" line="2351" />
       <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="2362" />
+      <source>Symbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2363" />
-      <source>Symbols-Viewer</source>
+      <source>S&amp;ymbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2364" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2371" />
+      <location filename="../UI/UserInterface.py" line="2370" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2374" />
+      <location filename="../UI/UserInterface.py" line="2373" />
       <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="2387" />
+      <source>Numbers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2388" />
-      <source>Numbers-Viewer</source>
+      <source>Num&amp;bers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2389" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2396" />
+      <location filename="../UI/UserInterface.py" line="2395" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2399" />
+      <location filename="../UI/UserInterface.py" line="2398" />
       <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="2415" />
+      <location filename="../UI/UserInterface.py" line="2414" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2421" />
+      <location filename="../UI/UserInterface.py" line="2420" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2426" />
+      <location filename="../UI/UserInterface.py" line="2425" />
       <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="2442" />
+      <location filename="../UI/UserInterface.py" line="2441" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
+      <location filename="../UI/UserInterface.py" line="2447" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2451" />
+      <location filename="../UI/UserInterface.py" line="2450" />
       <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="2464" />
+      <location filename="../UI/UserInterface.py" line="2463" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2470" />
+      <location filename="../UI/UserInterface.py" line="2469" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2473" />
+      <location filename="../UI/UserInterface.py" line="2472" />
       <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="2486" />
+      <location filename="../UI/UserInterface.py" line="2485" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2492" />
+      <location filename="../UI/UserInterface.py" line="2491" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2495" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <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="2510" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2516" />
+      <location filename="../UI/UserInterface.py" line="2515" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2534" />
+      <location filename="../UI/UserInterface.py" line="2533" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2540" />
+      <location filename="../UI/UserInterface.py" line="2539" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
       <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="2561" />
+      <location filename="../UI/UserInterface.py" line="2560" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
+      <location filename="../UI/UserInterface.py" line="2566" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2570" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <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="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2590" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2593" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <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="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <source>VCS Status List</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
-      <location filename="../UI/UserInterface.py" line="2606" />
-      <source>VCS Status List</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2614" />
+      <location filename="../UI/UserInterface.py" line="2613" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <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="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2636" />
+      <location filename="../UI/UserInterface.py" line="2635" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2639" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <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="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <source>&amp;What's This?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2654" />
-      <source>&amp;What's This?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
       <source>Shift+F1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2660" />
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2662" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <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="2675" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>Helpviewer</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2676" />
+      <source>&amp;Helpviewer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
-      <source>&amp;Helpviewer...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2678" />
       <source>F1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2683" />
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Open the helpviewer window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2685" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <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="2704" />
+      <source>Show Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2705" />
-      <source>Show Versions</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Show &amp;Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2711" />
       <source>Display version information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2714" />
+      <location filename="../UI/UserInterface.py" line="2713" />
       <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="2729" />
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>Show Error Log</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2722" />
       <source>Show Error &amp;Log...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2730" />
       <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="2739" />
+      <source>Show Install Info</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2740" />
-      <source>Show Install Info</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2747" />
+      <location filename="../UI/UserInterface.py" line="2746" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2749" />
+      <location filename="../UI/UserInterface.py" line="2748" />
       <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="4633" />
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="4632" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report Bug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report &amp;Bug...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
+      <location filename="../UI/UserInterface.py" line="2760" />
       <source>Report a bug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <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="2770" />
+      <source>Request Feature</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2771" />
-      <source>Request Feature</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2772" />
       <source>Request &amp;Feature...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2777" />
       <source>Send a feature request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2780" />
+      <location filename="../UI/UserInterface.py" line="2779" />
       <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="4091" />
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2792" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
+      <location filename="../UI/UserInterface.py" line="2798" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2801" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <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="2812" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2820" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2821" />
       <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="2832" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2833" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2844" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <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="2854" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
+      <location filename="../UI/UserInterface.py" line="2855" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>Run tests of the current script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2864" />
+      <location filename="../UI/UserInterface.py" line="2863" />
       <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="2873" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2881" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <source>Run tests of the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <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="2905" />
+      <location filename="../UI/UserInterface.py" line="2904" />
       <source>Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2907" />
+      <location filename="../UI/UserInterface.py" line="2906" />
       <source>Qt-&amp;Designer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2912" />
       <source>Start Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2915" />
+      <location filename="../UI/UserInterface.py" line="2914" />
       <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="2935" />
+      <location filename="../UI/UserInterface.py" line="2934" />
       <source>Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2937" />
+      <location filename="../UI/UserInterface.py" line="2936" />
       <source>Qt-&amp;Linguist...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2943" />
+      <location filename="../UI/UserInterface.py" line="2942" />
       <source>Start Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2945" />
+      <location filename="../UI/UserInterface.py" line="2944" />
       <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="2953" />
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>UI Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
+      <location filename="../UI/UserInterface.py" line="2954" />
       <source>&amp;UI Previewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2961" />
+      <location filename="../UI/UserInterface.py" line="2960" />
       <source>Start the UI Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2962" />
       <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="2969" />
+      <location filename="../UI/UserInterface.py" line="2968" />
       <source>Translations Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2971" />
+      <location filename="../UI/UserInterface.py" line="2970" />
       <source>&amp;Translations Previewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="2976" />
       <source>Start the Translations Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2979" />
+      <location filename="../UI/UserInterface.py" line="2978" />
       <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="2988" />
+      <location filename="../UI/UserInterface.py" line="2987" />
       <source>Compare Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2990" />
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&amp;Compare Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="2995" />
       <source>Compare two files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2998" />
+      <location filename="../UI/UserInterface.py" line="2997" />
       <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="3007" />
+      <location filename="../UI/UserInterface.py" line="3006" />
       <source>Compare Files side by side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3009" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3017" />
+      <location filename="../UI/UserInterface.py" line="3016" />
       <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="3027" />
+      <location filename="../UI/UserInterface.py" line="3026" />
       <source>SQL Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3028" />
       <source>SQL &amp;Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3035" />
+      <location filename="../UI/UserInterface.py" line="3034" />
       <source>Browse a SQL database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3037" />
+      <location filename="../UI/UserInterface.py" line="3036" />
       <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="3051" />
-      <location filename="../UI/UserInterface.py" line="3043" />
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <location filename="../UI/UserInterface.py" line="3042" />
       <source>Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3045" />
+      <location filename="../UI/UserInterface.py" line="3044" />
       <source>Mini &amp;Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3053" />
+      <location filename="../UI/UserInterface.py" line="3052" />
       <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="3062" />
+      <location filename="../UI/UserInterface.py" line="3061" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3064" />
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
+      <location filename="../UI/UserInterface.py" line="3069" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3072" />
+      <location filename="../UI/UserInterface.py" line="3071" />
       <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="3082" />
+      <location filename="../UI/UserInterface.py" line="3081" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3084" />
+      <location filename="../UI/UserInterface.py" line="3083" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3089" />
       <source>Start the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3092" />
+      <location filename="../UI/UserInterface.py" line="3091" />
       <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="3101" />
+      <location filename="../UI/UserInterface.py" line="3100" />
       <source>Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3103" />
+      <location filename="../UI/UserInterface.py" line="3102" />
       <source>&amp;Icon Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3109" />
+      <location filename="../UI/UserInterface.py" line="3108" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
+      <location filename="../UI/UserInterface.py" line="3110" />
       <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="3120" />
+      <location filename="../UI/UserInterface.py" line="3119" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3122" />
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3128" />
+      <location filename="../UI/UserInterface.py" line="3127" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3129" />
       <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="3140" />
+      <location filename="../UI/UserInterface.py" line="3139" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3142" />
+      <location filename="../UI/UserInterface.py" line="3141" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3147" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3149" />
       <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="3161" />
+      <location filename="../UI/UserInterface.py" line="3160" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3163" />
+      <location filename="../UI/UserInterface.py" line="3162" />
       <source>E&amp;xport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3169" />
+      <location filename="../UI/UserInterface.py" line="3168" />
       <source>Export the current configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="3170" />
       <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="3180" />
+      <location filename="../UI/UserInterface.py" line="3179" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3182" />
+      <location filename="../UI/UserInterface.py" line="3181" />
       <source>I&amp;mport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3188" />
       <source>Import a previously exported configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3192" />
+      <location filename="../UI/UserInterface.py" line="3191" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3200" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3203" />
+      <location filename="../UI/UserInterface.py" line="3202" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3209" />
+      <location filename="../UI/UserInterface.py" line="3208" />
       <source>Export the current theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
+      <location filename="../UI/UserInterface.py" line="3210" />
       <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="3220" />
+      <location filename="../UI/UserInterface.py" line="3219" />
       <source>Import Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3222" />
+      <location filename="../UI/UserInterface.py" line="3221" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3228" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
+      <location filename="../UI/UserInterface.py" line="3229" />
       <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="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload &amp;APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3241" />
+      <location filename="../UI/UserInterface.py" line="3240" />
       <source>Reload the API information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3243" />
+      <location filename="../UI/UserInterface.py" line="3242" />
       <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="3257" />
-      <location filename="../UI/UserInterface.py" line="3249" />
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <location filename="../UI/UserInterface.py" line="3248" />
       <source>Show external tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
+      <location filename="../UI/UserInterface.py" line="3250" />
       <source>Show external &amp;tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3258" />
       <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="3269" />
+      <location filename="../UI/UserInterface.py" line="3268" />
       <source>View Profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
+      <location filename="../UI/UserInterface.py" line="3270" />
       <source>&amp;View Profiles...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3277" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Configure view profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
+      <location filename="../UI/UserInterface.py" line="3278" />
       <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="3290" />
+      <location filename="../UI/UserInterface.py" line="3289" />
       <source>Toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3292" />
+      <location filename="../UI/UserInterface.py" line="3291" />
       <source>Tool&amp;bars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
+      <location filename="../UI/UserInterface.py" line="3297" />
       <source>Configure toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3299" />
       <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="3311" />
+      <location filename="../UI/UserInterface.py" line="3310" />
       <source>Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3313" />
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3319" />
+      <location filename="../UI/UserInterface.py" line="3318" />
       <source>Set the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
+      <location filename="../UI/UserInterface.py" line="3320" />
       <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="7335" />
-      <location filename="../UI/UserInterface.py" line="7316" />
-      <location filename="../UI/UserInterface.py" line="3331" />
+      <location filename="../UI/UserInterface.py" line="7334" />
+      <location filename="../UI/UserInterface.py" line="7315" />
+      <location filename="../UI/UserInterface.py" line="3330" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3333" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
+      <location filename="../UI/UserInterface.py" line="3338" />
       <source>Export the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3341" />
+      <location filename="../UI/UserInterface.py" line="3340" />
       <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="7354" />
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="7353" />
+      <location filename="../UI/UserInterface.py" line="3349" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3352" />
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="3357" />
       <source>Import the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3359" />
       <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="3370" />
+      <location filename="../UI/UserInterface.py" line="3369" />
       <source>Manage SSL Certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3372" />
+      <location filename="../UI/UserInterface.py" line="3371" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3378" />
       <source>Manage the saved SSL certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3382" />
+      <location filename="../UI/UserInterface.py" line="3381" />
       <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="3392" />
+      <location filename="../UI/UserInterface.py" line="3391" />
       <source>Edit Message Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3394" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="3400" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3404" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <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="3423" />
-      <location filename="../UI/UserInterface.py" line="3417" />
-      <location filename="../UI/UserInterface.py" line="3415" />
+      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Clear private data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3425" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <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="3435" />
+      <location filename="../UI/UserInterface.py" line="3434" />
+      <source>Activate current editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3436" />
-      <location filename="../UI/UserInterface.py" line="3435" />
-      <source>Activate current editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3447" />
+      <location filename="../UI/UserInterface.py" line="3446" />
+      <source>Show next</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3448" />
-      <location filename="../UI/UserInterface.py" line="3447" />
-      <source>Show next</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
       <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3458" />
+      <source>Show previous</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3460" />
-      <location filename="../UI/UserInterface.py" line="3459" />
-      <source>Show previous</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3461" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Switch between tabs</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3472" />
-      <location filename="../UI/UserInterface.py" line="3471" />
-      <source>Switch between tabs</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Ctrl+1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
       <source>Plugin Infos</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3485" />
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>&amp;Plugin Infos...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
+      <location filename="../UI/UserInterface.py" line="3490" />
       <source>Show Plugin Infos</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
+      <location filename="../UI/UserInterface.py" line="3492" />
       <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="3511" />
-      <location filename="../UI/UserInterface.py" line="3503" />
+      <location filename="../UI/UserInterface.py" line="3510" />
+      <location filename="../UI/UserInterface.py" line="3502" />
       <source>Install Plugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3504" />
       <source>&amp;Install Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
+      <location filename="../UI/UserInterface.py" line="3512" />
       <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="3530" />
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Uninstall Plugin</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3524" />
+      <location filename="../UI/UserInterface.py" line="3523" />
       <source>&amp;Uninstall Plugin...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <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="3543" />
+      <location filename="../UI/UserInterface.py" line="3542" />
       <source>Plugin &amp;Repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <source>Show Plugins available for download</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3551" />
+      <location filename="../UI/UserInterface.py" line="3550" />
       <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="3578" />
       <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="3576" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3584" />
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Open Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3599" />
       <location filename="../UI/UserInterface.py" line="3598" />
+      <location filename="../UI/UserInterface.py" line="3597" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3605" />
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3606" />
       <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="3620" />
       <location filename="../UI/UserInterface.py" line="3619" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3626" />
+      <location filename="../UI/UserInterface.py" line="3625" />
       <source>Open PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3627" />
       <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="3641" />
       <location filename="../UI/UserInterface.py" line="3640" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3647" />
+      <location filename="../UI/UserInterface.py" line="3646" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3648" />
       <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="3667" />
       <location filename="../UI/UserInterface.py" line="3666" />
+      <location filename="../UI/UserInterface.py" line="3665" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3673" />
+      <location filename="../UI/UserInterface.py" line="3672" />
       <source>Open Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <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="3694" />
       <location filename="../UI/UserInterface.py" line="3693" />
+      <location filename="../UI/UserInterface.py" line="3692" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3700" />
+      <location filename="../UI/UserInterface.py" line="3699" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
       <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="3720" />
       <location filename="../UI/UserInterface.py" line="3719" />
+      <location filename="../UI/UserInterface.py" line="3718" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3726" />
+      <location filename="../UI/UserInterface.py" line="3725" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
       <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="3746" />
       <location filename="../UI/UserInterface.py" line="3745" />
+      <location filename="../UI/UserInterface.py" line="3744" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3752" />
+      <location filename="../UI/UserInterface.py" line="3751" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <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="3854" />
+      <location filename="../UI/UserInterface.py" line="3853" />
       <source>E&amp;xtras</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
+      <location filename="../UI/UserInterface.py" line="3863" />
       <source>Wi&amp;zards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3882" />
+      <location filename="../UI/UserInterface.py" line="3881" />
       <source>P&amp;lugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3891" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3900" />
+      <location filename="../UI/UserInterface.py" line="3899" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3917" />
+      <location filename="../UI/UserInterface.py" line="3916" />
       <source>Select Tool Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3961" />
+      <location filename="../UI/UserInterface.py" line="3960" />
       <source>&amp;Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3970" />
+      <location filename="../UI/UserInterface.py" line="3969" />
       <source>&amp;Windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3974" />
+      <location filename="../UI/UserInterface.py" line="3973" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3978" />
+      <location filename="../UI/UserInterface.py" line="3977" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3997" />
+      <location filename="../UI/UserInterface.py" line="3996" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4016" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4024" />
+      <location filename="../UI/UserInterface.py" line="4023" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4030" />
+      <location filename="../UI/UserInterface.py" line="4029" />
       <source>&amp;Toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4043" />
+      <location filename="../UI/UserInterface.py" line="4042" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="4112" />
+      <location filename="../UI/UserInterface.py" line="4089" />
       <source>Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4093" />
+      <source>Settings</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6147" />
       <location filename="../UI/UserInterface.py" line="4115" />
       <location filename="../UI/UserInterface.py" line="4094" />
-      <source>Settings</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6148" />
+      <source>Help</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4116" />
       <location filename="../UI/UserInterface.py" line="4095" />
-      <source>Help</source>
+      <source>Profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="4117" />
       <location filename="../UI/UserInterface.py" line="4096" />
-      <source>Profiles</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4118" />
-      <location filename="../UI/UserInterface.py" line="4097" />
       <source>Plugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4113" />
       <source>Unittest</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4286" />
+      <location filename="../UI/UserInterface.py" line="4285" />
       <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="4295" />
+      <location filename="../UI/UserInterface.py" line="4294" />
       <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="4304" />
+      <location filename="../UI/UserInterface.py" line="4303" />
       <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="4313" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4322" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4331" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4345" />
+      <location filename="../UI/UserInterface.py" line="4344" />
       <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="4416" />
-      <location filename="../UI/UserInterface.py" line="4375" />
+      <location filename="../UI/UserInterface.py" line="4415" />
+      <location filename="../UI/UserInterface.py" line="4374" />
       <source>External Tools/{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4524" />
+      <location filename="../UI/UserInterface.py" line="4523" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4573" />
+      <location filename="../UI/UserInterface.py" line="4572" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4590" />
+      <location filename="../UI/UserInterface.py" line="4589" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4593" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4597" />
+      <location filename="../UI/UserInterface.py" line="4596" />
       <source>&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4633" />
       <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="4948" />
+      <source>Restart application</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4949" />
-      <source>Restart application</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4950" />
       <source>The application needs to be restarted. Do it now?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="4973" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4974" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4975" />
       <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="5024" />
+      <location filename="../UI/UserInterface.py" line="4998" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="4999" />
+      <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="5025" />
-      <location filename="../UI/UserInterface.py" line="4999" />
-      <source>Upgrade Eric</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5000" />
-      <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="5026" />
       <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="5084" />
+      <location filename="../UI/UserInterface.py" line="5083" />
       <source>&amp;Builtin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5101" />
+      <location filename="../UI/UserInterface.py" line="5100" />
       <source>&amp;Plugin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5103" />
       <source>&amp;User Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5130" />
+      <location filename="../UI/UserInterface.py" line="5129" />
       <source>Configure Tool Groups ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5134" />
+      <location filename="../UI/UserInterface.py" line="5133" />
       <source>Configure current Tool Group ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5173" />
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5172" />
+      <location filename="../UI/UserInterface.py" line="5152" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5247" />
+      <location filename="../UI/UserInterface.py" line="5246" />
       <source>&amp;Show all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5249" />
+      <location filename="../UI/UserInterface.py" line="5248" />
       <source>&amp;Hide all</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6282" />
+      <location filename="../UI/UserInterface.py" line="6271" />
+      <location filename="../UI/UserInterface.py" line="6223" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6049" />
+      <location filename="../UI/UserInterface.py" line="6039" />
+      <location filename="../UI/UserInterface.py" line="5982" />
+      <location filename="../UI/UserInterface.py" line="5972" />
+      <source>Problem</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6283" />
       <location filename="../UI/UserInterface.py" line="6272" />
       <location filename="../UI/UserInterface.py" line="6224" />
@@ -84880,310 +84913,298 @@
       <location filename="../UI/UserInterface.py" line="6040" />
       <location filename="../UI/UserInterface.py" line="5983" />
       <location filename="../UI/UserInterface.py" line="5973" />
-      <source>Problem</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6273" />
-      <location filename="../UI/UserInterface.py" line="6225" />
-      <location filename="../UI/UserInterface.py" line="6215" />
-      <location filename="../UI/UserInterface.py" line="6051" />
-      <location filename="../UI/UserInterface.py" line="6041" />
-      <location filename="../UI/UserInterface.py" line="5984" />
-      <location filename="../UI/UserInterface.py" line="5974" />
       <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="6495" />
+      <location filename="../UI/UserInterface.py" line="6408" />
+      <location filename="../UI/UserInterface.py" line="6318" />
+      <location filename="../UI/UserInterface.py" line="6295" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6163" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
+      <location filename="../UI/UserInterface.py" line="6080" />
+      <location filename="../UI/UserInterface.py" line="6071" />
+      <location filename="../UI/UserInterface.py" line="6013" />
+      <location filename="../UI/UserInterface.py" line="6004" />
+      <source>Process Generation Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6005" />
+      <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="6014" />
+      <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="6072" />
+      <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="6081" />
+      <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="6115" />
+      <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="6124" />
+      <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="6148" />
+      <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="6164" />
+      <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="6185" />
+      <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="6237" />
+      <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="6296" />
+      <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="6319" />
+      <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="6409" />
+      <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="6442" />
+      <location filename="../UI/UserInterface.py" line="6432" />
+      <source>External Tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <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="6443" />
+      <source>No toolgroup entry '{0}' found.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6478" />
+      <source>Starting process '{0} {1}'.
+</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6496" />
-      <location filename="../UI/UserInterface.py" line="6409" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6296" />
-      <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6164" />
-      <location filename="../UI/UserInterface.py" line="6124" />
-      <location filename="../UI/UserInterface.py" line="6115" />
-      <location filename="../UI/UserInterface.py" line="6081" />
-      <location filename="../UI/UserInterface.py" line="6072" />
-      <location filename="../UI/UserInterface.py" line="6014" />
-      <location filename="../UI/UserInterface.py" line="6005" />
-      <source>Process Generation Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6006" />
-      <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="6015" />
-      <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="6073" />
-      <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="6082" />
-      <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="6116" />
-      <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="6125" />
-      <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="6149" />
-      <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="6165" />
-      <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="6186" />
-      <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="6238" />
-      <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="6297" />
-      <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="6320" />
-      <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="6410" />
-      <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="6443" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <source>External Tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6434" />
-      <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="6444" />
-      <source>No toolgroup entry '{0}' found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6479" />
-      <source>Starting process '{0} {1}'.
-</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6497" />
       <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="6573" />
+      <location filename="../UI/UserInterface.py" line="6572" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6857" />
+      <location filename="../UI/UserInterface.py" line="6795" />
+      <location filename="../UI/UserInterface.py" line="6751" />
+      <location filename="../UI/UserInterface.py" line="6679" />
+      <location filename="../UI/UserInterface.py" line="6615" />
+      <source>Documentation Missing</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6858" />
       <location filename="../UI/UserInterface.py" line="6796" />
       <location filename="../UI/UserInterface.py" line="6752" />
       <location filename="../UI/UserInterface.py" line="6680" />
       <location filename="../UI/UserInterface.py" line="6616" />
-      <source>Documentation Missing</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6859" />
-      <location filename="../UI/UserInterface.py" line="6797" />
-      <location filename="../UI/UserInterface.py" line="6753" />
-      <location filename="../UI/UserInterface.py" line="6681" />
-      <location filename="../UI/UserInterface.py" line="6617" />
       <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="6839" />
+      <location filename="../UI/UserInterface.py" line="6723" />
+      <source>Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6724" />
+      <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="6840" />
-      <location filename="../UI/UserInterface.py" line="6724" />
-      <source>Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6725" />
-      <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="6841" />
       <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="7020" />
+      <location filename="../UI/UserInterface.py" line="6955" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6956" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7021" />
-      <location filename="../UI/UserInterface.py" line="6956" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6957" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7022" />
       <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="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7318" />
+      <location filename="../UI/UserInterface.py" line="7317" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7336" />
+      <location filename="../UI/UserInterface.py" line="7335" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7538" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7539" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7540" />
       <source>&lt;p&gt;The tasks 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="7583" />
+      <location filename="../UI/UserInterface.py" line="7582" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7611" />
-      <location filename="../UI/UserInterface.py" line="7584" />
-      <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="7610" />
+      <location filename="../UI/UserInterface.py" line="7583" />
+      <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="7609" />
       <source>Read session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7627" />
+      <location filename="../UI/UserInterface.py" line="7626" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7629" />
+      <location filename="../UI/UserInterface.py" line="7628" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7652" />
+      <location filename="../UI/UserInterface.py" line="7651" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7697" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7698" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7699" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8058" />
+      <source>Drop Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8059" />
-      <source>Drop Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8060" />
       <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="8233" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8234" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8235" />
       <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;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8285" />
+      <location filename="../UI/UserInterface.py" line="8272" />
+      <source>First time usage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8273" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8286" />
-      <location filename="../UI/UserInterface.py" line="8273" />
-      <source>First time usage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8274" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8287" />
       <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="8310" />
+      <location filename="../UI/UserInterface.py" line="8309" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8490" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8491" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8492" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -85263,7 +85284,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1616" />
+      <location filename="../Utilities/__init__.py" line="1615" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_es.ts	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/i18n/eric7_es.ts	Fri Nov 25 11:51:51 2022 +0100
@@ -5556,7 +5556,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="206" />
+      <location filename="../Utilities/__init__.py" line="205" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>La codificación '{0}' es incorrecta para el texto indicado.</translation>
     </message>
@@ -8902,88 +8902,89 @@
       <translation>Estado</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="221" />
+      <location filename="../Debugger/DebugViewer.py" line="149" />
+      <source>Source</source>
+      <translation>Código fuente</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Don't Show</source>
       <translation>No Mostrar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Show Only</source>
       <translation>Mostrar Solo</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="233" />
-      <location filename="../Debugger/DebugViewer.py" line="162" />
+      <location filename="../Debugger/DebugViewer.py" line="248" />
+      <location filename="../Debugger/DebugViewer.py" line="176" />
       <source>Enter regular expression patterns separated by ';' to define variable filters. </source>
       <translation>Para definir filtros de variables introduzca patrones de expresión regular separados por ';'. </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="239" />
-      <location filename="../Debugger/DebugViewer.py" line="168" />
-      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
-      <translation>Para definir filtros de variables introduzca patrones de expresión regular separados por ';'. Todas las variables y atributos de clases que coincidan con una de las expresiones, no se muestran en el listado anterior.</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="246" />
-      <location filename="../Debugger/DebugViewer.py" line="176" />
-      <source>Set</source>
-      <translation>Establecer</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="184" />
-      <source>Shows the list of global variables and their values.</source>
-      <translation>Muestra un listado de variables globales y sus valores.</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="206" />
-      <source>Source</source>
-      <translation>Código fuente</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugViewer.py" line="254" />
+      <location filename="../Debugger/DebugViewer.py" line="182" />
+      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
+      <translation>Para definir filtros de variables introduzca patrones de expresión regular separados por ';'. Todas las variables y atributos de clases que coincidan con una de las expresiones, no se muestran en el listado anterior.</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="261" />
+      <location filename="../Debugger/DebugViewer.py" line="190" />
+      <source>Set</source>
+      <translation>Establecer</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="198" />
+      <source>Shows the list of global variables and their values.</source>
+      <translation>Muestra un listado de variables globales y sus valores.</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="269" />
       <source>Shows the list of local variables and their values.</source>
       <translation>Muestra un listado de variables locales y sus valores.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="271" />
+      <location filename="../Debugger/DebugViewer.py" line="295" />
       <source>Shows the current call stack.</source>
       <translation>Muestra la pila de llamadas actual.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="281" />
+      <location filename="../Debugger/DebugViewer.py" line="305" />
       <source>Shows a trace of the program flow.</source>
       <translation>Muestra un trazado del flujo del programa.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="292" />
+      <location filename="../Debugger/DebugViewer.py" line="316" />
       <source>Shows a list of defined breakpoints.</source>
       <translation>Muestra un listado de puntos de ruptura definidos.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="303" />
+      <location filename="../Debugger/DebugViewer.py" line="327" />
       <source>Shows a list of defined watchpoints.</source>
       <translation>Muestra un listado de puntos de watch definidos.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="312" />
+      <location filename="../Debugger/DebugViewer.py" line="336" />
       <source>Shows a list of raised exceptions.</source>
       <translation>Muestra un listado de excepciones lanzadas.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="323" />
+      <location filename="../Debugger/DebugViewer.py" line="347" />
       <source>Shows a code disassembly in case of an exception.</source>
       <translation>Muestra un desensamblado de código en caso de una excepción.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="749" />
+      <location filename="../Debugger/DebugViewer.py" line="790" />
       <source>&lt;p&gt;Debugger with ID &lt;b&gt;{0}&lt;/b&gt; has been connected.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Depurador con ID &lt;b&gt;{0}&lt;/b&gt; se ha conectado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="992" />
-      <location filename="../Debugger/DebugViewer.py" line="864" />
+      <location filename="../Debugger/DebugViewer.py" line="1033" />
+      <location filename="../Debugger/DebugViewer.py" line="905" />
       <source>unknown state ({0})</source>
       <translation>estado desconocido ({0})</translation>
     </message>
@@ -9468,26 +9469,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
       <source>Add allowed host</source>
       <translation>Añadir host permitido</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="343" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="307" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Introduzca la dirección IP de un host permitido</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="357" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="320" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;La dirección introducida &lt;b&gt;{0}&lt;/b&gt; no es una dirección IP v4 o IP v6 válida. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
       <source>Edit allowed host</source>
       <translation>Editar host permitido</translation>
     </message>
@@ -20878,7 +20879,7 @@
       <translation>Añadir/Cambiar</translation>
     </message>
     <message>
-      <location filename="../Project/FiletypeAssociationDialog.py" line="56" />
+      <location filename="../Project/FiletypeAssociationDialog.py" line="58" />
       <location filename="../Project/FiletypeAssociationDialog.py" line="45" />
       <source>Ignore</source>
       <translation>Ignorar</translation>
@@ -46822,7 +46823,7 @@
       <translation>Pygments</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="462" />
+      <location filename="../Preferences/__init__.py" line="461" />
       <location filename="../QScintilla/Lexers/__init__.py" line="386" />
       <source>Python Files (*.py *.py3)</source>
       <translation>Archivos Python (*.py *.py3)</translation>
@@ -47075,7 +47076,7 @@
       <translation>Todos los archivos (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="465" />
+      <location filename="../Preferences/__init__.py" line="464" />
       <location filename="../QScintilla/Lexers/__init__.py" line="479" />
       <source>Python3 Files (*.py)</source>
       <translation>Archivos Python (*.py3)</translation>
@@ -55648,18 +55649,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1608" />
+      <location filename="../Preferences/__init__.py" line="1653" />
       <source>Export Preferences</source>
       <translation>Exportar Preferencias</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1637" />
-      <location filename="../Preferences/__init__.py" line="1610" />
+      <location filename="../Preferences/__init__.py" line="1682" />
+      <location filename="../Preferences/__init__.py" line="1655" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Archivo de Propiedades (*.ini);;Todos los archivos (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1635" />
+      <location filename="../Preferences/__init__.py" line="1680" />
       <source>Import Preferences</source>
       <translation>Importar Preferencias</translation>
     </message>
@@ -55680,7 +55681,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="472" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
       <source>Variable Name</source>
       <translation>Nombre de Variable</translation>
     </message>
@@ -56525,7 +56526,7 @@
       <translation>Renombrar Archivo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3311" />
+      <location filename="../Project/Project.py" line="3313" />
       <location filename="../Project/Project.py" line="2130" />
       <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>
@@ -56556,154 +56557,154 @@
       <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="2517" />
+      <location filename="../Project/Project.py" line="2518" />
       <source>Create project directory</source>
       <translation>Crear directorio de proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2518" />
+      <location filename="../Project/Project.py" line="2519" />
       <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="3115" />
-      <location filename="../Project/Project.py" line="2579" />
-      <source>Create project management directory</source>
-      <translation>Crear directorio de gestión del proyecto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3116" />
       <location filename="../Project/Project.py" line="2580" />
+      <source>Create project management directory</source>
+      <translation>Crear directorio de gestión del proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3117" />
+      <location filename="../Project/Project.py" line="2581" />
       <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="2600" />
-      <source>Create main script</source>
-      <translation>Crear script principal</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2601" />
+      <source>Create main script</source>
+      <translation>Crear script principal</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2602" />
       <source>&lt;p&gt;The mainscript &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="2922" />
-      <location filename="../Project/Project.py" line="2625" />
-      <source>Create Makefile</source>
-      <translation>Crear Makefile</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2923" />
       <location filename="../Project/Project.py" line="2626" />
+      <source>Create Makefile</source>
+      <translation>Crear Makefile</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2924" />
+      <location filename="../Project/Project.py" line="2627" />
       <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="3144" />
-      <location filename="../Project/Project.py" line="2764" />
-      <location filename="../Project/Project.py" line="2735" />
-      <location filename="../Project/Project.py" line="2691" />
-      <location filename="../Project/Project.py" line="2666" />
-      <location filename="../Project/Project.py" line="2636" />
-      <source>New Project</source>
-      <translation>Proyecto nuevo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2637" />
-      <source>Add existing files to the project?</source>
-      <translation>¿Agregar archivos existentes al proyecto?</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3145" />
+      <location filename="../Project/Project.py" line="2765" />
+      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2692" />
       <location filename="../Project/Project.py" line="2667" />
+      <location filename="../Project/Project.py" line="2637" />
+      <source>New Project</source>
+      <translation>Proyecto nuevo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2638" />
+      <source>Add existing files to the project?</source>
+      <translation>¿Agregar archivos existentes al proyecto?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3146" />
+      <location filename="../Project/Project.py" line="2668" />
       <source>Select Version Control System</source>
       <translation>Seleccion el Sistema de control de versiones (VCS)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2765" />
-      <location filename="../Project/Project.py" line="2692" />
+      <location filename="../Project/Project.py" line="2766" />
+      <location filename="../Project/Project.py" line="2693" />
       <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="4082" />
-      <location filename="../Project/Project.py" line="2707" />
+      <location filename="../Project/Project.py" line="4085" />
+      <location filename="../Project/Project.py" line="2708" />
       <source>New project</source>
       <translation>Proyecto nuevo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2708" />
+      <location filename="../Project/Project.py" line="2709" />
       <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="2741" />
-      <location filename="../Project/Project.py" line="2729" />
+      <location filename="../Project/Project.py" line="2742" />
+      <location filename="../Project/Project.py" line="2730" />
       <source>None</source>
       <translation>Ninguno</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2737" />
       <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="2848" />
-      <source>Translation Pattern</source>
-      <translation>Patrón de Traducción</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2849" />
+      <source>Translation Pattern</source>
+      <translation>Patrón de Traducción</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2850" />
       <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="4102" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="4105" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Open project</source>
       <translation>Abrir proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3096" />
+      <location filename="../Project/Project.py" line="3097" />
       <source>Project Files (*.epj);;XML Project Files (*.e4p)</source>
       <translation>Archivos de Proyecto (*.epj);;Archivos XML de Proyecto (*.e4p)</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="3298" />
+      <location filename="../Project/Project.py" line="3288" />
+      <source>Project Files (*.epj)</source>
+      <translation>Archivos de proyecto (*.epj)</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="3296" />
-      <location filename="../Project/Project.py" line="3286" />
-      <source>Project Files (*.epj)</source>
-      <translation>Archivos de proyecto (*.epj)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3294" />
       <source>Save Project</source>
       <translation>Guardar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3310" />
+      <location filename="../Project/Project.py" line="3312" />
       <source>Save File</source>
       <translation>Guardar archivo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3349" />
+      <location filename="../Project/Project.py" line="3351" />
       <source>Close Project</source>
       <translation>Cerrar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3350" />
+      <location filename="../Project/Project.py" line="3352" />
       <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="3538" />
-      <location filename="../Project/Project.py" line="3504" />
+      <location filename="../Project/Project.py" line="3541" />
+      <location filename="../Project/Project.py" line="3507" />
       <source>Syntax errors detected</source>
       <translation>Se detectaron errores de sintaxis</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="3539" />
-      <location filename="../Project/Project.py" line="3505" />
+      <location filename="../Project/Project.py" line="3542" />
+      <location filename="../Project/Project.py" line="3508" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>El archivo contiene %n archivo(s) con errores de sintaxis.</numerusform>
@@ -56711,1151 +56712,1171 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4084" />
+      <location filename="../Project/Project.py" line="4087" />
       <source>&amp;New...</source>
       <translation>&amp;Nuevo...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4090" />
+      <location filename="../Project/Project.py" line="4093" />
       <source>Generate a new project</source>
       <translation>Generar un nuevo proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4092" />
+      <location filename="../Project/Project.py" line="4095" />
       <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="4104" />
+      <location filename="../Project/Project.py" line="4107" />
       <source>&amp;Open...</source>
       <translation>&amp;Abrir...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4110" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>Open an existing project</source>
       <translation>Abrir un proyecto existente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4115" />
       <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="4118" />
+      <location filename="../Project/Project.py" line="4121" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4123" />
+      <source>&amp;Reload</source>
+      <translation type="unfinished">&amp;Recargar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4129" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4131" />
+      <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="4137" />
       <source>Close project</source>
       <translation>Cerrar proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4120" />
+      <location filename="../Project/Project.py" line="4139" />
       <source>&amp;Close</source>
       <translation>&amp;Cerrar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4126" />
+      <location filename="../Project/Project.py" line="4145" />
       <source>Close the current project</source>
       <translation>Cierra el proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4128" />
+      <location filename="../Project/Project.py" line="4147" />
       <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="4134" />
+      <location filename="../Project/Project.py" line="4153" />
       <source>Save project</source>
       <translation>Guardar proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4410" />
-      <location filename="../Project/Project.py" line="4136" />
+      <location filename="../Project/Project.py" line="4429" />
+      <location filename="../Project/Project.py" line="4155" />
       <source>&amp;Save</source>
       <translation>&amp;Guardar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4142" />
+      <location filename="../Project/Project.py" line="4161" />
       <source>Save the current project</source>
       <translation>Guarda el proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4144" />
+      <location filename="../Project/Project.py" line="4163" />
       <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="4150" />
+      <location filename="../Project/Project.py" line="4169" />
       <source>Save project as</source>
       <translation>Guardar proyecto como</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4152" />
+      <location filename="../Project/Project.py" line="4171" />
       <source>Save &amp;as...</source>
       <translation>Guardar co&amp;mo...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4158" />
-      <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="4160" />
-      <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="4175" />
-      <source>Add files to project</source>
-      <translation>Agregar archivos al proyecto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4177" />
-      <source>Add &amp;files...</source>
-      <translation>&amp;Agregar archivos...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4183" />
-      <source>Add files to the current project</source>
-      <translation>Añadir archivos al proyecto actual</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4185" />
-      <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>
+      <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="4179" />
+      <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="4194" />
+      <source>Add files to project</source>
+      <translation>Agregar archivos al proyecto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4196" />
+      <source>Add &amp;files...</source>
+      <translation>&amp;Agregar archivos...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4202" />
+      <source>Add files to the current project</source>
+      <translation>Añadir archivos al proyecto actual</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4204" />
+      <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="4215" />
       <source>Add directory to project</source>
       <translation>Agregar directorio al proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4198" />
+      <location filename="../Project/Project.py" line="4217" />
       <source>Add directory...</source>
       <translation>Agregar directorio...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4205" />
+      <location filename="../Project/Project.py" line="4224" />
       <source>Add a directory to the current project</source>
       <translation>Agregar directorio al proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4208" />
-      <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="4218" />
-      <source>Add translation to project</source>
-      <translation>Añadir traducción al proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4220" />
-      <source>Add &amp;translation...</source>
-      <translation>Añadir &amp;Traducción...</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4227" />
+      <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="4237" />
+      <source>Add translation to project</source>
+      <translation>Añadir traducción al proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4239" />
+      <source>Add &amp;translation...</source>
+      <translation>Añadir &amp;Traducción...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4246" />
       <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="4230" />
-      <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="4240" />
-      <source>Search new files</source>
-      <translation>Buscar archivos nuevos</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4241" />
-      <source>Searc&amp;h new files...</source>
-      <translation>Bus&amp;car archivos nuevos...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4247" />
-      <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="4249" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) 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, *.ui, *.idl, *.proto) en el directorio del proyecto y en los subdirectorios registrados.&lt;/p&gt;</translation>
+      <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="4259" />
+      <source>Search new files</source>
+      <translation>Buscar archivos nuevos</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4260" />
+      <source>Searc&amp;h new files...</source>
+      <translation>Bus&amp;car archivos nuevos...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4266" />
+      <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="4268" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) 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, *.ui, *.idl, *.proto) en el directorio del proyecto y en los subdirectorios registrados.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4279" />
       <source>Search Project File</source>
       <translation>Buscar Archivo en Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4261" />
+      <location filename="../Project/Project.py" line="4280" />
       <source>Search Project File...</source>
       <translation>Buscar Archivo en Proyecto...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4262" />
+      <location filename="../Project/Project.py" line="4281" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4267" />
+      <location filename="../Project/Project.py" line="4286" />
       <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="4269" />
-      <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="4278" />
-      <source>Project properties</source>
-      <translation>Propiedades del proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4280" />
-      <source>&amp;Properties...</source>
-      <translation>&amp;Propiedades...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4286" />
-      <source>Show the project properties</source>
-      <translation>Ver las propiedades del proyecto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4288" />
-      <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>
+      <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="4297" />
-      <source>User project properties</source>
-      <translation>Propiedades del usuario del proyecto</translation>
+      <source>Project properties</source>
+      <translation>Propiedades del proyecto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4299" />
+      <source>&amp;Properties...</source>
+      <translation>&amp;Propiedades...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4305" />
+      <source>Show the project properties</source>
+      <translation>Ver las propiedades del proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4307" />
+      <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="4316" />
+      <source>User project properties</source>
+      <translation>Propiedades del usuario del proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4318" />
       <source>&amp;User Properties...</source>
       <translation>Propiedades del &amp;Usuario...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4306" />
+      <location filename="../Project/Project.py" line="4325" />
       <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="4309" />
+      <location filename="../Project/Project.py" line="4328" />
       <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="4319" />
+      <location filename="../Project/Project.py" line="4338" />
       <source>Filetype Associations</source>
       <translation>Asociación de tipos de archivo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4320" />
+      <location filename="../Project/Project.py" line="4339" />
       <source>Filetype Associations...</source>
       <translation>Asociación de tipos de archivo...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4327" />
+      <location filename="../Project/Project.py" line="4346" />
       <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="4330" />
+      <location filename="../Project/Project.py" line="4349" />
       <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="4343" />
+      <location filename="../Project/Project.py" line="4362" />
       <source>Lexer Associations</source>
       <translation>Asociaciones de Analizador Léxico</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4344" />
+      <location filename="../Project/Project.py" line="4363" />
       <source>Lexer Associations...</source>
       <translation>Asociaciones de Analizador Léxico...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4351" />
+      <location filename="../Project/Project.py" line="4370" />
       <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="4354" />
-      <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="4372" />
-      <source>Debugger Properties</source>
-      <translation>Propiedades del depurador</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4373" />
-      <source>Debugger &amp;Properties...</source>
-      <translation>&amp;Propiedades del depurador...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4379" />
-      <source>Show the debugger properties</source>
-      <translation>Muestra las propiedades del depurador</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4381" />
-      <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>
+      <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="4391" />
-      <source>Load</source>
-      <translation>Cargar</translation>
+      <source>Debugger Properties</source>
+      <translation>Propiedades del depurador</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4392" />
-      <source>&amp;Load</source>
-      <translation>&amp;Cargar</translation>
+      <source>Debugger &amp;Properties...</source>
+      <translation>&amp;Propiedades del depurador...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4398" />
-      <source>Load the debugger properties</source>
-      <translation>Cargar las propiedades del depurador</translation>
+      <source>Show the debugger properties</source>
+      <translation>Muestra las propiedades del depurador</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4400" />
+      <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="4410" />
+      <source>Load</source>
+      <translation>Cargar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4411" />
+      <source>&amp;Load</source>
+      <translation>&amp;Cargar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4417" />
+      <source>Load the debugger properties</source>
+      <translation>Cargar las propiedades del depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4419" />
       <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="4409" />
-      <source>Save</source>
-      <translation>Guardar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4416" />
-      <source>Save the debugger properties</source>
-      <translation>Guardar propiedades del depurador</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4418" />
-      <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="4427" />
-      <source>Delete</source>
-      <translation>Borrar</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4428" />
-      <source>&amp;Delete</source>
-      <translation>&amp;Borrar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4434" />
-      <source>Delete the debugger properties</source>
-      <translation>Borrar las propiedades del depurador</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4436" />
-      <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>
+      <source>Save</source>
+      <translation>Guardar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4435" />
+      <source>Save the debugger properties</source>
+      <translation>Guardar propiedades del depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4437" />
+      <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="4446" />
-      <source>Reset</source>
-      <translation>Reiniciar</translation>
+      <source>Delete</source>
+      <translation>Borrar</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4447" />
-      <source>&amp;Reset</source>
-      <translation>&amp;Reiniciar</translation>
+      <source>&amp;Delete</source>
+      <translation>&amp;Borrar</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4453" />
-      <source>Reset the debugger properties</source>
-      <translation>Restablecer las propiedades del depurador</translation>
+      <source>Delete the debugger properties</source>
+      <translation>Borrar las propiedades del depurador</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4455" />
+      <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="4465" />
+      <source>Reset</source>
+      <translation>Reiniciar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4466" />
+      <source>&amp;Reset</source>
+      <translation>&amp;Reiniciar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4472" />
+      <source>Reset the debugger properties</source>
+      <translation>Restablecer las propiedades del depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4474" />
       <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="4471" />
-      <location filename="../Project/Project.py" line="4470" />
+      <location filename="../Project/Project.py" line="4490" />
+      <location filename="../Project/Project.py" line="4489" />
       <source>Load session</source>
       <translation>Cargar sesión</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4477" />
+      <location filename="../Project/Project.py" line="4496" />
       <source>Load the projects session file.</source>
       <translation>Cargar archivo de sesión de proyectos.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4479" />
+      <location filename="../Project/Project.py" line="4498" />
       <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="4495" />
-      <location filename="../Project/Project.py" line="4494" />
+      <location filename="../Project/Project.py" line="4514" />
+      <location filename="../Project/Project.py" line="4513" />
       <source>Save session</source>
       <translation>Guardar sesión</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4501" />
+      <location filename="../Project/Project.py" line="4520" />
       <source>Save the projects session file.</source>
       <translation>Guardar archivos de sessión de proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4503" />
+      <location filename="../Project/Project.py" line="4522" />
       <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="4519" />
-      <location filename="../Project/Project.py" line="4518" />
+      <location filename="../Project/Project.py" line="4538" />
+      <location filename="../Project/Project.py" line="4537" />
       <source>Delete session</source>
       <translation>Borrar sesión</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4525" />
+      <location filename="../Project/Project.py" line="4544" />
       <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="4527" />
+      <location filename="../Project/Project.py" line="4546" />
       <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="4542" />
+      <location filename="../Project/Project.py" line="4561" />
       <source>Code Metrics</source>
       <translation>Métricas de código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4543" />
+      <location filename="../Project/Project.py" line="4562" />
       <source>&amp;Code Metrics...</source>
       <translation>Métricas de &amp;código...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4550" />
+      <location filename="../Project/Project.py" line="4569" />
       <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="4553" />
+      <location filename="../Project/Project.py" line="4572" />
       <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="4563" />
+      <location filename="../Project/Project.py" line="4582" />
       <source>Python Code Coverage</source>
       <translation>Cobertura de Código Python</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4564" />
+      <location filename="../Project/Project.py" line="4583" />
       <source>Code Co&amp;verage...</source>
       <translation>Co&amp;bertura de código...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4571" />
+      <location filename="../Project/Project.py" line="4590" />
       <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="4574" />
+      <location filename="../Project/Project.py" line="4593" />
       <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="5894" />
-      <location filename="../Project/Project.py" line="5881" />
-      <location filename="../Project/Project.py" line="4584" />
+      <location filename="../Project/Project.py" line="5914" />
+      <location filename="../Project/Project.py" line="5901" />
+      <location filename="../Project/Project.py" line="4603" />
       <source>Profile Data</source>
       <translation>Datos de perfil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4585" />
+      <location filename="../Project/Project.py" line="4604" />
       <source>&amp;Profile Data...</source>
       <translation>Datos de &amp;pefil...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4592" />
-      <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="4595" />
-      <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="5946" />
-      <location filename="../Project/Project.py" line="4610" />
-      <source>Application Diagram</source>
-      <translation>Diagrama de Aplicación</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4611" />
-      <source>&amp;Application Diagram...</source>
-      <translation>Diagrama de &amp;Aplicación...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4618" />
-      <source>Show a diagram of the project.</source>
-      <translation>Mostrar diagrama del proyecto.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4621" />
-      <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>
+      <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="4614" />
+      <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="5966" />
+      <location filename="../Project/Project.py" line="4629" />
+      <source>Application Diagram</source>
+      <translation>Diagrama de Aplicación</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4630" />
-      <source>Load Diagram</source>
-      <translation>Cargar Diagrama</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4631" />
-      <source>&amp;Load Diagram...</source>
-      <translation>&amp;Cargar Diagrama...</translation>
+      <source>&amp;Application Diagram...</source>
+      <translation>Diagrama de &amp;Aplicación...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4637" />
-      <source>Load a diagram from file.</source>
-      <translation>CArgar diagrama desde archivo.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4639" />
-      <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="6131" />
-      <location filename="../Project/Project.py" line="6080" />
-      <location filename="../Project/Project.py" line="4654" />
-      <source>Create Package List</source>
-      <translation>Crear Lista del Paquete</translation>
+      <source>Show a diagram of the project.</source>
+      <translation>Mostrar diagrama del proyecto.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4640" />
+      <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="4649" />
+      <source>Load Diagram</source>
+      <translation>Cargar Diagrama</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4650" />
+      <source>&amp;Load Diagram...</source>
+      <translation>&amp;Cargar Diagrama...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4656" />
+      <source>Load a diagram from file.</source>
+      <translation>CArgar diagrama desde archivo.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4658" />
+      <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="6151" />
+      <location filename="../Project/Project.py" line="6100" />
+      <location filename="../Project/Project.py" line="4673" />
+      <source>Create Package List</source>
+      <translation>Crear Lista del Paquete</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4675" />
       <source>Create &amp;Package List</source>
       <translation>Crear &amp;Package List</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4663" />
+      <location filename="../Project/Project.py" line="4682" />
       <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="4666" />
-      <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="6200" />
-      <location filename="../Project/Project.py" line="4677" />
-      <source>Create Plugin Archives</source>
-      <translation>Crear Archivos de Plugin</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4679" />
-      <source>Create Plugin &amp;Archives</source>
-      <translation>Crear &amp;Archivos de Plugin</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4685" />
+      <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="6220" />
+      <location filename="../Project/Project.py" line="4696" />
+      <source>Create Plugin Archives</source>
+      <translation>Crear Archivos de Plugin</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4698" />
+      <source>Create Plugin &amp;Archives</source>
+      <translation>Crear &amp;Archivos de Plugin</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4704" />
       <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="4687" />
+      <location filename="../Project/Project.py" line="4706" />
       <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="4699" />
+      <location filename="../Project/Project.py" line="4718" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation>Crear Archivos de Plugin (Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4701" />
+      <location filename="../Project/Project.py" line="4720" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation>Crear Archivos de Plugin (&amp;Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4708" />
+      <location filename="../Project/Project.py" line="4727" />
       <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="4711" />
+      <location filename="../Project/Project.py" line="4730" />
       <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="6621" />
-      <location filename="../Project/Project.py" line="6592" />
-      <location filename="../Project/Project.py" line="6543" />
-      <location filename="../Project/Project.py" line="4730" />
+      <location filename="../Project/Project.py" line="6641" />
+      <location filename="../Project/Project.py" line="6612" />
+      <location filename="../Project/Project.py" line="6563" />
+      <location filename="../Project/Project.py" line="4749" />
       <source>Execute Make</source>
       <translation>Ejecutar Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4731" />
-      <source>&amp;Execute Make</source>
-      <translation>&amp;Ejecutar Make</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4737" />
-      <source>Perform a 'make' run.</source>
-      <translation>Ejecutar un 'make'.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4739" />
-      <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="6598" />
-      <location filename="../Project/Project.py" line="4749" />
-      <source>Test for Changes</source>
-      <translation>Comprobar Cambios</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4750" />
+      <source>&amp;Execute Make</source>
+      <translation>&amp;Ejecutar Make</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4756" />
+      <source>Perform a 'make' run.</source>
+      <translation>Ejecutar un 'make'.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4758" />
+      <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="6618" />
+      <location filename="../Project/Project.py" line="4768" />
+      <source>Test for Changes</source>
+      <translation>Comprobar Cambios</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4769" />
       <source>&amp;Test for Changes</source>
       <translation>&amp;Comprobar Cambios</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4757" />
+      <location filename="../Project/Project.py" line="4776" />
       <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="4760" />
-      <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="4778" />
-      <source>Create SBOM File</source>
-      <translation>Crear Archivo SBOM</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4779" />
+      <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="4797" />
+      <source>Create SBOM File</source>
+      <translation>Crear Archivo SBOM</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4798" />
       <source>Create &amp;SBOM File</source>
       <translation>Crear Archivo &amp;SBOM</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4786" />
+      <location filename="../Project/Project.py" line="4805" />
       <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="4789" />
+      <location filename="../Project/Project.py" line="4808" />
       <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="4806" />
+      <location filename="../Project/Project.py" line="4825" />
       <source>About Black</source>
       <translation>Acerca de Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4826" />
       <source>&amp;Black</source>
       <translation>&amp;Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4813" />
+      <location filename="../Project/Project.py" line="4832" />
       <source>Show some information about 'Black'.</source>
       <translation>Mostrar información acerca de 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4815" />
+      <location filename="../Project/Project.py" line="4834" />
       <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="4827" />
+      <location filename="../Project/Project.py" line="4846" />
       <source>Format Code</source>
       <translation>Formatear Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4847" />
       <source>&amp;Format Code</source>
       <translation>&amp;Formatear Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4835" />
+      <location filename="../Project/Project.py" line="4854" />
       <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="4838" />
+      <location filename="../Project/Project.py" line="4857" />
       <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="4850" />
+      <location filename="../Project/Project.py" line="4869" />
       <source>Check Code Formatting</source>
       <translation>Comprobar Formato de Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4851" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>&amp;Check Code Formatting</source>
       <translation>&amp;Comprobar Formato de Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4858" />
-      <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="4863" />
-      <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="4876" />
-      <source>Code Formatting Diff</source>
-      <translation>Diff de Formato de Código</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4877" />
+      <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="4882" />
+      <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="4895" />
+      <source>Code Formatting Diff</source>
+      <translation>Diff de Formato de Código</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
       <source>Code Formatting &amp;Diff</source>
       <translation>&amp;Diff de Formato de Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4884" />
+      <location filename="../Project/Project.py" line="4903" />
       <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="4890" />
+      <location filename="../Project/Project.py" line="4909" />
       <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="5055" />
-      <location filename="../Project/Project.py" line="5005" />
-      <location filename="../Project/Project.py" line="5004" />
-      <location filename="../Project/Project.py" line="4904" />
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="5074" />
+      <location filename="../Project/Project.py" line="5024" />
+      <location filename="../Project/Project.py" line="5023" />
+      <location filename="../Project/Project.py" line="4923" />
+      <location filename="../Project/Project.py" line="4922" />
       <source>Configure</source>
       <translation>Configurar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4930" />
       <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="4916" />
+      <location filename="../Project/Project.py" line="4935" />
       <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="4932" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4933" />
+      <location filename="../Project/Project.py" line="4952" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4939" />
+      <location filename="../Project/Project.py" line="4958" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4960" />
       <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="4954" />
-      <location filename="../Project/Project.py" line="4953" />
+      <location filename="../Project/Project.py" line="4973" />
+      <location filename="../Project/Project.py" line="4972" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4961" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4983" />
       <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="4978" />
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4997" />
+      <location filename="../Project/Project.py" line="4996" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4985" />
+      <location filename="../Project/Project.py" line="5004" />
       <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="4991" />
+      <location filename="../Project/Project.py" line="5010" />
       <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="5012" />
+      <location filename="../Project/Project.py" line="5031" />
       <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="5018" />
+      <location filename="../Project/Project.py" line="5037" />
       <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="5034" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Install Project</source>
       <translation>Instalar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5035" />
+      <location filename="../Project/Project.py" line="5054" />
       <source>&amp;Install Project</source>
       <translation>&amp;Instalar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5042" />
+      <location filename="../Project/Project.py" line="5061" />
       <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="5045" />
+      <location filename="../Project/Project.py" line="5064" />
       <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="5056" />
+      <location filename="../Project/Project.py" line="5075" />
       <source>&amp;Configure</source>
       <translation>&amp;Configurar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5063" />
+      <location filename="../Project/Project.py" line="5082" />
       <source>Configure the embedded environment.</source>
       <translation>Configurar el entorno embebido.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
-      <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="5076" />
-      <source>Upgrade</source>
-      <translation>Actualizar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5077" />
-      <source>&amp;Upgrade</source>
-      <translation>Act&amp;ualizar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5083" />
-      <source>Upgrade the embedded environment.</source>
-      <translation>Actualizar el entorno embebido.</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5085" />
-      <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="5097" />
-      <source>Recreate</source>
-      <translation>Recrear</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5098" />
-      <source>&amp;Recreate</source>
-      <translation>&amp;Recrear</translation>
+      <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="5095" />
+      <source>Upgrade</source>
+      <translation>Actualizar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5096" />
+      <source>&amp;Upgrade</source>
+      <translation>Act&amp;ualizar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5102" />
+      <source>Upgrade the embedded environment.</source>
+      <translation>Actualizar el entorno embebido.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5104" />
+      <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="5116" />
+      <source>Recreate</source>
+      <translation>Recrear</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5117" />
+      <source>&amp;Recreate</source>
+      <translation>&amp;Recrear</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5123" />
       <source>Recreate the embedded environment.</source>
       <translation>Recrear el entorno embebido.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5106" />
+      <location filename="../Project/Project.py" line="5125" />
       <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="5135" />
-      <source>&amp;Project</source>
-      <translation>&amp;Proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5136" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Abrir Proyectos &amp;Recientes</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5137" />
-      <source>Session</source>
-      <translation>Sesión</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5138" />
-      <source>Debugger</source>
-      <translation>Depurador</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5139" />
-      <source>Embedded Environment</source>
-      <translation>Entorno Embebido</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5141" />
-      <source>Project-T&amp;ools</source>
-      <translation>Herramientas de Pr&amp;ojecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5142" />
-      <source>&amp;Version Control</source>
-      <translation>Control de &amp;Versiones</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5146" />
-      <source>Chec&amp;k</source>
-      <translation>Veri&amp;ficar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5148" />
-      <source>Code &amp;Formatting</source>
-      <translation>&amp;Formato de Código</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5150" />
-      <source>Sho&amp;w</source>
-      <translation>V&amp;er</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagramas</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Pac&amp;kagers</source>
-      <translation>Empa&amp;quetadores</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5153" />
-      <source>Source &amp;Documentation</source>
-      <translation>Origen de &amp;Documentación</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5155" />
-      <source>Make</source>
-      <translation>Make</translation>
+      <source>&amp;Project</source>
+      <translation>&amp;Proyecto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5156" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Abrir Proyectos &amp;Recientes</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5157" />
+      <source>Session</source>
+      <translation>Sesión</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5158" />
+      <source>Debugger</source>
+      <translation>Depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5159" />
+      <source>Embedded Environment</source>
+      <translation>Entorno Embebido</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5161" />
+      <source>Project-T&amp;ools</source>
+      <translation>Herramientas de Pr&amp;ojecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5162" />
+      <source>&amp;Version Control</source>
+      <translation>Control de &amp;Versiones</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5166" />
+      <source>Chec&amp;k</source>
+      <translation>Veri&amp;ficar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5168" />
+      <source>Code &amp;Formatting</source>
+      <translation>&amp;Formato de Código</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5170" />
+      <source>Sho&amp;w</source>
+      <translation>V&amp;er</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5171" />
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagramas</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Pac&amp;kagers</source>
+      <translation>Empa&amp;quetadores</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
+      <source>Source &amp;Documentation</source>
+      <translation>Origen de &amp;Documentación</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5175" />
+      <source>Make</source>
+      <translation>Make</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5176" />
       <source>Other Tools</source>
       <translation>Otras Herramientas</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5317" />
-      <location filename="../Project/Project.py" line="5314" />
+      <location filename="../Project/Project.py" line="5337" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>Project</source>
       <translation>Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5378" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Clear</source>
       <translation>&amp;Borrar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5557" />
       <source>Search New Files</source>
       <translation>Buscar nuevos archivos</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5558" />
       <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="5687" />
-      <location filename="../Project/Project.py" line="5674" />
+      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5694" />
       <source>Version Control System</source>
       <translation>Sistema de control de versiones</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5695" />
       <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="5688" />
+      <location filename="../Project/Project.py" line="5708" />
       <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="5836" />
+      <location filename="../Project/Project.py" line="5856" />
       <source>Coverage Data</source>
       <translation>Datos de Cobertura</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5882" />
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5902" />
+      <location filename="../Project/Project.py" line="5857" />
       <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="5849" />
+      <location filename="../Project/Project.py" line="5869" />
       <source>Code Coverage</source>
       <translation>Cobertura de codigo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5850" />
+      <location filename="../Project/Project.py" line="5870" />
       <source>Please select a coverage file</source>
       <translation>Por favor seleccione un archivo de cobertura</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5915" />
       <source>Please select a profile file</source>
       <translation>Por favor seleccione un archivo de profiling</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5947" />
+      <location filename="../Project/Project.py" line="5967" />
       <source>Include module names?</source>
       <translation>¿Incluir nombres de módulos?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6081" />
+      <location filename="../Project/Project.py" line="6101" />
       <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="6132" />
+      <location filename="../Project/Project.py" line="6152" />
       <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="6421" />
-      <location filename="../Project/Project.py" line="6379" />
-      <location filename="../Project/Project.py" line="6333" />
-      <location filename="../Project/Project.py" line="6322" />
-      <location filename="../Project/Project.py" line="6304" />
-      <location filename="../Project/Project.py" line="6271" />
-      <location filename="../Project/Project.py" line="6241" />
-      <location filename="../Project/Project.py" line="6213" />
-      <location filename="../Project/Project.py" line="6183" />
-      <location filename="../Project/Project.py" line="6169" />
-      <location filename="../Project/Project.py" line="6152" />
+      <location filename="../Project/Project.py" line="6441" />
+      <location filename="../Project/Project.py" line="6399" />
+      <location filename="../Project/Project.py" line="6353" />
+      <location filename="../Project/Project.py" line="6342" />
+      <location filename="../Project/Project.py" line="6324" />
+      <location filename="../Project/Project.py" line="6291" />
+      <location filename="../Project/Project.py" line="6261" />
+      <location filename="../Project/Project.py" line="6233" />
+      <location filename="../Project/Project.py" line="6203" />
+      <location filename="../Project/Project.py" line="6189" />
+      <location filename="../Project/Project.py" line="6172" />
       <source>Create Plugin Archive</source>
       <translation>Crear Archivo de Plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6153" />
+      <location filename="../Project/Project.py" line="6173" />
       <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="6170" />
+      <location filename="../Project/Project.py" line="6190" />
       <source>Select package lists:</source>
       <translation>Seleccionar package lists:</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6184" />
+      <location filename="../Project/Project.py" line="6204" />
       <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="6192" />
+      <location filename="../Project/Project.py" line="6212" />
       <source>Creating plugin archives...</source>
       <translation>Creando archivos de plugin...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6193" />
+      <location filename="../Project/Project.py" line="6213" />
       <source>Abort</source>
       <translation>Abortar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6196" />
+      <location filename="../Project/Project.py" line="6216" />
       <source>%v/%m Archives</source>
       <translation>%v/%m Archivos</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6214" />
+      <location filename="../Project/Project.py" line="6234" />
       <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="6242" />
+      <location filename="../Project/Project.py" line="6262" />
       <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="6272" />
+      <location filename="../Project/Project.py" line="6292" />
       <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="6305" />
+      <location filename="../Project/Project.py" line="6325" />
       <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="6323" />
+      <location filename="../Project/Project.py" line="6343" />
       <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="6334" />
+      <location filename="../Project/Project.py" line="6354" />
       <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="6380" />
+      <location filename="../Project/Project.py" line="6400" />
       <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="6422" />
+      <location filename="../Project/Project.py" line="6442" />
       <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="6544" />
+      <location filename="../Project/Project.py" line="6564" />
       <source>The make process did not start.</source>
       <translation>El proceso make no ha comenzado.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6593" />
+      <location filename="../Project/Project.py" line="6613" />
       <source>The make process crashed.</source>
       <translation>El proceso make ha fallado.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6601" />
+      <location filename="../Project/Project.py" line="6621" />
       <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="6606" />
+      <location filename="../Project/Project.py" line="6626" />
       <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="6622" />
+      <location filename="../Project/Project.py" line="6642" />
       <source>The makefile contains errors.</source>
       <translation>El makefile contiene errores.</translation>
     </message>
@@ -58115,22 +58136,22 @@
   <context>
     <name>ProjectFile</name>
     <message>
-      <location filename="../Project/ProjectFile.py" line="109" />
+      <location filename="../Project/ProjectFile.py" line="108" />
       <source>Save Project File</source>
       <translation>Guardar Archivo de Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFile.py" line="110" />
+      <location filename="../Project/ProjectFile.py" line="109" />
       <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de proyecto &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectFile.py" line="134" />
+      <source>Read Project File</source>
+      <translation>Leer Archivo de Proyecto</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFile.py" line="135" />
-      <source>Read Project File</source>
-      <translation>Leer Archivo de Proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFile.py" line="136" />
       <source>&lt;p&gt;The project 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 proyecto&lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
@@ -59998,265 +60019,265 @@
   <context>
     <name>ProjectTranslationsBrowser</name>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="99" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="76" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="74" />
       <source>Translations</source>
       <translation>Traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="79" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="77" />
       <source>&lt;b&gt;Project Translations Browser&lt;/b&gt;&lt;p&gt;This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Navegador de Traducciones del Proyecto&lt;/b&gt;&lt;p&gt;Permite visualizar facilmente todos los traducciones que contiene el proyecto actual. A través del menú de contexto se pueden ejecutar varias acciones.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="95" />
       <source>Translation Files ({0})</source>
       <translation type="unfinished">Archivos de traducción ({0})</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="98" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="96" />
       <source>Translation Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="109" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="107" />
       <source>Translations Browser</source>
       <translation type="unfinished">Navegador de Traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="239" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="183" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="237" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="181" />
       <source>Generate translation</source>
       <translation>Generar traducción</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="249" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="247" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation (with obsolete)</source>
       <translation>Generar traducción (con obsoleto)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="538" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="360" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="258" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="194" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="536" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="507" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="330" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="256" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="192" />
       <source>Generate all translations</source>
       <translation>Generar todas las traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="513" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="369" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="267" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="198" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="545" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="511" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="367" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="196" />
       <source>Generate all translations (with obsolete)</source>
       <translation>Generar todas las traducciones (con obsoleto)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="419" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="417" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
       <source>Open in Qt-Linguist</source>
       <translation>Abrir en Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="423" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="279" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="206" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="471" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="421" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="277" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="204" />
       <source>Open in Editor</source>
       <translation>Abrir en Editor</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="286" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="284" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
       <source>Release translation</source>
       <translation>Crear versión release de la traducción</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="518" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="377" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="341" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="295" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="553" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="516" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="375" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="339" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="293" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="214" />
       <source>Release all translations</source>
       <translation>Crear versión release de todas las traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="220" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
       <source>Preview translation</source>
       <translation>Previsualizar traducción</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="346" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="344" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Preview all translations</source>
       <translation>Previsualizar todas las traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="441" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="352" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="527" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
       <source>Extract messages</source>
       <translation>Extraer mensajes</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="469" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="275" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="273" />
       <source>Open</source>
       <translation>Abrir</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="488" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="302" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="486" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="300" />
       <source>Remove from project</source>
       <translation>Quitar del proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="561" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="491" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="305" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="559" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="489" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
       <source>Delete</source>
       <translation>Borrar</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="384" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="309" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="307" />
       <source>Add translation...</source>
       <translation>Añadir traducción...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="568" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="566" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="385" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
       <source>Add translation files...</source>
       <translation>Añadir archivos de traducción...</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="569" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="313" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Copiar Ruta al Portapapeles</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="492" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="388" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="315" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Copiar Ruta al Portapapeles</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="573" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="390" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="448" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
       <source>Generate translations</source>
       <translation>Generar traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="460" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="458" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="410" />
       <source>Generate translations (with obsolete)</source>
       <translation>Generar traduccines (con obsoleto)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="480" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="478" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="426" />
       <source>Release translations</source>
       <translation>Crear versión release de las traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="432" />
       <source>Preview translations</source>
       <translation>Previsualizar traducciones</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="835" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="833" />
       <source>Delete translation files</source>
       <translation>Borrar archivos de traducción</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="836" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="834" />
       <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="1504" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1001" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="961" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1502" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="999" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="959" />
       <source>Write temporary project file</source>
       <translation>Guardar archivo de proyecto temporal</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1505" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1241" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="962" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1239" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="960" />
       <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="1002" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1000" />
       <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="1240" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1123" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1111" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1238" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1121" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1109" />
       <source>Translation file generation</source>
       <translation>Generación de archivo de traducción</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1112" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1110" />
       <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="1118" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1116" />
       <source> The process has crashed.</source>
       <translation> El proceso ha dejado de funcionar.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1122" />
       <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="1534" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1532" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1292" />
       <source>Process Generation Error</source>
       <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1337" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1295" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1335" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1293" />
       <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="1427" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1425" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1405" />
       <source>Translation file release</source>
       <translation>Crear versión release del archivo de traducción</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1406" />
       <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="1428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1426" />
       <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="1535" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1533" />
       <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>
@@ -83451,2149 +83472,2149 @@
       <translation>Configuracion de conexiones signal/slot...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="574" />
+      <location filename="../UI/UserInterface.py" line="573" />
       <source>Initializing Tools...</source>
       <translation>Inicializando Herramientas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="585" />
+      <location filename="../UI/UserInterface.py" line="584" />
       <source>Registering Objects...</source>
       <translation>Registrando Objetos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="619" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Initializing Actions...</source>
       <translation>Inicializando Acciones...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="621" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Initializing Menus...</source>
       <translation>Inicializando Menues...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="623" />
+      <location filename="../UI/UserInterface.py" line="622" />
       <source>Initializing Toolbars...</source>
       <translation>Inicializando Barras de Herramientas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="625" />
+      <location filename="../UI/UserInterface.py" line="624" />
       <source>Initializing Statusbar...</source>
       <translation>Inicializando Barra de estado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Single Application Server...</source>
       <translation>Incializando el servidor de aplicaciones simples...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="658" />
+      <location filename="../UI/UserInterface.py" line="657" />
       <source>Initializing Plugins...</source>
       <translation>Inicializando Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="661" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Activating Plugins...</source>
       <translation>Activando Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="663" />
+      <location filename="../UI/UserInterface.py" line="662" />
       <source>Generating Plugins Toolbars...</source>
       <translation>Generando Barras de Herramientas para Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="666" />
+      <location filename="../UI/UserInterface.py" line="665" />
       <source>Cleaning Plugins Download Area...</source>
       <translation>Limpiar Área de Descarga de Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="673" />
+      <location filename="../UI/UserInterface.py" line="672" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Restaurando Gestor de Barras de Herramientas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="680" />
       <source>Setting View Profile...</source>
       <translation>Estableciendo Perfil de Vista...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="693" />
       <source>Reading Tasks...</source>
       <translation>Leyendo tareas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="699" />
+      <location filename="../UI/UserInterface.py" line="698" />
       <source>Reading Templates...</source>
       <translation>Leyendo Plantillas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="703" />
       <source>Starting Debugger...</source>
       <translation>Iniciando Depurador...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
-      <location filename="../UI/UserInterface.py" line="1066" />
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1065" />
       <source>Left Toolbox</source>
       <translation>Caja de herramientas de la Izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2224" />
-      <location filename="../UI/UserInterface.py" line="1076" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1075" />
       <source>Horizontal Toolbox</source>
       <translation>Caja de Herramientas Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2201" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1085" />
       <source>Right Toolbox</source>
       <translation>Caja de herramientas de la Derecha</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2020" />
-      <location filename="../UI/UserInterface.py" line="1279" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2019" />
+      <location filename="../UI/UserInterface.py" line="1278" />
+      <location filename="../UI/UserInterface.py" line="1095" />
       <source>Multiproject-Viewer</source>
       <translation>Visor de Multiproyecto</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1997" />
+      <location filename="../UI/UserInterface.py" line="1284" />
+      <location filename="../UI/UserInterface.py" line="1101" />
+      <source>Project-Viewer</source>
+      <translation>Visor de Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2559" />
+      <location filename="../UI/UserInterface.py" line="2558" />
+      <location filename="../UI/UserInterface.py" line="1291" />
+      <location filename="../UI/UserInterface.py" line="1108" />
+      <source>Find/Replace In Files</source>
+      <translation>Buscar/Reemplazar en Archivos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1298" />
+      <location filename="../UI/UserInterface.py" line="1115" />
+      <source>Find File</source>
+      <translation>Buscar archivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1304" />
+      <location filename="../UI/UserInterface.py" line="1121" />
+      <source>VCS Status</source>
+      <translation>Estado de VCS</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1311" />
+      <location filename="../UI/UserInterface.py" line="1128" />
+      <source>Template-Viewer</source>
+      <translation>Visor de Plantillas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2085" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1135" />
+      <source>File-Browser</source>
+      <translation>Explorador de archivos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1325" />
+      <location filename="../UI/UserInterface.py" line="1142" />
+      <source>Symbols</source>
+      <translation>Símbolos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2041" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Debug-Viewer</source>
+      <translation>Visor Depurador</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2412" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1159" />
+      <source>Code Documentation Viewer</source>
+      <translation>Visor de Documentación de Código</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2628" />
+      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="1361" />
+      <location filename="../UI/UserInterface.py" line="1166" />
+      <source>Help Viewer</source>
+      <translation>Visor de Ayuda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1367" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>Plugin Repository</source>
+      <translation>Repositorio de Plugins</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1373" />
+      <location filename="../UI/UserInterface.py" line="1178" />
+      <source>Virtual Environments</source>
+      <translation>Entornos Virtuales</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2440" />
+      <location filename="../UI/UserInterface.py" line="2439" />
+      <location filename="../UI/UserInterface.py" line="1378" />
+      <location filename="../UI/UserInterface.py" line="1183" />
+      <source>PyPI</source>
+      <translation>PyPI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="2461" />
+      <location filename="../UI/UserInterface.py" line="1385" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Conda</source>
+      <translation>Conda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1392" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Cooperation</source>
+      <translation>Cooperación</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2340" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
+      <source>IRC</source>
+      <translation>IRC</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="2483" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>MicroPython</source>
+      <translation>MicroPython</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2063" />
+      <location filename="../UI/UserInterface.py" line="1410" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Shell</source>
+      <translation>Shell</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2129" />
+      <location filename="../UI/UserInterface.py" line="1416" />
+      <location filename="../UI/UserInterface.py" line="1219" />
+      <source>Task-Viewer</source>
+      <translation>Visor de Tareas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2107" />
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1223" />
+      <source>Log-Viewer</source>
+      <translation>Visor Log</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1429" />
+      <location filename="../UI/UserInterface.py" line="1230" />
+      <source>Numbers</source>
+      <translation>Números</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1815" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} - Modo Pasivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1822" />
+      <location filename="../UI/UserInterface.py" line="1818" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} - {1} - Modo Pasivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1826" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} - {1} - {2} - Modo Pasivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1850" />
+      <source>Quit</source>
+      <translation>Salir</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1852" />
+      <source>&amp;Quit</source>
+      <translation>&amp;Salir</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1853" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1858" />
+      <source>Quit the IDE</source>
+      <translation>Salir del IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1860" />
+      <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="1874" />
+      <location filename="../UI/UserInterface.py" line="1872" />
+      <source>Restart</source>
+      <translation>Reiniciar</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Shift+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1880" />
+      <source>Restart the IDE</source>
+      <translation>Reiniciar la IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
+      <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="1900" />
+      <location filename="../UI/UserInterface.py" line="1893" />
+      <source>Save session</source>
+      <translation>Guardar sesión</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1894" />
+      <source>Save session...</source>
+      <translation>Guardar sesión...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1902" />
+      <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="7649" />
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Load session</source>
+      <translation>Cargar sesión</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1913" />
+      <source>Load session...</source>
+      <translation>Cargar sesión...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1921" />
+      <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="1931" />
+      <source>New Window</source>
+      <translation>Nueva Ventana</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1933" />
+      <source>New &amp;Window</source>
+      <translation>Nueva &amp;Ventana</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1934" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>Open a new eric instance</source>
+      <translation>Abrir una nueva instancia de eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1941" />
+      <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="1955" />
+      <location filename="../UI/UserInterface.py" line="1953" />
+      <source>Edit Profile</source>
+      <translation>Perfil de Edición</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
+      <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="1964" />
+      <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="1977" />
+      <location filename="../UI/UserInterface.py" line="1975" />
+      <source>Debug Profile</source>
+      <translation>Perfil de Depuración</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1984" />
+      <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="1986" />
+      <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="1998" />
-      <location filename="../UI/UserInterface.py" line="1285" />
-      <location filename="../UI/UserInterface.py" line="1102" />
-      <source>Project-Viewer</source>
-      <translation>Visor de Proyecto</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2560" />
-      <location filename="../UI/UserInterface.py" line="2559" />
-      <location filename="../UI/UserInterface.py" line="1292" />
-      <location filename="../UI/UserInterface.py" line="1109" />
-      <source>Find/Replace In Files</source>
-      <translation>Buscar/Reemplazar en Archivos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
-      <location filename="../UI/UserInterface.py" line="2582" />
-      <location filename="../UI/UserInterface.py" line="1299" />
-      <location filename="../UI/UserInterface.py" line="1116" />
-      <source>Find File</source>
-      <translation>Buscar archivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1305" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>VCS Status</source>
-      <translation>Estado de VCS</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
-      <location filename="../UI/UserInterface.py" line="1312" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Template-Viewer</source>
-      <translation>Visor de Plantillas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2086" />
-      <location filename="../UI/UserInterface.py" line="1319" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>File-Browser</source>
-      <translation>Explorador de archivos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Symbols</source>
-      <translation>Símbolos</translation>
+      <source>&amp;Project-Viewer</source>
+      <translation>Visor de &amp;Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2005" />
+      <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="2008" />
+      <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="2020" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>Visor de &amp;Multiproyecto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2027" />
+      <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="2030" />
+      <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="2042" />
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1153" />
-      <source>Debug-Viewer</source>
-      <translation>Visor Depurador</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2414" />
-      <location filename="../UI/UserInterface.py" line="2413" />
-      <location filename="../UI/UserInterface.py" line="1355" />
-      <location filename="../UI/UserInterface.py" line="1160" />
-      <source>Code Documentation Viewer</source>
-      <translation>Visor de Documentación de Código</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2629" />
-      <location filename="../UI/UserInterface.py" line="2628" />
-      <location filename="../UI/UserInterface.py" line="1362" />
-      <location filename="../UI/UserInterface.py" line="1167" />
-      <source>Help Viewer</source>
-      <translation>Visor de Ayuda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <location filename="../UI/UserInterface.py" line="2509" />
-      <location filename="../UI/UserInterface.py" line="2508" />
-      <location filename="../UI/UserInterface.py" line="1368" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Plugin Repository</source>
-      <translation>Repositorio de Plugins</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
-      <location filename="../UI/UserInterface.py" line="2532" />
-      <location filename="../UI/UserInterface.py" line="1374" />
-      <location filename="../UI/UserInterface.py" line="1179" />
-      <source>Virtual Environments</source>
-      <translation>Entornos Virtuales</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2441" />
-      <location filename="../UI/UserInterface.py" line="2440" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1184" />
-      <source>PyPI</source>
-      <translation>PyPI</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2463" />
-      <location filename="../UI/UserInterface.py" line="2462" />
-      <location filename="../UI/UserInterface.py" line="1386" />
-      <location filename="../UI/UserInterface.py" line="1189" />
-      <source>Conda</source>
-      <translation>Conda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1393" />
-      <location filename="../UI/UserInterface.py" line="1196" />
-      <source>Cooperation</source>
-      <translation>Cooperación</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
-      <location filename="../UI/UserInterface.py" line="1397" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>IRC</source>
-      <translation>IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
-      <location filename="../UI/UserInterface.py" line="2484" />
-      <location filename="../UI/UserInterface.py" line="1403" />
-      <location filename="../UI/UserInterface.py" line="1208" />
-      <source>MicroPython</source>
-      <translation>MicroPython</translation>
+      <source>&amp;Debug-Viewer</source>
+      <translation>Visor &amp;Depurador</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2049" />
+      <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="2052" />
+      <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="2064" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Shell</source>
-      <translation>Shell</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2130" />
-      <location filename="../UI/UserInterface.py" line="1417" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>Task-Viewer</source>
-      <translation>Visor de Tareas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2108" />
-      <location filename="../UI/UserInterface.py" line="1423" />
-      <location filename="../UI/UserInterface.py" line="1224" />
-      <source>Log-Viewer</source>
-      <translation>Visor Log</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1430" />
-      <location filename="../UI/UserInterface.py" line="1231" />
-      <source>Numbers</source>
-      <translation>Números</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1816" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} - Modo Pasivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1823" />
-      <location filename="../UI/UserInterface.py" line="1819" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} - {1} - Modo Pasivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} - {1} - {2} - Modo Pasivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1851" />
-      <source>Quit</source>
-      <translation>Salir</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <source>&amp;Quit</source>
-      <translation>&amp;Salir</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1854" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>Quit the IDE</source>
-      <translation>Salir del IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1861" />
-      <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="1875" />
-      <location filename="../UI/UserInterface.py" line="1873" />
-      <source>Restart</source>
-      <translation>Reiniciar</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Shift+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1881" />
-      <source>Restart the IDE</source>
-      <translation>Reiniciar la IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1883" />
-      <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="1901" />
-      <location filename="../UI/UserInterface.py" line="1894" />
-      <source>Save session</source>
-      <translation>Guardar sesión</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>Save session...</source>
-      <translation>Guardar sesión...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1903" />
-      <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="7650" />
-      <location filename="../UI/UserInterface.py" line="1920" />
-      <location filename="../UI/UserInterface.py" line="1913" />
-      <source>Load session</source>
-      <translation>Cargar sesión</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1914" />
-      <source>Load session...</source>
-      <translation>Cargar sesión...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1922" />
-      <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="1932" />
-      <source>New Window</source>
-      <translation>Nueva Ventana</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1934" />
-      <source>New &amp;Window</source>
-      <translation>Nueva &amp;Ventana</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1940" />
-      <source>Open a new eric instance</source>
-      <translation>Abrir una nueva instancia de eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1942" />
-      <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="1956" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <source>Edit Profile</source>
-      <translation>Perfil de Edición</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1963" />
-      <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="1965" />
-      <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="1978" />
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>Debug Profile</source>
-      <translation>Perfil de Depuración</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1985" />
-      <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="1987" />
-      <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="1999" />
-      <source>&amp;Project-Viewer</source>
-      <translation>Visor de &amp;Proyecto</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2000" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2006" />
-      <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="2009" />
-      <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="2021" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>Visor de &amp;Multiproyecto</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2028" />
-      <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="2031" />
-      <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="2043" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>Visor &amp;Depurador</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2050" />
-      <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="2053" />
-      <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>
+      <source>&amp;Shell</source>
+      <translation>&amp;Shell</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&amp;Shell</source>
-      <translation>&amp;Shell</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2072" />
+      <location filename="../UI/UserInterface.py" line="2071" />
       <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="2075" />
+      <location filename="../UI/UserInterface.py" line="2074" />
       <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="2086" />
+      <source>&amp;File-Browser</source>
+      <translation>Na&amp;vegador de archivos</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&amp;File-Browser</source>
-      <translation>Na&amp;vegador de archivos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2094" />
+      <location filename="../UI/UserInterface.py" line="2093" />
       <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="2097" />
+      <location filename="../UI/UserInterface.py" line="2096" />
       <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="2108" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation>Visor de Lo&amp;g</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2109" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation>Visor de Lo&amp;g</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2116" />
+      <location filename="../UI/UserInterface.py" line="2115" />
       <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="2119" />
+      <location filename="../UI/UserInterface.py" line="2118" />
       <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="2130" />
+      <source>&amp;Task-Viewer</source>
+      <translation>Visor de &amp;Tareas</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&amp;Task-Viewer</source>
-      <translation>Visor de &amp;Tareas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2138" />
+      <location filename="../UI/UserInterface.py" line="2137" />
       <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="2141" />
+      <location filename="../UI/UserInterface.py" line="2140" />
       <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="2153" />
+      <source>Templ&amp;ate-Viewer</source>
+      <translation>Visor de Pl&amp;antillas</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2154" />
-      <source>Templ&amp;ate-Viewer</source>
-      <translation>Visor de Pl&amp;antillas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2161" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <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="2164" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <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="2179" />
+      <location filename="../UI/UserInterface.py" line="2178" />
       <source>&amp;Left Toolbox</source>
       <translation>Caja de herramientas de &amp;la Izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2186" />
+      <location filename="../UI/UserInterface.py" line="2185" />
       <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="2188" />
+      <location filename="../UI/UserInterface.py" line="2187" />
       <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="2202" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Right Toolbox</source>
       <translation>Caja de herramientas de la De&amp;recha</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2209" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <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="2211" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <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="2225" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Caja de Herramientas &amp;Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2232" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <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="2234" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <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="2246" />
+      <source>Left Sidebar</source>
+      <translation>Barra Lateral a la Izquierda</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2247" />
-      <source>Left Sidebar</source>
-      <translation>Barra Lateral a la Izquierda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
       <source>&amp;Left Sidebar</source>
       <translation>Barra &amp;Lateral a la Izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2255" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the left sidebar window</source>
       <translation>Conmutar la barra lateral a la izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2257" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2269" />
+      <source>Right Sidebar</source>
+      <translation>Barra Lateral a la Derecha</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2270" />
-      <source>Right Sidebar</source>
-      <translation>Barra Lateral a la Derecha</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2271" />
       <source>&amp;Right Sidebar</source>
       <translation>Ba&amp;rra Lateral a la Derecha</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2278" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <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="2280" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2292" />
+      <source>Bottom Sidebar</source>
+      <translation>Barra Lateral Inferior</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2293" />
-      <source>Bottom Sidebar</source>
-      <translation>Barra Lateral Inferior</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2294" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Barra Lateral Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2301" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Conmutar la barra lateral inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2303" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <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="2315" />
+      <source>Cooperation-Viewer</source>
+      <translation>Visor de Cooperación</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2316" />
-      <source>Cooperation-Viewer</source>
-      <translation>Visor de Cooperación</translation>
+      <source>Co&amp;operation-Viewer</source>
+      <translation>Visor de Co&amp;operación</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2317" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation>Visor de Co&amp;operación</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2324" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <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="2327" />
+      <location filename="../UI/UserInterface.py" line="2326" />
       <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="2341" />
+      <source>&amp;IRC</source>
+      <translation>&amp;IRC</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2342" />
-      <source>&amp;IRC</source>
-      <translation>&amp;IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2349" />
+      <location filename="../UI/UserInterface.py" line="2348" />
       <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="2352" />
+      <location filename="../UI/UserInterface.py" line="2351" />
       <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="2362" />
+      <source>Symbols-Viewer</source>
+      <translation>Visor de Símbolos</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2363" />
-      <source>Symbols-Viewer</source>
-      <translation>Visor de Símbolos</translation>
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>Visor de S&amp;ímbolos</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2364" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>Visor de S&amp;ímbolos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2371" />
+      <location filename="../UI/UserInterface.py" line="2370" />
       <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="2374" />
+      <location filename="../UI/UserInterface.py" line="2373" />
       <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="2387" />
+      <source>Numbers-Viewer</source>
+      <translation>Visor de Números</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2388" />
-      <source>Numbers-Viewer</source>
-      <translation>Visor de Números</translation>
+      <source>Num&amp;bers-Viewer</source>
+      <translation>Visor de Nú&amp;meros</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2389" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>Visor de Nú&amp;meros</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2396" />
+      <location filename="../UI/UserInterface.py" line="2395" />
       <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="2399" />
+      <location filename="../UI/UserInterface.py" line="2398" />
       <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="2415" />
+      <location filename="../UI/UserInterface.py" line="2414" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2421" />
+      <location filename="../UI/UserInterface.py" line="2420" />
       <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="2426" />
+      <location filename="../UI/UserInterface.py" line="2425" />
       <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="2442" />
+      <location filename="../UI/UserInterface.py" line="2441" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
+      <location filename="../UI/UserInterface.py" line="2447" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation>Cambiar el foco de entrada a la ventana PyPI.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2451" />
+      <location filename="../UI/UserInterface.py" line="2450" />
       <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="2464" />
+      <location filename="../UI/UserInterface.py" line="2463" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2470" />
+      <location filename="../UI/UserInterface.py" line="2469" />
       <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="2473" />
+      <location filename="../UI/UserInterface.py" line="2472" />
       <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="2486" />
+      <location filename="../UI/UserInterface.py" line="2485" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2492" />
+      <location filename="../UI/UserInterface.py" line="2491" />
       <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="2495" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <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="2510" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation>Ctrl+Alt+Shift+R</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2516" />
+      <location filename="../UI/UserInterface.py" line="2515" />
       <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="2519" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2534" />
+      <location filename="../UI/UserInterface.py" line="2533" />
       <source>Ctrl+Alt+V</source>
       <translation>Ctrl+Alt+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2540" />
+      <location filename="../UI/UserInterface.py" line="2539" />
       <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="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
       <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="2561" />
+      <location filename="../UI/UserInterface.py" line="2560" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation>Ctrl+Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
+      <location filename="../UI/UserInterface.py" line="2566" />
       <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="2570" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <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="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation>Ctrl+Alt+Shift+L</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2590" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <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="2593" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <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="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <source>VCS Status List</source>
+      <translation>Lista de Estado de VCS</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
-      <location filename="../UI/UserInterface.py" line="2606" />
-      <source>VCS Status List</source>
-      <translation>Lista de Estado de VCS</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Alt+Shift+V</source>
       <translation>Alt+Shift+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2614" />
+      <location filename="../UI/UserInterface.py" line="2613" />
       <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="2617" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <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="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>Alt+Shift+H</source>
       <translation>Alt+Shift+H</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2636" />
+      <location filename="../UI/UserInterface.py" line="2635" />
       <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="2639" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <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="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
       <source>What's This?</source>
       <translation>¿Qué es esto?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <source>&amp;What's This?</source>
+      <translation>¿&amp;Qué es esto?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2654" />
-      <source>&amp;What's This?</source>
-      <translation>¿&amp;Qué es esto?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2660" />
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Context sensitive help</source>
       <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2662" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <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="2675" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>Helpviewer</source>
       <translation>Visor de Ayuda</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2676" />
+      <source>&amp;Helpviewer...</source>
+      <translation>Visor de &amp;Ayuda...</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
-      <source>&amp;Helpviewer...</source>
-      <translation>Visor de &amp;Ayuda...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2678" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2683" />
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Open the helpviewer window</source>
       <translation>Abrir la ventana del visor de ayuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2685" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <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="2704" />
+      <source>Show Versions</source>
+      <translation>Mostrar Versiones</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2705" />
-      <source>Show Versions</source>
-      <translation>Mostrar Versiones</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Show &amp;Versions</source>
       <translation>Mostrar Versione&amp;s</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2711" />
       <source>Display version information</source>
       <translation>Mostrar información de versiones</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2714" />
+      <location filename="../UI/UserInterface.py" line="2713" />
       <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="2729" />
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>Show Error Log</source>
       <translation>Mostrar Registro de Errores</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2722" />
       <source>Show Error &amp;Log...</source>
       <translation>Mostrar &amp;Registro de Errores...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2730" />
       <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="2739" />
+      <source>Show Install Info</source>
+      <translation>Mostrar Información de Instalación</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2740" />
-      <source>Show Install Info</source>
-      <translation>Mostrar Información de Instalación</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Install &amp;Info...</source>
       <translation>Mostrar &amp;Información de Instalación...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2747" />
+      <location filename="../UI/UserInterface.py" line="2746" />
       <source>Show Installation Information</source>
       <translation>Mostrar Información de Instalación</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2749" />
+      <location filename="../UI/UserInterface.py" line="2748" />
       <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="4633" />
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="4632" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report Bug</source>
       <translation>Enviar informe de bugs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report &amp;Bug...</source>
       <translation>Enviar informe de &amp;bugs...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
+      <location filename="../UI/UserInterface.py" line="2760" />
       <source>Report a bug</source>
       <translation>Enviar informe de bugs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <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="2770" />
+      <source>Request Feature</source>
+      <translation>Solicitar nueva característica</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2771" />
-      <source>Request Feature</source>
-      <translation>Solicitar nueva característica</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2772" />
       <source>Request &amp;Feature...</source>
       <translation>Solicitar nueva &amp;característica...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2777" />
       <source>Send a feature request</source>
       <translation>Enviar una solicitud de nueva característica</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2780" />
+      <location filename="../UI/UserInterface.py" line="2779" />
       <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="4091" />
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>Testing</source>
       <translation>Testado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2792" />
       <source>&amp;Testing...</source>
       <translation>&amp;Testado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
+      <location filename="../UI/UserInterface.py" line="2798" />
       <source>Start the testing dialog</source>
       <translation>Iniciar el diálogo de testado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2801" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <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="2812" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Restart Last Test</source>
       <translation>Reiniciar Último Test</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>&amp;Restart Last Test...</source>
       <translation>&amp;Reiniciar Último Test...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2820" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <source>Restarts the last test</source>
       <translation>Reinicia el último test</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2821" />
       <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="2832" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>Rerun Failed Tests</source>
       <translation>Re-ejecutar Tests Fallidos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2833" />
       <source>Rerun Failed Tests...</source>
       <translation>Re-ejecutar Tests Fallidos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <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="2844" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <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="2854" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>Test Script</source>
       <translation>Test de Script</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
+      <location filename="../UI/UserInterface.py" line="2855" />
       <source>Test &amp;Script...</source>
       <translation>Test de &amp;Script...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>Run tests of the current script</source>
       <translation>Ejecutar tests del script actual</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2864" />
+      <location filename="../UI/UserInterface.py" line="2863" />
       <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="2873" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Test Project</source>
       <translation>Test de Proyecto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>Test &amp;Project...</source>
       <translation>Test de &amp;Proyecto...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2881" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <source>Run tests of the current project</source>
       <translation>Ejecuta tests del proyecto actual</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <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="2905" />
+      <location filename="../UI/UserInterface.py" line="2904" />
       <source>Qt-Designer</source>
       <translation>Qt Designer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2907" />
+      <location filename="../UI/UserInterface.py" line="2906" />
       <source>Qt-&amp;Designer...</source>
       <translation>Qt-&amp;Designer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2912" />
       <source>Start Qt-Designer</source>
       <translation>Iniciar Qt-Designer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2915" />
+      <location filename="../UI/UserInterface.py" line="2914" />
       <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="2935" />
+      <location filename="../UI/UserInterface.py" line="2934" />
       <source>Qt-Linguist</source>
       <translation>Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2937" />
+      <location filename="../UI/UserInterface.py" line="2936" />
       <source>Qt-&amp;Linguist...</source>
       <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2943" />
+      <location filename="../UI/UserInterface.py" line="2942" />
       <source>Start Qt-Linguist</source>
       <translation>Iniciar Qt Linguist</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2945" />
+      <location filename="../UI/UserInterface.py" line="2944" />
       <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="2953" />
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>UI Previewer</source>
       <translation>Previsualizador de UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
+      <location filename="../UI/UserInterface.py" line="2954" />
       <source>&amp;UI Previewer...</source>
       <translation>Previsualizador de &amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2961" />
+      <location filename="../UI/UserInterface.py" line="2960" />
       <source>Start the UI Previewer</source>
       <translation>Ejecutar el Previsualizador de UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2962" />
       <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="2969" />
+      <location filename="../UI/UserInterface.py" line="2968" />
       <source>Translations Previewer</source>
       <translation>Previsualizador de Traducciones</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2971" />
+      <location filename="../UI/UserInterface.py" line="2970" />
       <source>&amp;Translations Previewer...</source>
       <translation>Previsualizador de &amp;Traducciones...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="2976" />
       <source>Start the Translations Previewer</source>
       <translation>Ejecutar el Previsualizador de traducciones</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2979" />
+      <location filename="../UI/UserInterface.py" line="2978" />
       <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="2988" />
+      <location filename="../UI/UserInterface.py" line="2987" />
       <source>Compare Files</source>
       <translation>Comparar Archivos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2990" />
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Comparar Archivos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="2995" />
       <source>Compare two files</source>
       <translation>Comparar dos archivos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2998" />
+      <location filename="../UI/UserInterface.py" line="2997" />
       <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="3007" />
+      <location filename="../UI/UserInterface.py" line="3006" />
       <source>Compare Files side by side</source>
       <translation>Comparar Archivos uno al lado de otro</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3009" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <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="3017" />
+      <location filename="../UI/UserInterface.py" line="3016" />
       <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="3027" />
+      <location filename="../UI/UserInterface.py" line="3026" />
       <source>SQL Browser</source>
       <translation>Navegador SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3028" />
       <source>SQL &amp;Browser...</source>
       <translation>&amp;Navegador SQL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3035" />
+      <location filename="../UI/UserInterface.py" line="3034" />
       <source>Browse a SQL database</source>
       <translation>Navegar una base de datos SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3037" />
+      <location filename="../UI/UserInterface.py" line="3036" />
       <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="3051" />
-      <location filename="../UI/UserInterface.py" line="3043" />
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <location filename="../UI/UserInterface.py" line="3042" />
       <source>Mini Editor</source>
       <translation>Mini Editor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3045" />
+      <location filename="../UI/UserInterface.py" line="3044" />
       <source>Mini &amp;Editor...</source>
       <translation>Mini &amp;Editor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3053" />
+      <location filename="../UI/UserInterface.py" line="3052" />
       <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="3062" />
+      <location filename="../UI/UserInterface.py" line="3061" />
       <source>Hex Editor</source>
       <translation>Editor Hexadecimal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3064" />
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&amp;Hex Editor...</source>
       <translation>Editor &amp;Hexadecimal...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
+      <location filename="../UI/UserInterface.py" line="3069" />
       <source>Start the eric Hex Editor</source>
       <translation>Iniciar el Editor Hexadecimal de eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3072" />
+      <location filename="../UI/UserInterface.py" line="3071" />
       <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="3082" />
+      <location filename="../UI/UserInterface.py" line="3081" />
       <source>eric Web Browser</source>
       <translation>Navegador Web de eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3084" />
+      <location filename="../UI/UserInterface.py" line="3083" />
       <source>eric &amp;Web Browser...</source>
       <translation>Navegador &amp;Web de eric...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3089" />
       <source>Start the eric Web Browser</source>
       <translation>Iniciar el Navegador Web de eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3092" />
+      <location filename="../UI/UserInterface.py" line="3091" />
       <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="3101" />
+      <location filename="../UI/UserInterface.py" line="3100" />
       <source>Icon Editor</source>
       <translation>Editor de Iconos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3103" />
+      <location filename="../UI/UserInterface.py" line="3102" />
       <source>&amp;Icon Editor...</source>
       <translation>Editor de &amp;Iconos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3109" />
+      <location filename="../UI/UserInterface.py" line="3108" />
       <source>Start the eric Icon Editor</source>
       <translation>Iniciar el Editor de Iconos de eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
+      <location filename="../UI/UserInterface.py" line="3110" />
       <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="3120" />
+      <location filename="../UI/UserInterface.py" line="3119" />
       <source>Snapshot</source>
       <translation>Captura de Pantalla</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3122" />
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>&amp;Snapshot...</source>
       <translation>Captura de &amp;Pantalla...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3128" />
+      <location filename="../UI/UserInterface.py" line="3127" />
       <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="3130" />
+      <location filename="../UI/UserInterface.py" line="3129" />
       <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="3140" />
+      <location filename="../UI/UserInterface.py" line="3139" />
       <source>Preferences</source>
       <translation>Preferencias</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3142" />
+      <location filename="../UI/UserInterface.py" line="3141" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Preferencias...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3147" />
       <source>Set the prefered configuration</source>
       <translation>Establecer la configuración preferida</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3149" />
       <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="3161" />
+      <location filename="../UI/UserInterface.py" line="3160" />
       <source>Export Preferences</source>
       <translation>Exportar Preferencias</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3163" />
+      <location filename="../UI/UserInterface.py" line="3162" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;xportar Preferencias...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3169" />
+      <location filename="../UI/UserInterface.py" line="3168" />
       <source>Export the current configuration</source>
       <translation>Exportar la configuración actual</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="3170" />
       <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="3180" />
+      <location filename="../UI/UserInterface.py" line="3179" />
       <source>Import Preferences</source>
       <translation>Importar Preferencias</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3182" />
+      <location filename="../UI/UserInterface.py" line="3181" />
       <source>I&amp;mport Preferences...</source>
       <translation>I&amp;mportar Preferencias...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3188" />
       <source>Import a previously exported configuration</source>
       <translation>Importar una configuración previamente exportada</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3192" />
+      <location filename="../UI/UserInterface.py" line="3191" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3200" />
       <source>Export Theme</source>
       <translation>Exportar Tema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3203" />
+      <location filename="../UI/UserInterface.py" line="3202" />
       <source>Export Theme...</source>
       <translation>Exportar Tema...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3209" />
+      <location filename="../UI/UserInterface.py" line="3208" />
       <source>Export the current theme</source>
       <translation>Exportar el tema actual</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
+      <location filename="../UI/UserInterface.py" line="3210" />
       <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="3220" />
+      <location filename="../UI/UserInterface.py" line="3219" />
       <source>Import Theme</source>
       <translation>Importar Tema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3222" />
+      <location filename="../UI/UserInterface.py" line="3221" />
       <source>Import Theme...</source>
       <translation>Importar Tema...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3228" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <source>Import a previously exported theme</source>
       <translation>Importr un tema previamente exportado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
+      <location filename="../UI/UserInterface.py" line="3229" />
       <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="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload APIs</source>
       <translation>Recargar APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload &amp;APIs</source>
       <translation>Recargar &amp;APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3241" />
+      <location filename="../UI/UserInterface.py" line="3240" />
       <source>Reload the API information</source>
       <translation>Recargar la información de API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3243" />
+      <location filename="../UI/UserInterface.py" line="3242" />
       <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="3257" />
-      <location filename="../UI/UserInterface.py" line="3249" />
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <location filename="../UI/UserInterface.py" line="3248" />
       <source>Show external tools</source>
       <translation>Mostrar herramientas externas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
+      <location filename="../UI/UserInterface.py" line="3250" />
       <source>Show external &amp;tools</source>
       <translation>Mostrar herramien&amp;tas externas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3258" />
       <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="3269" />
+      <location filename="../UI/UserInterface.py" line="3268" />
       <source>View Profiles</source>
       <translation>Perfiles de Vista</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
+      <location filename="../UI/UserInterface.py" line="3270" />
       <source>&amp;View Profiles...</source>
       <translation>Perfiles de &amp;Vista...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3277" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Configure view profiles</source>
       <translation>Configurar perfiles de vista</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
+      <location filename="../UI/UserInterface.py" line="3278" />
       <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="3290" />
+      <location filename="../UI/UserInterface.py" line="3289" />
       <source>Toolbars</source>
       <translation>Barras de Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3292" />
+      <location filename="../UI/UserInterface.py" line="3291" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Barras de Herramientas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
+      <location filename="../UI/UserInterface.py" line="3297" />
       <source>Configure toolbars</source>
       <translation>Configurar Barras de Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3299" />
       <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="3311" />
+      <location filename="../UI/UserInterface.py" line="3310" />
       <source>Keyboard Shortcuts</source>
       <translation>Atajos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3313" />
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Atajo&amp;s de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3319" />
+      <location filename="../UI/UserInterface.py" line="3318" />
       <source>Set the keyboard shortcuts</source>
       <translation>Establecer los atajos de teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
+      <location filename="../UI/UserInterface.py" line="3320" />
       <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="7335" />
-      <location filename="../UI/UserInterface.py" line="7316" />
-      <location filename="../UI/UserInterface.py" line="3331" />
+      <location filename="../UI/UserInterface.py" line="7334" />
+      <location filename="../UI/UserInterface.py" line="7315" />
+      <location filename="../UI/UserInterface.py" line="3330" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportar Atajos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3333" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Exportar Atajos de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
+      <location filename="../UI/UserInterface.py" line="3338" />
       <source>Export the keyboard shortcuts</source>
       <translation>Exportar los atajos de teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3341" />
+      <location filename="../UI/UserInterface.py" line="3340" />
       <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="7354" />
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="7353" />
+      <location filename="../UI/UserInterface.py" line="3349" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importar Atajos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3352" />
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Importar Atajos de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="3357" />
       <source>Import the keyboard shortcuts</source>
       <translation>Importar los atajos de teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3359" />
       <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="3370" />
+      <location filename="../UI/UserInterface.py" line="3369" />
       <source>Manage SSL Certificates</source>
       <translation>Gestionar Certificados SSL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3372" />
+      <location filename="../UI/UserInterface.py" line="3371" />
       <source>Manage SSL Certificates...</source>
       <translation>Gestionar Certificados SSL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3378" />
       <source>Manage the saved SSL certificates</source>
       <translation>Gestionar los certificados SSL guardados</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3382" />
+      <location filename="../UI/UserInterface.py" line="3381" />
       <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="3392" />
+      <location filename="../UI/UserInterface.py" line="3391" />
       <source>Edit Message Filters</source>
       <translation>Editar Filtros de Mensajes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3394" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Edit Message Filters...</source>
       <translation>Editar Filtros de Mensajes...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="3400" />
       <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="3404" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <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="3423" />
-      <location filename="../UI/UserInterface.py" line="3417" />
-      <location filename="../UI/UserInterface.py" line="3415" />
+      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Clear private data</source>
       <translation>Limpiar Datos Privados</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3425" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <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="3435" />
+      <location filename="../UI/UserInterface.py" line="3434" />
+      <source>Activate current editor</source>
+      <translation>Activar editor actual</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3436" />
-      <location filename="../UI/UserInterface.py" line="3435" />
-      <source>Activate current editor</source>
-      <translation>Activar editor actual</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3447" />
+      <location filename="../UI/UserInterface.py" line="3446" />
+      <source>Show next</source>
+      <translation>Mostrar siguente</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3448" />
-      <location filename="../UI/UserInterface.py" line="3447" />
-      <source>Show next</source>
-      <translation>Mostrar siguente</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3458" />
+      <source>Show previous</source>
+      <translation>Mostrar anterior</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3460" />
-      <location filename="../UI/UserInterface.py" line="3459" />
-      <source>Show previous</source>
-      <translation>Mostrar anterior</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3461" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Switch between tabs</source>
+      <translation>Alternar entre pestañas</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3472" />
-      <location filename="../UI/UserInterface.py" line="3471" />
-      <source>Switch between tabs</source>
-      <translation>Alternar entre pestañas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
       <source>Plugin Infos</source>
       <translation>Información sobre Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3485" />
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>&amp;Plugin Infos...</source>
       <translation>Información sobre &amp;Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
+      <location filename="../UI/UserInterface.py" line="3490" />
       <source>Show Plugin Infos</source>
       <translation>Mostrar Información sobre Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
+      <location filename="../UI/UserInterface.py" line="3492" />
       <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="3511" />
-      <location filename="../UI/UserInterface.py" line="3503" />
+      <location filename="../UI/UserInterface.py" line="3510" />
+      <location filename="../UI/UserInterface.py" line="3502" />
       <source>Install Plugins</source>
       <translation>Instalar Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3504" />
       <source>&amp;Install Plugins...</source>
       <translation>&amp;Instalar Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
+      <location filename="../UI/UserInterface.py" line="3512" />
       <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="3530" />
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Uninstall Plugin</source>
       <translation>Desinstalar Plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3524" />
+      <location filename="../UI/UserInterface.py" line="3523" />
       <source>&amp;Uninstall Plugin...</source>
       <translation>Desinstalar Pl&amp;ugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <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="3543" />
+      <location filename="../UI/UserInterface.py" line="3542" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Repositorio de Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <source>Show Plugins available for download</source>
       <translation>Mostrar Plugins disponibles para descarga</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3551" />
+      <location filename="../UI/UserInterface.py" line="3550" />
       <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="3578" />
       <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="3576" />
       <source>Qt5 Documentation</source>
       <translation>Documentación de Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3584" />
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Open Qt5 Documentation</source>
       <translation>Abrir Documentación de Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3599" />
       <location filename="../UI/UserInterface.py" line="3598" />
+      <location filename="../UI/UserInterface.py" line="3597" />
       <source>Qt6 Documentation</source>
       <translation>Documentación de Qt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3605" />
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>Open Qt6 Documentation</source>
       <translation>Abrir Documentación de Qt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3606" />
       <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="3620" />
       <location filename="../UI/UserInterface.py" line="3619" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>PyQt5 Documentation</source>
       <translation>Documentación de PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3626" />
+      <location filename="../UI/UserInterface.py" line="3625" />
       <source>Open PyQt5 Documentation</source>
       <translation>Abrir Documentación de PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3627" />
       <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="3641" />
       <location filename="../UI/UserInterface.py" line="3640" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>PyQt6 Documentation</source>
       <translation>Documentación de PyQt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3647" />
+      <location filename="../UI/UserInterface.py" line="3646" />
       <source>Open PyQt6 Documentation</source>
       <translation>Abrir Documentación de PyQt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3648" />
       <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="3667" />
       <location filename="../UI/UserInterface.py" line="3666" />
+      <location filename="../UI/UserInterface.py" line="3665" />
       <source>Python 3 Documentation</source>
       <translation>Documentación de Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3673" />
+      <location filename="../UI/UserInterface.py" line="3672" />
       <source>Open Python 3 Documentation</source>
       <translation>Abrir Documentación de Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <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="3694" />
       <location filename="../UI/UserInterface.py" line="3693" />
+      <location filename="../UI/UserInterface.py" line="3692" />
       <source>eric API Documentation</source>
       <translation>Documentación de API de Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3700" />
+      <location filename="../UI/UserInterface.py" line="3699" />
       <source>Open eric API Documentation</source>
       <translation>Abrir Documentación de API de Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
       <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="3720" />
       <location filename="../UI/UserInterface.py" line="3719" />
+      <location filename="../UI/UserInterface.py" line="3718" />
       <source>PySide2 Documentation</source>
       <translation>Documentación de PySide2</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3726" />
+      <location filename="../UI/UserInterface.py" line="3725" />
       <source>Open PySide2 Documentation</source>
       <translation>Abrir Documentación de PySide2</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
       <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="3746" />
       <location filename="../UI/UserInterface.py" line="3745" />
+      <location filename="../UI/UserInterface.py" line="3744" />
       <source>PySide6 Documentation</source>
       <translation>Documentación de PySide6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3752" />
+      <location filename="../UI/UserInterface.py" line="3751" />
       <source>Open PySide6 Documentation</source>
       <translation>Abrir Documentación de PySide6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <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="3854" />
+      <location filename="../UI/UserInterface.py" line="3853" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtras</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
+      <location filename="../UI/UserInterface.py" line="3863" />
       <source>Wi&amp;zards</source>
       <translation>Asis&amp;tentes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3882" />
+      <location filename="../UI/UserInterface.py" line="3881" />
       <source>P&amp;lugins</source>
       <translation>P&amp;lugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3891" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3900" />
+      <location filename="../UI/UserInterface.py" line="3899" />
       <source>&amp;Testing</source>
       <translation>&amp;Tests</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3917" />
+      <location filename="../UI/UserInterface.py" line="3916" />
       <source>Select Tool Group</source>
       <translation>Seleccionar Grupo de Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Se&amp;ttings</source>
       <translation>Con&amp;figuración</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3961" />
+      <location filename="../UI/UserInterface.py" line="3960" />
       <source>&amp;Window</source>
       <translation>Ven&amp;tana</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3970" />
+      <location filename="../UI/UserInterface.py" line="3969" />
       <source>&amp;Windows</source>
       <translation>&amp;Ventanas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3974" />
+      <location filename="../UI/UserInterface.py" line="3973" />
       <source>Central Park</source>
       <translation>Central Park</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3978" />
+      <location filename="../UI/UserInterface.py" line="3977" />
       <source>Left Side</source>
       <translation>Lado Izquierdo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3997" />
+      <location filename="../UI/UserInterface.py" line="3996" />
       <source>Right Side</source>
       <translation>Lado Derecho</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4016" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Bottom Side</source>
       <translation>Lado Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4024" />
+      <location filename="../UI/UserInterface.py" line="4023" />
       <source>Plug-ins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4030" />
+      <location filename="../UI/UserInterface.py" line="4029" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Barra de Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4043" />
+      <location filename="../UI/UserInterface.py" line="4042" />
       <source>&amp;Help</source>
       <translation>Ay&amp;uda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="4112" />
+      <location filename="../UI/UserInterface.py" line="4089" />
       <source>Tools</source>
       <translation>Herramientas</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4093" />
+      <source>Settings</source>
+      <translation>Ajustes</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6147" />
       <location filename="../UI/UserInterface.py" line="4115" />
       <location filename="../UI/UserInterface.py" line="4094" />
-      <source>Settings</source>
-      <translation>Ajustes</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6148" />
+      <source>Help</source>
+      <translation>Ayuda</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4116" />
       <location filename="../UI/UserInterface.py" line="4095" />
-      <source>Help</source>
-      <translation>Ayuda</translation>
+      <source>Profiles</source>
+      <translation>Perfiles</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="4117" />
       <location filename="../UI/UserInterface.py" line="4096" />
-      <source>Profiles</source>
-      <translation>Perfiles</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4118" />
-      <location filename="../UI/UserInterface.py" line="4097" />
       <source>Plugins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4113" />
       <source>Unittest</source>
       <translation>Test Unitario</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4286" />
+      <location filename="../UI/UserInterface.py" line="4285" />
       <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="4295" />
+      <location filename="../UI/UserInterface.py" line="4294" />
       <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="4304" />
+      <location filename="../UI/UserInterface.py" line="4303" />
       <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="4313" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4322" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4331" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4345" />
+      <location filename="../UI/UserInterface.py" line="4344" />
       <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="4416" />
-      <location filename="../UI/UserInterface.py" line="4375" />
+      <location filename="../UI/UserInterface.py" line="4415" />
+      <location filename="../UI/UserInterface.py" line="4374" />
       <source>External Tools/{0}</source>
       <translation>Herramientas Externas/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4524" />
+      <location filename="../UI/UserInterface.py" line="4523" />
       <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="4573" />
+      <location filename="../UI/UserInterface.py" line="4572" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Seguridad)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4590" />
+      <location filename="../UI/UserInterface.py" line="4589" />
       <source>Desktop</source>
       <translation>Escritorio</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4593" />
       <source>Session Type</source>
       <translation>Tipo de Sesión</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4597" />
+      <location filename="../UI/UserInterface.py" line="4596" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4633" />
       <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="4948" />
+      <source>Restart application</source>
+      <translation>Reiniciar aplicación</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4949" />
-      <source>Restart application</source>
-      <translation>Reiniciar aplicación</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4950" />
       <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="4973" />
+      <source>Upgrade PyQt</source>
+      <translation>Actualizar PyQt</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4974" />
-      <source>Upgrade PyQt</source>
-      <translation>Actualizar PyQt</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4975" />
       <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>
@@ -85602,13 +85623,13 @@
 ¿Desearía hacer la actualización ahora?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5025" />
-      <location filename="../UI/UserInterface.py" line="4999" />
+      <location filename="../UI/UserInterface.py" line="5024" />
+      <location filename="../UI/UserInterface.py" line="4998" />
       <source>Upgrade Eric</source>
       <translation>Actualizar Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5000" />
+      <location filename="../UI/UserInterface.py" line="4999" />
       <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>
@@ -85617,7 +85638,7 @@
 ¿Desearía hacer la actualización ahora?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5026" />
+      <location filename="../UI/UserInterface.py" line="5025" />
       <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>
@@ -85626,47 +85647,59 @@
 ¿Desearía hacer la actualización ahora?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5084" />
+      <location filename="../UI/UserInterface.py" line="5083" />
       <source>&amp;Builtin Tools</source>
       <translation>Herramientas de serie (&amp;builtin)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5101" />
+      <location filename="../UI/UserInterface.py" line="5100" />
       <source>&amp;Plugin Tools</source>
       <translation>Herramientas de Extensión (&amp;Plugin)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5103" />
       <source>&amp;User Tools</source>
       <translation>Herramientas de &amp;Usuario</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5130" />
+      <location filename="../UI/UserInterface.py" line="5129" />
       <source>Configure Tool Groups ...</source>
       <translation>Configurar Grupos de Herramientas ...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5134" />
+      <location filename="../UI/UserInterface.py" line="5133" />
       <source>Configure current Tool Group ...</source>
       <translation>Configurar Grupo de Herramientas actual ...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5173" />
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5172" />
+      <location filename="../UI/UserInterface.py" line="5152" />
       <source>No User Tools Configured</source>
       <translation>No se han Configurado Herramientas de Usuario</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5247" />
+      <location filename="../UI/UserInterface.py" line="5246" />
       <source>&amp;Show all</source>
       <translation>&amp;Ver todo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5249" />
+      <location filename="../UI/UserInterface.py" line="5248" />
       <source>&amp;Hide all</source>
       <translation>&amp;Ocultar todo</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6282" />
+      <location filename="../UI/UserInterface.py" line="6271" />
+      <location filename="../UI/UserInterface.py" line="6223" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6049" />
+      <location filename="../UI/UserInterface.py" line="6039" />
+      <location filename="../UI/UserInterface.py" line="5982" />
+      <location filename="../UI/UserInterface.py" line="5972" />
+      <source>Problem</source>
+      <translation>Problema</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6283" />
       <location filename="../UI/UserInterface.py" line="6272" />
       <location filename="../UI/UserInterface.py" line="6224" />
@@ -85675,312 +85708,300 @@
       <location filename="../UI/UserInterface.py" line="6040" />
       <location filename="../UI/UserInterface.py" line="5983" />
       <location filename="../UI/UserInterface.py" line="5973" />
-      <source>Problem</source>
-      <translation>Problema</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6273" />
-      <location filename="../UI/UserInterface.py" line="6225" />
-      <location filename="../UI/UserInterface.py" line="6215" />
-      <location filename="../UI/UserInterface.py" line="6051" />
-      <location filename="../UI/UserInterface.py" line="6041" />
-      <location filename="../UI/UserInterface.py" line="5984" />
-      <location filename="../UI/UserInterface.py" line="5974" />
       <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="6496" />
-      <location filename="../UI/UserInterface.py" line="6409" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6296" />
-      <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6164" />
-      <location filename="../UI/UserInterface.py" line="6124" />
-      <location filename="../UI/UserInterface.py" line="6115" />
-      <location filename="../UI/UserInterface.py" line="6081" />
-      <location filename="../UI/UserInterface.py" line="6072" />
-      <location filename="../UI/UserInterface.py" line="6014" />
-      <location filename="../UI/UserInterface.py" line="6005" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6408" />
+      <location filename="../UI/UserInterface.py" line="6318" />
+      <location filename="../UI/UserInterface.py" line="6295" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6163" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
+      <location filename="../UI/UserInterface.py" line="6080" />
+      <location filename="../UI/UserInterface.py" line="6071" />
+      <location filename="../UI/UserInterface.py" line="6013" />
+      <location filename="../UI/UserInterface.py" line="6004" />
       <source>Process Generation Error</source>
       <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6006" />
+      <location filename="../UI/UserInterface.py" line="6005" />
       <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="6015" />
+      <location filename="../UI/UserInterface.py" line="6014" />
       <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="6073" />
+      <location filename="../UI/UserInterface.py" line="6072" />
       <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="6082" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <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="6116" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <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="6125" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <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="6149" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <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="6165" />
+      <location filename="../UI/UserInterface.py" line="6164" />
       <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="6186" />
+      <location filename="../UI/UserInterface.py" line="6185" />
       <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="6238" />
+      <location filename="../UI/UserInterface.py" line="6237" />
       <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="6297" />
+      <location filename="../UI/UserInterface.py" line="6296" />
       <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="6320" />
+      <location filename="../UI/UserInterface.py" line="6319" />
       <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="6410" />
+      <location filename="../UI/UserInterface.py" line="6409" />
       <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="6442" />
+      <location filename="../UI/UserInterface.py" line="6432" />
+      <source>External Tools</source>
+      <translation>Herramientas Externas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <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="6443" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <source>External Tools</source>
-      <translation>Herramientas Externas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6434" />
-      <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="6444" />
       <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="6479" />
+      <location filename="../UI/UserInterface.py" line="6478" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Comenzando proceso '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6497" />
+      <location filename="../UI/UserInterface.py" line="6496" />
       <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="6573" />
+      <location filename="../UI/UserInterface.py" line="6572" />
       <source>Process '{0}' has exited.
 </source>
       <translation>El proceso '{0}' ha finalizado.
 </translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6857" />
+      <location filename="../UI/UserInterface.py" line="6795" />
+      <location filename="../UI/UserInterface.py" line="6751" />
+      <location filename="../UI/UserInterface.py" line="6679" />
+      <location filename="../UI/UserInterface.py" line="6615" />
+      <source>Documentation Missing</source>
+      <translation>Falta documentación</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6858" />
       <location filename="../UI/UserInterface.py" line="6796" />
       <location filename="../UI/UserInterface.py" line="6752" />
       <location filename="../UI/UserInterface.py" line="6680" />
       <location filename="../UI/UserInterface.py" line="6616" />
-      <source>Documentation Missing</source>
-      <translation>Falta documentación</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6859" />
-      <location filename="../UI/UserInterface.py" line="6797" />
-      <location filename="../UI/UserInterface.py" line="6753" />
-      <location filename="../UI/UserInterface.py" line="6681" />
-      <location filename="../UI/UserInterface.py" line="6617" />
       <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="6839" />
+      <location filename="../UI/UserInterface.py" line="6723" />
+      <source>Documentation</source>
+      <translation>Documentación</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6724" />
+      <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="6840" />
-      <location filename="../UI/UserInterface.py" line="6724" />
-      <source>Documentation</source>
-      <translation>Documentación</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6725" />
-      <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="6841" />
       <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="7020" />
+      <location filename="../UI/UserInterface.py" line="6955" />
+      <source>Start Web Browser</source>
+      <translation>Iniciar Navegador Web</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6956" />
+      <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="7021" />
-      <location filename="../UI/UserInterface.py" line="6956" />
-      <source>Start Web Browser</source>
-      <translation>Iniciar Navegador Web</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6957" />
-      <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="7022" />
       <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="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Open Browser</source>
       <translation>Abrir Navegador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <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="7318" />
+      <location filename="../UI/UserInterface.py" line="7317" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation>Archivo de Atajos de Teclado (*.ekj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7336" />
+      <location filename="../UI/UserInterface.py" line="7335" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation>Archivo de Atajos de Teclado (*.ekj);;Archivo XML de Atajos de Teclado (*.e4k)</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7538" />
+      <source>Read Tasks</source>
+      <translation>Leer tareas</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7539" />
-      <source>Read Tasks</source>
-      <translation>Leer tareas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7540" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de tareas &lt;b&gt;{0}&lt;/b&gt; no puede leerse.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7582" />
       <source>Read Session</source>
       <translation>Cargar sesión</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7611" />
-      <location filename="../UI/UserInterface.py" line="7584" />
-      <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="7610" />
+      <location filename="../UI/UserInterface.py" line="7583" />
+      <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="7609" />
       <source>Read session</source>
       <translation>Cargar sesión</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7627" />
+      <location filename="../UI/UserInterface.py" line="7626" />
       <source>Save Session</source>
       <translation>Guardar Sesión</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7629" />
+      <location filename="../UI/UserInterface.py" line="7628" />
       <source>eric Session Files (*.esj)</source>
       <translation>Archivos de Sesión de eric (*.esj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7652" />
+      <location filename="../UI/UserInterface.py" line="7651" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation>Archivos de Sesión de eric (*.esj);;Archivos XML de sesión de eric (*.e5s)</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7697" />
+      <source>Crash Session found!</source>
+      <translation>¡Se ha hallado una sesión perdida!</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7698" />
-      <source>Crash Session found!</source>
-      <translation>¡Se ha hallado una sesión perdida!</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7699" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation>Se ha encontrado un archivo de sesió para una sesión perdida. ¿Desea restaurar esta sesión?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8058" />
+      <source>Drop Error</source>
+      <translation>Error de volcado</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8059" />
-      <source>Drop Error</source>
-      <translation>Error de volcado</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8060" />
       <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="8233" />
+      <source>Upgrade available</source>
+      <translation>Actualización disponible</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8234" />
-      <source>Upgrade available</source>
-      <translation>Actualización disponible</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8235" />
       <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;</source>
       <translation>&lt;p&gt;Una versión más moderna del package &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;&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8285" />
+      <location filename="../UI/UserInterface.py" line="8272" />
+      <source>First time usage</source>
+      <translation>Usado por primera vez</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8273" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation>eric7 no está configurado todavía pero se ha encontrado configuración para eric6. ¿Importar esta configuración?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8286" />
-      <location filename="../UI/UserInterface.py" line="8273" />
-      <source>First time usage</source>
-      <translation>Usado por primera vez</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8274" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation>eric7 no está configurado todavía pero se ha encontrado configuración para eric6. ¿Importar esta configuración?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8287" />
       <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="8310" />
+      <location filename="../UI/UserInterface.py" line="8309" />
       <source>Select Workspace Directory</source>
       <translation>Seleccionar Directorio para el Espacio de Trabajo</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8490" />
+      <source>Unsaved Data Detected</source>
+      <translation>Detectados Datos sin Guardar</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8491" />
-      <source>Unsaved Data Detected</source>
-      <translation>Detectados Datos sin Guardar</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8492" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation>Algunos editores contienen datos sin guardar. ¿Desea guardarlos?</translation>
     </message>
@@ -86061,7 +86082,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1616" />
+      <location filename="../Utilities/__init__.py" line="1615" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Puede utilizar %-códigos como marcadores en la cadena. Los valores sportados son:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;columna del cursos en el editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directorio del editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nombre de archivo del editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;directorio home del usuario actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;línea del cursor en el editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;ruta del proyecto actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;texto seleccionado en el editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;nombre de usuario del usuario actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;signo de porcentaje&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_fr.ts	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/i18n/eric7_fr.ts	Fri Nov 25 11:51:51 2022 +0100
@@ -5559,7 +5559,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="206" />
+      <location filename="../Utilities/__init__.py" line="205" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>L'encodage '{0}' n'est pas adapté pour le texte.</translation>
     </message>
@@ -8901,88 +8901,89 @@
       <translation>État</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="221" />
+      <location filename="../Debugger/DebugViewer.py" line="149" />
+      <source>Source</source>
+      <translation>Source</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Don't Show</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Show Only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="233" />
-      <location filename="../Debugger/DebugViewer.py" line="162" />
+      <location filename="../Debugger/DebugViewer.py" line="248" />
+      <location filename="../Debugger/DebugViewer.py" line="176" />
       <source>Enter regular expression patterns separated by ';' to define variable filters. </source>
       <translation>Entrer des expressions régulières séparées par ';' pour définir les filtres de variables. </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="239" />
-      <location filename="../Debugger/DebugViewer.py" line="168" />
-      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
-      <translation>Entrer des expressions régulières séparées par ';' pour définir les filtres de variables. Toutes les variables et attributs de classes répondant à l'un des critères ne sont pas affichés dans la liste ci-dessous.</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="246" />
-      <location filename="../Debugger/DebugViewer.py" line="176" />
-      <source>Set</source>
-      <translation>Liste</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="184" />
-      <source>Shows the list of global variables and their values.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="206" />
-      <source>Source</source>
-      <translation>Source</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugViewer.py" line="254" />
+      <location filename="../Debugger/DebugViewer.py" line="182" />
+      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
+      <translation>Entrer des expressions régulières séparées par ';' pour définir les filtres de variables. Toutes les variables et attributs de classes répondant à l'un des critères ne sont pas affichés dans la liste ci-dessous.</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="261" />
+      <location filename="../Debugger/DebugViewer.py" line="190" />
+      <source>Set</source>
+      <translation>Liste</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="198" />
+      <source>Shows the list of global variables and their values.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="269" />
       <source>Shows the list of local variables and their values.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="271" />
+      <location filename="../Debugger/DebugViewer.py" line="295" />
       <source>Shows the current call stack.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="281" />
+      <location filename="../Debugger/DebugViewer.py" line="305" />
       <source>Shows a trace of the program flow.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="292" />
+      <location filename="../Debugger/DebugViewer.py" line="316" />
       <source>Shows a list of defined breakpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="303" />
+      <location filename="../Debugger/DebugViewer.py" line="327" />
       <source>Shows a list of defined watchpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="312" />
+      <location filename="../Debugger/DebugViewer.py" line="336" />
       <source>Shows a list of raised exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="323" />
+      <location filename="../Debugger/DebugViewer.py" line="347" />
       <source>Shows a code disassembly in case of an exception.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="749" />
+      <location filename="../Debugger/DebugViewer.py" line="790" />
       <source>&lt;p&gt;Debugger with ID &lt;b&gt;{0}&lt;/b&gt; has been connected.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="992" />
-      <location filename="../Debugger/DebugViewer.py" line="864" />
+      <location filename="../Debugger/DebugViewer.py" line="1033" />
+      <location filename="../Debugger/DebugViewer.py" line="905" />
       <source>unknown state ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -9465,26 +9466,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
       <source>Add allowed host</source>
       <translation>Ajouter un hôte autorisé</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="343" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="307" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Entrer l'adresse IP d'un hôte autorisé</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="357" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="320" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'adresse entrée &lt;b&gt;{0}&lt;/b&gt; n'est pas une adresse IP v4 ou IP v6 valide. Annulation...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
       <source>Edit allowed host</source>
       <translation>Éditer un hôte autorisé</translation>
     </message>
@@ -20882,7 +20883,7 @@
       <translation>Ajouter/Modifier</translation>
     </message>
     <message>
-      <location filename="../Project/FiletypeAssociationDialog.py" line="56" />
+      <location filename="../Project/FiletypeAssociationDialog.py" line="58" />
       <location filename="../Project/FiletypeAssociationDialog.py" line="45" />
       <source>Ignore</source>
       <translation>Ignorer</translation>
@@ -46780,7 +46781,7 @@
       <translation>Pygments</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="462" />
+      <location filename="../Preferences/__init__.py" line="461" />
       <location filename="../QScintilla/Lexers/__init__.py" line="386" />
       <source>Python Files (*.py *.py3)</source>
       <translation>Fichiers Python (*.py *.py3)</translation>
@@ -47033,7 +47034,7 @@
       <translation>Tous fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="465" />
+      <location filename="../Preferences/__init__.py" line="464" />
       <location filename="../QScintilla/Lexers/__init__.py" line="479" />
       <source>Python3 Files (*.py)</source>
       <translation>Fichiers Python3 (*.py)</translation>
@@ -55607,18 +55608,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1608" />
+      <location filename="../Preferences/__init__.py" line="1653" />
       <source>Export Preferences</source>
       <translation>Export des préférences</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1637" />
-      <location filename="../Preferences/__init__.py" line="1610" />
+      <location filename="../Preferences/__init__.py" line="1682" />
+      <location filename="../Preferences/__init__.py" line="1655" />
       <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="1635" />
+      <location filename="../Preferences/__init__.py" line="1680" />
       <source>Import Preferences</source>
       <translation>Import des préférences</translation>
     </message>
@@ -55639,7 +55640,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="472" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
       <source>Variable Name</source>
       <translation>Nom de variable</translation>
     </message>
@@ -56484,7 +56485,7 @@
       <translation>Renommer le fichier</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3311" />
+      <location filename="../Project/Project.py" line="3313" />
       <location filename="../Project/Project.py" line="2130" />
       <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>
@@ -56515,154 +56516,154 @@
       <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="2517" />
+      <location filename="../Project/Project.py" line="2518" />
       <source>Create project directory</source>
       <translation>Création d'un répertoire projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2518" />
+      <location filename="../Project/Project.py" line="2519" />
       <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="3115" />
-      <location filename="../Project/Project.py" line="2579" />
-      <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="3116" />
       <location filename="../Project/Project.py" line="2580" />
+      <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="3117" />
+      <location filename="../Project/Project.py" line="2581" />
       <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="2600" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2601" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2602" />
       <source>&lt;p&gt;The mainscript &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="2922" />
-      <location filename="../Project/Project.py" line="2625" />
-      <source>Create Makefile</source>
-      <translation>Créer un Makefile</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2923" />
       <location filename="../Project/Project.py" line="2626" />
+      <source>Create Makefile</source>
+      <translation>Créer un Makefile</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2924" />
+      <location filename="../Project/Project.py" line="2627" />
       <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="3144" />
-      <location filename="../Project/Project.py" line="2764" />
-      <location filename="../Project/Project.py" line="2735" />
-      <location filename="../Project/Project.py" line="2691" />
-      <location filename="../Project/Project.py" line="2666" />
-      <location filename="../Project/Project.py" line="2636" />
-      <source>New Project</source>
-      <translation>Nouveau projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2637" />
-      <source>Add existing files to the project?</source>
-      <translation>Ajouter des fichiers existant au projet ?</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3145" />
+      <location filename="../Project/Project.py" line="2765" />
+      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2692" />
       <location filename="../Project/Project.py" line="2667" />
+      <location filename="../Project/Project.py" line="2637" />
+      <source>New Project</source>
+      <translation>Nouveau projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2638" />
+      <source>Add existing files to the project?</source>
+      <translation>Ajouter des fichiers existant au projet ?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3146" />
+      <location filename="../Project/Project.py" line="2668" />
       <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="2765" />
-      <location filename="../Project/Project.py" line="2692" />
+      <location filename="../Project/Project.py" line="2766" />
+      <location filename="../Project/Project.py" line="2693" />
       <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="4082" />
-      <location filename="../Project/Project.py" line="2707" />
+      <location filename="../Project/Project.py" line="4085" />
+      <location filename="../Project/Project.py" line="2708" />
       <source>New project</source>
       <translation>Nouveau projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2708" />
+      <location filename="../Project/Project.py" line="2709" />
       <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="2741" />
-      <location filename="../Project/Project.py" line="2729" />
+      <location filename="../Project/Project.py" line="2742" />
+      <location filename="../Project/Project.py" line="2730" />
       <source>None</source>
       <translation>Auncun</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2737" />
       <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="2848" />
-      <source>Translation Pattern</source>
-      <translation>Pattern de traduction</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2849" />
+      <source>Translation Pattern</source>
+      <translation>Pattern de traduction</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2850" />
       <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="4102" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="4105" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Open project</source>
       <translation>Ouvir un projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3096" />
+      <location filename="../Project/Project.py" line="3097" />
       <source>Project Files (*.epj);;XML Project Files (*.e4p)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="3298" />
+      <location filename="../Project/Project.py" line="3288" />
+      <source>Project Files (*.epj)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="3296" />
-      <location filename="../Project/Project.py" line="3286" />
-      <source>Project Files (*.epj)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3294" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3310" />
+      <location filename="../Project/Project.py" line="3312" />
       <source>Save File</source>
       <translation>Enregistrer Fichier</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3349" />
+      <location filename="../Project/Project.py" line="3351" />
       <source>Close Project</source>
       <translation>Fermer le projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3350" />
+      <location filename="../Project/Project.py" line="3352" />
       <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="3538" />
-      <location filename="../Project/Project.py" line="3504" />
+      <location filename="../Project/Project.py" line="3541" />
+      <location filename="../Project/Project.py" line="3507" />
       <source>Syntax errors detected</source>
       <translation>Erreurs de syntaxe détectées</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="3539" />
-      <location filename="../Project/Project.py" line="3505" />
+      <location filename="../Project/Project.py" line="3542" />
+      <location filename="../Project/Project.py" line="3508" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Le projet contient %n fichier avec des erreurs de syntaxe.</numerusform>
@@ -56670,1151 +56671,1171 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4084" />
+      <location filename="../Project/Project.py" line="4087" />
       <source>&amp;New...</source>
       <translation>&amp;Nouveau...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4090" />
+      <location filename="../Project/Project.py" line="4093" />
       <source>Generate a new project</source>
       <translation>Génerer un nouveau projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4092" />
+      <location filename="../Project/Project.py" line="4095" />
       <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="4104" />
+      <location filename="../Project/Project.py" line="4107" />
       <source>&amp;Open...</source>
       <translation>&amp;Ouvrir...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4110" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>Open an existing project</source>
       <translation>Ouvrir un projet existant</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4115" />
       <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="4118" />
+      <location filename="../Project/Project.py" line="4121" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4123" />
+      <source>&amp;Reload</source>
+      <translation type="unfinished">&amp;Recharger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4129" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4131" />
+      <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="4137" />
       <source>Close project</source>
       <translation>Fermer le projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4120" />
+      <location filename="../Project/Project.py" line="4139" />
       <source>&amp;Close</source>
       <translation>&amp;Fermer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4126" />
+      <location filename="../Project/Project.py" line="4145" />
       <source>Close the current project</source>
       <translation>Fermer le projet en cours</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4128" />
+      <location filename="../Project/Project.py" line="4147" />
       <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="4134" />
+      <location filename="../Project/Project.py" line="4153" />
       <source>Save project</source>
       <translation>Enregistrer le projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4410" />
-      <location filename="../Project/Project.py" line="4136" />
+      <location filename="../Project/Project.py" line="4429" />
+      <location filename="../Project/Project.py" line="4155" />
       <source>&amp;Save</source>
       <translation>&amp;Enregistrer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4142" />
+      <location filename="../Project/Project.py" line="4161" />
       <source>Save the current project</source>
       <translation>Enregistre le projet courant</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4144" />
+      <location filename="../Project/Project.py" line="4163" />
       <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="4150" />
+      <location filename="../Project/Project.py" line="4169" />
       <source>Save project as</source>
       <translation>Enregistrer le projet sous</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4152" />
+      <location filename="../Project/Project.py" line="4171" />
       <source>Save &amp;as...</source>
       <translation>&amp;Enregistrer sous...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4158" />
-      <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="4160" />
-      <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="4175" />
-      <source>Add files to project</source>
-      <translation>Ajouter des fichiers au projet</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4177" />
-      <source>Add &amp;files...</source>
-      <translation>Ajouter des &amp;fichiers...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4183" />
-      <source>Add files to the current project</source>
-      <translation>Ajouter des fichiers au projet courant</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4185" />
-      <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>
+      <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="4179" />
+      <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="4194" />
+      <source>Add files to project</source>
+      <translation>Ajouter des fichiers au projet</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4196" />
+      <source>Add &amp;files...</source>
+      <translation>Ajouter des &amp;fichiers...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4202" />
+      <source>Add files to the current project</source>
+      <translation>Ajouter des fichiers au projet courant</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4204" />
+      <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="4215" />
       <source>Add directory to project</source>
       <translation>Ajouter un répertoire au projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4198" />
+      <location filename="../Project/Project.py" line="4217" />
       <source>Add directory...</source>
       <translation>Ajouter un répertoire...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4205" />
+      <location filename="../Project/Project.py" line="4224" />
       <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="4208" />
-      <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="4218" />
-      <source>Add translation to project</source>
-      <translation>Ajouter une traduction au projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4220" />
-      <source>Add &amp;translation...</source>
-      <translation>Ajouter une &amp;traduction...</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4227" />
+      <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="4237" />
+      <source>Add translation to project</source>
+      <translation>Ajouter une traduction au projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4239" />
+      <source>Add &amp;translation...</source>
+      <translation>Ajouter une &amp;traduction...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4246" />
       <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="4230" />
-      <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="4240" />
-      <source>Search new files</source>
-      <translation>Rechercher des nouveaux fichiers</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4241" />
-      <source>Searc&amp;h new files...</source>
-      <translation>Re&amp;chercher des nouveaux fichiers...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4247" />
-      <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="4249" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
+      <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="4259" />
+      <source>Search new files</source>
+      <translation>Rechercher des nouveaux fichiers</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4260" />
+      <source>Searc&amp;h new files...</source>
+      <translation>Re&amp;chercher des nouveaux fichiers...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4266" />
+      <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="4268" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4279" />
       <source>Search Project File</source>
       <translation>Chercher un fichier projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4261" />
+      <location filename="../Project/Project.py" line="4280" />
       <source>Search Project File...</source>
       <translation>Chercher un fichier projet...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4262" />
+      <location filename="../Project/Project.py" line="4281" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4267" />
+      <location filename="../Project/Project.py" line="4286" />
       <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4269" />
-      <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="4278" />
-      <source>Project properties</source>
-      <translation>Propriétés du projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4280" />
-      <source>&amp;Properties...</source>
-      <translation>&amp;Propriétés...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4286" />
-      <source>Show the project properties</source>
-      <translation>Affiche les propriétés du projet</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4288" />
-      <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>
+      <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="4297" />
-      <source>User project properties</source>
-      <translation>Propriétés utilisateur du projet</translation>
+      <source>Project properties</source>
+      <translation>Propriétés du projet</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4299" />
+      <source>&amp;Properties...</source>
+      <translation>&amp;Propriétés...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4305" />
+      <source>Show the project properties</source>
+      <translation>Affiche les propriétés du projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4307" />
+      <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="4316" />
+      <source>User project properties</source>
+      <translation>Propriétés utilisateur du projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4318" />
       <source>&amp;User Properties...</source>
       <translation>Propriétés &amp;Utilisateur...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4306" />
+      <location filename="../Project/Project.py" line="4325" />
       <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="4309" />
+      <location filename="../Project/Project.py" line="4328" />
       <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="4319" />
+      <location filename="../Project/Project.py" line="4338" />
       <source>Filetype Associations</source>
       <translation>Association des types de fichiers</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4320" />
+      <location filename="../Project/Project.py" line="4339" />
       <source>Filetype Associations...</source>
       <translation>Association des types de fichiers...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4327" />
+      <location filename="../Project/Project.py" line="4346" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4330" />
+      <location filename="../Project/Project.py" line="4349" />
       <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="4343" />
+      <location filename="../Project/Project.py" line="4362" />
       <source>Lexer Associations</source>
       <translation>Association des types de fichiers</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4344" />
+      <location filename="../Project/Project.py" line="4363" />
       <source>Lexer Associations...</source>
       <translation>Association des types de fichiers...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4351" />
+      <location filename="../Project/Project.py" line="4370" />
       <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="4354" />
-      <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="4372" />
-      <source>Debugger Properties</source>
-      <translation>Propriétés du Débogueur</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4373" />
-      <source>Debugger &amp;Properties...</source>
-      <translation>Débogueur &amp; Propriétés...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4379" />
-      <source>Show the debugger properties</source>
-      <translation>Affichage des propriétés du débogueur</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4381" />
-      <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>
+      <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="4391" />
-      <source>Load</source>
-      <translation>Charger</translation>
+      <source>Debugger Properties</source>
+      <translation>Propriétés du Débogueur</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4392" />
-      <source>&amp;Load</source>
-      <translation>&amp;Charger</translation>
+      <source>Debugger &amp;Properties...</source>
+      <translation>Débogueur &amp; Propriétés...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4398" />
-      <source>Load the debugger properties</source>
-      <translation>Charger les propriétés du débogueur</translation>
+      <source>Show the debugger properties</source>
+      <translation>Affichage des propriétés du débogueur</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4400" />
+      <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="4410" />
+      <source>Load</source>
+      <translation>Charger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4411" />
+      <source>&amp;Load</source>
+      <translation>&amp;Charger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4417" />
+      <source>Load the debugger properties</source>
+      <translation>Charger les propriétés du débogueur</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4419" />
       <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="4409" />
-      <source>Save</source>
-      <translation>Enregistrer</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4416" />
-      <source>Save the debugger properties</source>
-      <translation>Enregistrer les propriétés du débogueur</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4418" />
-      <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="4427" />
-      <source>Delete</source>
-      <translation>Supprimer</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4428" />
-      <source>&amp;Delete</source>
-      <translation>&amp;Supprimer</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4434" />
-      <source>Delete the debugger properties</source>
-      <translation>Supprimer les propriétés du débogueur</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4436" />
-      <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>
+      <source>Save</source>
+      <translation>Enregistrer</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4435" />
+      <source>Save the debugger properties</source>
+      <translation>Enregistrer les propriétés du débogueur</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4437" />
+      <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="4446" />
-      <source>Reset</source>
-      <translation>Réinitialiser</translation>
+      <source>Delete</source>
+      <translation>Supprimer</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4447" />
-      <source>&amp;Reset</source>
-      <translation>&amp;Réinitialiser</translation>
+      <source>&amp;Delete</source>
+      <translation>&amp;Supprimer</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4453" />
-      <source>Reset the debugger properties</source>
-      <translation>Réinitialise des propriétés du débogueur</translation>
+      <source>Delete the debugger properties</source>
+      <translation>Supprimer les propriétés du débogueur</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4455" />
+      <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="4465" />
+      <source>Reset</source>
+      <translation>Réinitialiser</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4466" />
+      <source>&amp;Reset</source>
+      <translation>&amp;Réinitialiser</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4472" />
+      <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="4474" />
       <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="4471" />
-      <location filename="../Project/Project.py" line="4470" />
+      <location filename="../Project/Project.py" line="4490" />
+      <location filename="../Project/Project.py" line="4489" />
       <source>Load session</source>
       <translation>Charger la session</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4477" />
+      <location filename="../Project/Project.py" line="4496" />
       <source>Load the projects session file.</source>
       <translation>Charge le fichier de session du projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4479" />
+      <location filename="../Project/Project.py" line="4498" />
       <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="4495" />
-      <location filename="../Project/Project.py" line="4494" />
+      <location filename="../Project/Project.py" line="4514" />
+      <location filename="../Project/Project.py" line="4513" />
       <source>Save session</source>
       <translation>Enregistrer la session</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4501" />
+      <location filename="../Project/Project.py" line="4520" />
       <source>Save the projects session file.</source>
       <translation>Enregistre le fichier de session du projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4503" />
+      <location filename="../Project/Project.py" line="4522" />
       <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="4519" />
-      <location filename="../Project/Project.py" line="4518" />
+      <location filename="../Project/Project.py" line="4538" />
+      <location filename="../Project/Project.py" line="4537" />
       <source>Delete session</source>
       <translation>Supprimer la session</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4525" />
+      <location filename="../Project/Project.py" line="4544" />
       <source>Delete the projects session file.</source>
       <translation>Suppression du fichier session de projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4527" />
+      <location filename="../Project/Project.py" line="4546" />
       <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="4542" />
+      <location filename="../Project/Project.py" line="4561" />
       <source>Code Metrics</source>
       <translation>Statistiques du code</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4543" />
+      <location filename="../Project/Project.py" line="4562" />
       <source>&amp;Code Metrics...</source>
       <translation>Statistiques du &amp;Code...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4550" />
+      <location filename="../Project/Project.py" line="4569" />
       <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="4553" />
+      <location filename="../Project/Project.py" line="4572" />
       <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="4563" />
+      <location filename="../Project/Project.py" line="4582" />
       <source>Python Code Coverage</source>
       <translation> Code Coverage Python</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4564" />
+      <location filename="../Project/Project.py" line="4583" />
       <source>Code Co&amp;verage...</source>
       <translation>Code Co&amp;verage...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4571" />
+      <location filename="../Project/Project.py" line="4590" />
       <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="4574" />
+      <location filename="../Project/Project.py" line="4593" />
       <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="5894" />
-      <location filename="../Project/Project.py" line="5881" />
-      <location filename="../Project/Project.py" line="4584" />
+      <location filename="../Project/Project.py" line="5914" />
+      <location filename="../Project/Project.py" line="5901" />
+      <location filename="../Project/Project.py" line="4603" />
       <source>Profile Data</source>
       <translation>Profiling des données</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4585" />
+      <location filename="../Project/Project.py" line="4604" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Profiling des données...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4592" />
-      <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="4595" />
-      <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="5946" />
-      <location filename="../Project/Project.py" line="4610" />
-      <source>Application Diagram</source>
-      <translation>Diagramme de l'application</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4611" />
-      <source>&amp;Application Diagram...</source>
-      <translation>&amp;Diagramme de l'application...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4618" />
-      <source>Show a diagram of the project.</source>
-      <translation>Affiche le diagramme de l'application.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4621" />
-      <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>
+      <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="4614" />
+      <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="5966" />
+      <location filename="../Project/Project.py" line="4629" />
+      <source>Application Diagram</source>
+      <translation>Diagramme de l'application</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4630" />
-      <source>Load Diagram</source>
-      <translation>Charger le diagramme</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4631" />
-      <source>&amp;Load Diagram...</source>
-      <translation type="unfinished" />
+      <source>&amp;Application Diagram...</source>
+      <translation>&amp;Diagramme de l'application...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4637" />
-      <source>Load a diagram from file.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4639" />
-      <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="6131" />
-      <location filename="../Project/Project.py" line="6080" />
-      <location filename="../Project/Project.py" line="4654" />
-      <source>Create Package List</source>
-      <translation>Création de la liste de package</translation>
+      <source>Show a diagram of the project.</source>
+      <translation>Affiche le diagramme de l'application.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4640" />
+      <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="4649" />
+      <source>Load Diagram</source>
+      <translation>Charger le diagramme</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4650" />
+      <source>&amp;Load Diagram...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4656" />
+      <source>Load a diagram from file.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4658" />
+      <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="6151" />
+      <location filename="../Project/Project.py" line="6100" />
+      <location filename="../Project/Project.py" line="4673" />
+      <source>Create Package List</source>
+      <translation>Création de la liste de package</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4675" />
       <source>Create &amp;Package List</source>
       <translation>Création de la liste de &amp;package</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4663" />
+      <location filename="../Project/Project.py" line="4682" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4666" />
-      <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="6200" />
-      <location filename="../Project/Project.py" line="4677" />
-      <source>Create Plugin Archives</source>
-      <translation>Créer une archive plugin</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4679" />
-      <source>Create Plugin &amp;Archives</source>
-      <translation>Créer les &amp;archives plugin</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4685" />
+      <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="6220" />
+      <location filename="../Project/Project.py" line="4696" />
+      <source>Create Plugin Archives</source>
+      <translation>Créer une archive plugin</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4698" />
+      <source>Create Plugin &amp;Archives</source>
+      <translation>Créer les &amp;archives plugin</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4704" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4687" />
+      <location filename="../Project/Project.py" line="4706" />
       <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="4699" />
+      <location filename="../Project/Project.py" line="4718" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4701" />
+      <location filename="../Project/Project.py" line="4720" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4708" />
+      <location filename="../Project/Project.py" line="4727" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4711" />
+      <location filename="../Project/Project.py" line="4730" />
       <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="6621" />
-      <location filename="../Project/Project.py" line="6592" />
-      <location filename="../Project/Project.py" line="6543" />
-      <location filename="../Project/Project.py" line="4730" />
+      <location filename="../Project/Project.py" line="6641" />
+      <location filename="../Project/Project.py" line="6612" />
+      <location filename="../Project/Project.py" line="6563" />
+      <location filename="../Project/Project.py" line="4749" />
       <source>Execute Make</source>
       <translation>Exécuter Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4731" />
-      <source>&amp;Execute Make</source>
-      <translation>Éxécut&amp;er Make</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4737" />
-      <source>Perform a 'make' run.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4739" />
-      <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="6598" />
-      <location filename="../Project/Project.py" line="4749" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4750" />
+      <source>&amp;Execute Make</source>
+      <translation>Éxécut&amp;er Make</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4756" />
+      <source>Perform a 'make' run.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4758" />
+      <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="6618" />
+      <location filename="../Project/Project.py" line="4768" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4769" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4757" />
+      <location filename="../Project/Project.py" line="4776" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4760" />
-      <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="4778" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4779" />
+      <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="4797" />
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4798" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4786" />
+      <location filename="../Project/Project.py" line="4805" />
       <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4789" />
+      <location filename="../Project/Project.py" line="4808" />
       <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="4806" />
+      <location filename="../Project/Project.py" line="4825" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4826" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4813" />
+      <location filename="../Project/Project.py" line="4832" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4815" />
+      <location filename="../Project/Project.py" line="4834" />
       <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="4827" />
+      <location filename="../Project/Project.py" line="4846" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4847" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4835" />
+      <location filename="../Project/Project.py" line="4854" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4838" />
+      <location filename="../Project/Project.py" line="4857" />
       <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="4850" />
+      <location filename="../Project/Project.py" line="4869" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4851" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4858" />
-      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4863" />
-      <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="4876" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4877" />
+      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4882" />
+      <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="4895" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4884" />
+      <location filename="../Project/Project.py" line="4903" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4890" />
+      <location filename="../Project/Project.py" line="4909" />
       <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="5055" />
-      <location filename="../Project/Project.py" line="5005" />
-      <location filename="../Project/Project.py" line="5004" />
-      <location filename="../Project/Project.py" line="4904" />
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="5074" />
+      <location filename="../Project/Project.py" line="5024" />
+      <location filename="../Project/Project.py" line="5023" />
+      <location filename="../Project/Project.py" line="4923" />
+      <location filename="../Project/Project.py" line="4922" />
       <source>Configure</source>
       <translation type="unfinished">Configuration</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4930" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4916" />
+      <location filename="../Project/Project.py" line="4935" />
       <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="4932" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4933" />
+      <location filename="../Project/Project.py" line="4952" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4939" />
+      <location filename="../Project/Project.py" line="4958" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4960" />
       <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="4954" />
-      <location filename="../Project/Project.py" line="4953" />
+      <location filename="../Project/Project.py" line="4973" />
+      <location filename="../Project/Project.py" line="4972" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4961" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4983" />
       <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="4978" />
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4997" />
+      <location filename="../Project/Project.py" line="4996" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4985" />
+      <location filename="../Project/Project.py" line="5004" />
       <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="4991" />
+      <location filename="../Project/Project.py" line="5010" />
       <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="5012" />
+      <location filename="../Project/Project.py" line="5031" />
       <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="5018" />
+      <location filename="../Project/Project.py" line="5037" />
       <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="5034" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5035" />
+      <location filename="../Project/Project.py" line="5054" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5042" />
+      <location filename="../Project/Project.py" line="5061" />
       <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5045" />
+      <location filename="../Project/Project.py" line="5064" />
       <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="5056" />
+      <location filename="../Project/Project.py" line="5075" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5063" />
+      <location filename="../Project/Project.py" line="5082" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
-      <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="5076" />
-      <source>Upgrade</source>
-      <translation type="unfinished">Mettre à jour</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5077" />
-      <source>&amp;Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5083" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5085" />
-      <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="5097" />
-      <source>Recreate</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5098" />
-      <source>&amp;Recreate</source>
+      <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="5095" />
+      <source>Upgrade</source>
+      <translation type="unfinished">Mettre à jour</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5096" />
+      <source>&amp;Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5102" />
+      <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5104" />
+      <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="5116" />
+      <source>Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5117" />
+      <source>&amp;Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5123" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5106" />
+      <location filename="../Project/Project.py" line="5125" />
       <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="5135" />
-      <source>&amp;Project</source>
-      <translation>&amp;Projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5136" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Ouvrir un projet &amp;récent</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5137" />
-      <source>Session</source>
-      <translation>Session</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5138" />
-      <source>Debugger</source>
-      <translation>Débogueur</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5139" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5141" />
-      <source>Project-T&amp;ools</source>
-      <translation>Outils pr&amp;ojet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5142" />
-      <source>&amp;Version Control</source>
-      <translation>&amp;Contrôle de version</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5146" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Vérification</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5148" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5150" />
-      <source>Sho&amp;w</source>
-      <translation>&amp;Affichage</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagrammes</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Pac&amp;kagers</source>
-      <translation>Création de pac&amp;kage</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5153" />
-      <source>Source &amp;Documentation</source>
-      <translation>&amp;Documentation automatique</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5155" />
-      <source>Make</source>
-      <translation>Make</translation>
+      <source>&amp;Project</source>
+      <translation>&amp;Projet</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5156" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Ouvrir un projet &amp;récent</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5157" />
+      <source>Session</source>
+      <translation>Session</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5158" />
+      <source>Debugger</source>
+      <translation>Débogueur</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5159" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5161" />
+      <source>Project-T&amp;ools</source>
+      <translation>Outils pr&amp;ojet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5162" />
+      <source>&amp;Version Control</source>
+      <translation>&amp;Contrôle de version</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5166" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Vérification</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5168" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5170" />
+      <source>Sho&amp;w</source>
+      <translation>&amp;Affichage</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5171" />
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagrammes</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Pac&amp;kagers</source>
+      <translation>Création de pac&amp;kage</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
+      <source>Source &amp;Documentation</source>
+      <translation>&amp;Documentation automatique</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5175" />
+      <source>Make</source>
+      <translation>Make</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5176" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5317" />
-      <location filename="../Project/Project.py" line="5314" />
+      <location filename="../Project/Project.py" line="5337" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>Project</source>
       <translation>Projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5378" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Clear</source>
       <translation>&amp;Effacer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5557" />
       <source>Search New Files</source>
       <translation>Rechercher des nouveaux fichiers</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5558" />
       <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="5687" />
-      <location filename="../Project/Project.py" line="5674" />
+      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5694" />
       <source>Version Control System</source>
       <translation>Système de conrôle des versions (VCS)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5695" />
       <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="5688" />
+      <location filename="../Project/Project.py" line="5708" />
       <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="5836" />
+      <location filename="../Project/Project.py" line="5856" />
       <source>Coverage Data</source>
       <translation>Coverage de données</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5882" />
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5902" />
+      <location filename="../Project/Project.py" line="5857" />
       <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="5849" />
+      <location filename="../Project/Project.py" line="5869" />
       <source>Code Coverage</source>
       <translation>Code Coverage</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5850" />
+      <location filename="../Project/Project.py" line="5870" />
       <source>Please select a coverage file</source>
       <translation>Sélectionner un fichier coverage</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5915" />
       <source>Please select a profile file</source>
       <translation>Sélectionner un fichier profile</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5947" />
+      <location filename="../Project/Project.py" line="5967" />
       <source>Include module names?</source>
       <translation>Inclure les noms de modules ?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6081" />
+      <location filename="../Project/Project.py" line="6101" />
       <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="6132" />
+      <location filename="../Project/Project.py" line="6152" />
       <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="6421" />
-      <location filename="../Project/Project.py" line="6379" />
-      <location filename="../Project/Project.py" line="6333" />
-      <location filename="../Project/Project.py" line="6322" />
-      <location filename="../Project/Project.py" line="6304" />
-      <location filename="../Project/Project.py" line="6271" />
-      <location filename="../Project/Project.py" line="6241" />
-      <location filename="../Project/Project.py" line="6213" />
-      <location filename="../Project/Project.py" line="6183" />
-      <location filename="../Project/Project.py" line="6169" />
-      <location filename="../Project/Project.py" line="6152" />
+      <location filename="../Project/Project.py" line="6441" />
+      <location filename="../Project/Project.py" line="6399" />
+      <location filename="../Project/Project.py" line="6353" />
+      <location filename="../Project/Project.py" line="6342" />
+      <location filename="../Project/Project.py" line="6324" />
+      <location filename="../Project/Project.py" line="6291" />
+      <location filename="../Project/Project.py" line="6261" />
+      <location filename="../Project/Project.py" line="6233" />
+      <location filename="../Project/Project.py" line="6203" />
+      <location filename="../Project/Project.py" line="6189" />
+      <location filename="../Project/Project.py" line="6172" />
       <source>Create Plugin Archive</source>
       <translation>Création de l'archive du plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6153" />
+      <location filename="../Project/Project.py" line="6173" />
       <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="6170" />
+      <location filename="../Project/Project.py" line="6190" />
       <source>Select package lists:</source>
       <translation>Sélectionner les listes de packages :</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6184" />
+      <location filename="../Project/Project.py" line="6204" />
       <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="6192" />
+      <location filename="../Project/Project.py" line="6212" />
       <source>Creating plugin archives...</source>
       <translation>Création en cours des archives de plugin...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6193" />
+      <location filename="../Project/Project.py" line="6213" />
       <source>Abort</source>
       <translation>Abandonner</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6196" />
+      <location filename="../Project/Project.py" line="6216" />
       <source>%v/%m Archives</source>
       <translation>Archives %v/%m</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6214" />
+      <location filename="../Project/Project.py" line="6234" />
       <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="6242" />
+      <location filename="../Project/Project.py" line="6262" />
       <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="6272" />
+      <location filename="../Project/Project.py" line="6292" />
       <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="6305" />
+      <location filename="../Project/Project.py" line="6325" />
       <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="6323" />
+      <location filename="../Project/Project.py" line="6343" />
       <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="6334" />
+      <location filename="../Project/Project.py" line="6354" />
       <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="6380" />
+      <location filename="../Project/Project.py" line="6400" />
       <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="6422" />
+      <location filename="../Project/Project.py" line="6442" />
       <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="6544" />
+      <location filename="../Project/Project.py" line="6564" />
       <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="6593" />
+      <location filename="../Project/Project.py" line="6613" />
       <source>The make process crashed.</source>
       <translation>Crash du processus make.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6601" />
+      <location filename="../Project/Project.py" line="6621" />
       <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="6606" />
+      <location filename="../Project/Project.py" line="6626" />
       <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="6622" />
+      <location filename="../Project/Project.py" line="6642" />
       <source>The makefile contains errors.</source>
       <translation>Le makefile contient des erreurs.</translation>
     </message>
@@ -58066,22 +58087,22 @@
   <context>
     <name>ProjectFile</name>
     <message>
-      <location filename="../Project/ProjectFile.py" line="109" />
+      <location filename="../Project/ProjectFile.py" line="108" />
       <source>Save Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFile.py" line="110" />
+      <location filename="../Project/ProjectFile.py" line="109" />
       <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectFile.py" line="134" />
+      <source>Read Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectFile.py" line="135" />
-      <source>Read Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectFile.py" line="136" />
       <source>&lt;p&gt;The project 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>
@@ -59949,265 +59970,265 @@
   <context>
     <name>ProjectTranslationsBrowser</name>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="99" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="76" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="74" />
       <source>Translations</source>
       <translation>Traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="79" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="77" />
       <source>&lt;b&gt;Project Translations Browser&lt;/b&gt;&lt;p&gt;This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Navigateur de traductions&lt;/b&gt;&lt;p&gt;Permet de voir facilement toutes les traductions présentes dans le projet. Plusieurs actions peuvent être effectuées via le menu contextuel.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="95" />
       <source>Translation Files ({0})</source>
       <translation type="unfinished">Fichiers de traduction ({0})</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="98" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="96" />
       <source>Translation Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="109" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="107" />
       <source>Translations Browser</source>
       <translation type="unfinished">Navigateur de traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="239" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="183" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="237" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="181" />
       <source>Generate translation</source>
       <translation>Générer un fichier de traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="249" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="247" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <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="538" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="360" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="258" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="194" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="536" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="507" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="330" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="256" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="192" />
       <source>Generate all translations</source>
       <translation>Générer tous les fichiers de traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="513" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="369" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="267" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="198" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="545" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="511" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="367" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="196" />
       <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="419" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="417" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
       <source>Open in Qt-Linguist</source>
       <translation>Ouvrir avec Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="423" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="279" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="206" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="471" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="421" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="277" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="204" />
       <source>Open in Editor</source>
       <translation>Ouvrir dans l'éditeur</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="286" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="284" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
       <source>Release translation</source>
       <translation>Compiler la traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="518" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="377" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="341" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="295" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="553" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="516" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="375" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="339" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="293" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="214" />
       <source>Release all translations</source>
       <translation>Compiler toutes les traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="220" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
       <source>Preview translation</source>
       <translation>Apercu de la traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="346" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="344" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Preview all translations</source>
       <translation>Visualiser toutes les traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="441" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="352" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="527" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
       <source>Extract messages</source>
       <translation>Extraction des messages</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="469" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="275" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="273" />
       <source>Open</source>
       <translation>Ouvrir</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="488" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="302" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="486" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="300" />
       <source>Remove from project</source>
       <translation>Supprimer du projet</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="561" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="491" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="305" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="559" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="489" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
       <source>Delete</source>
       <translation>Supprimer</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="384" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="309" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="307" />
       <source>Add translation...</source>
       <translation>Ajouter une traduction...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="568" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="566" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="385" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
       <source>Add translation files...</source>
       <translation>Ajouter des fichiers de traduction...</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="569" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="313" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Copier chemin dans le Presse-Papiers</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="492" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="388" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="315" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Copier chemin dans le Presse-Papiers</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="573" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="390" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Configure...</source>
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="448" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
       <source>Generate translations</source>
       <translation>Générer des traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="460" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="458" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="410" />
       <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="480" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="478" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="426" />
       <source>Release translations</source>
       <translation>Compiler les traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="432" />
       <source>Preview translations</source>
       <translation>Apercu des traductions</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="835" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="833" />
       <source>Delete translation files</source>
       <translation>Supprimer les fichiers de traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="836" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="834" />
       <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="1504" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1001" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="961" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1502" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="999" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="959" />
       <source>Write temporary project file</source>
       <translation>Ecrire un fichier projet temporaire</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1505" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1241" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="962" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1239" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="960" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Aucun fichier de traduction (*.ts) sélectionné.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1002" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1000" />
       <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="1240" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1123" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1111" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1238" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1121" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1109" />
       <source>Translation file generation</source>
       <translation>Génération d'un fichier de traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1112" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1110" />
       <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="1118" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1116" />
       <source> The process has crashed.</source>
       <translation> Le processus a crashé.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1122" />
       <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="1534" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1532" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1292" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1337" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1295" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1335" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1293" />
       <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="1427" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1425" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1405" />
       <source>Translation file release</source>
       <translation>Validation du fichier de traduction</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1406" />
       <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="1428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1426" />
       <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="1535" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1533" />
       <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>
@@ -83379,2216 +83400,2228 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="574" />
+      <location filename="../UI/UserInterface.py" line="573" />
       <source>Initializing Tools...</source>
       <translation>Initialisation des outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="585" />
+      <location filename="../UI/UserInterface.py" line="584" />
       <source>Registering Objects...</source>
       <translation>Enregistrement des objets...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="619" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Initializing Actions...</source>
       <translation>Initialisation des actions...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="621" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Initializing Menus...</source>
       <translation>Initialisation des menus...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="623" />
+      <location filename="../UI/UserInterface.py" line="622" />
       <source>Initializing Toolbars...</source>
       <translation>Initialisation des barres d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="625" />
+      <location filename="../UI/UserInterface.py" line="624" />
       <source>Initializing Statusbar...</source>
       <translation>Initialisation de la barre d'état...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Single Application Server...</source>
       <translation>Initialisation du serveur d'application...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="658" />
+      <location filename="../UI/UserInterface.py" line="657" />
       <source>Initializing Plugins...</source>
       <translation>Initialisation en cours des plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="661" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Activating Plugins...</source>
       <translation>Activation des plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="663" />
+      <location filename="../UI/UserInterface.py" line="662" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="666" />
+      <location filename="../UI/UserInterface.py" line="665" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="673" />
+      <location filename="../UI/UserInterface.py" line="672" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Restauration des barres d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="680" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="693" />
       <source>Reading Tasks...</source>
       <translation>Lecture en cours des tâches...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="699" />
+      <location filename="../UI/UserInterface.py" line="698" />
       <source>Reading Templates...</source>
       <translation>Lecture en cours des gabarits...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="703" />
       <source>Starting Debugger...</source>
       <translation>Démarrage du débuggeur...</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1065" />
+      <source>Left Toolbox</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1075" />
+      <source>Horizontal Toolbox</source>
+      <translation>Barre horizontale</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1085" />
+      <source>Right Toolbox</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2019" />
+      <location filename="../UI/UserInterface.py" line="1278" />
+      <location filename="../UI/UserInterface.py" line="1095" />
+      <source>Multiproject-Viewer</source>
+      <translation>Gestionnaire de multi-projets</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1997" />
+      <location filename="../UI/UserInterface.py" line="1284" />
+      <location filename="../UI/UserInterface.py" line="1101" />
+      <source>Project-Viewer</source>
+      <translation>Gestionnaire de projet</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2559" />
+      <location filename="../UI/UserInterface.py" line="2558" />
+      <location filename="../UI/UserInterface.py" line="1291" />
+      <location filename="../UI/UserInterface.py" line="1108" />
+      <source>Find/Replace In Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1298" />
+      <location filename="../UI/UserInterface.py" line="1115" />
+      <source>Find File</source>
+      <translation type="unfinished">Trouver un fichier</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1304" />
+      <location filename="../UI/UserInterface.py" line="1121" />
+      <source>VCS Status</source>
+      <translation type="unfinished">VCS Status</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1311" />
+      <location filename="../UI/UserInterface.py" line="1128" />
+      <source>Template-Viewer</source>
+      <translation>Gestionnaire de gabarits</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2085" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1135" />
+      <source>File-Browser</source>
+      <translation>Navigateur de fichiers</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1325" />
+      <location filename="../UI/UserInterface.py" line="1142" />
+      <source>Symbols</source>
+      <translation>Symboles</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2041" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Debug-Viewer</source>
+      <translation>Gestionnaire de débogage</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2412" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1159" />
+      <source>Code Documentation Viewer</source>
+      <translation type="unfinished">Visionneur de documentation du code</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2628" />
+      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="1361" />
+      <location filename="../UI/UserInterface.py" line="1166" />
+      <source>Help Viewer</source>
+      <translation type="unfinished">Visionneur d'aide</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1367" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>Plugin Repository</source>
+      <translation>Référentiel de plugins</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1373" />
+      <location filename="../UI/UserInterface.py" line="1178" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2440" />
+      <location filename="../UI/UserInterface.py" line="2439" />
+      <location filename="../UI/UserInterface.py" line="1378" />
+      <location filename="../UI/UserInterface.py" line="1183" />
+      <source>PyPI</source>
+      <translation>PyPI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="2461" />
+      <location filename="../UI/UserInterface.py" line="1385" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Conda</source>
+      <translation>Conda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1392" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Cooperation</source>
+      <translation>Coopération</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2340" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
+      <source>IRC</source>
+      <translation>IRC</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="2483" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>MicroPython</source>
+      <translation>MicroPython</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2063" />
+      <location filename="../UI/UserInterface.py" line="1410" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Shell</source>
+      <translation>Shell</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2129" />
+      <location filename="../UI/UserInterface.py" line="1416" />
+      <location filename="../UI/UserInterface.py" line="1219" />
+      <source>Task-Viewer</source>
+      <translation>Visualisueur de tâches</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2107" />
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1223" />
+      <source>Log-Viewer</source>
+      <translation>Fenêtre de log</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1429" />
+      <location filename="../UI/UserInterface.py" line="1230" />
+      <source>Numbers</source>
+      <translation>Nombres</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1815" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} - Mode passif</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1822" />
+      <location filename="../UI/UserInterface.py" line="1818" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} - {1} - Mode Passif</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1826" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} - {1} - {2} - Mode Passif</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1850" />
+      <source>Quit</source>
+      <translation>Quitter</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1852" />
+      <source>&amp;Quit</source>
+      <translation>&amp;Quitter</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1853" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1858" />
+      <source>Quit the IDE</source>
+      <translation>Quitter l'IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1860" />
+      <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="1874" />
+      <location filename="../UI/UserInterface.py" line="1872" />
+      <source>Restart</source>
+      <translation>Redémarrer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Shift+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1880" />
+      <source>Restart the IDE</source>
+      <translation>Rédémarrer l'IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
+      <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="1900" />
+      <location filename="../UI/UserInterface.py" line="1893" />
+      <source>Save session</source>
+      <translation>Enregistrer la session</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1894" />
+      <source>Save session...</source>
+      <translation>Enregistrer session...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1902" />
+      <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="7649" />
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Load session</source>
+      <translation>Charger la session</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1913" />
+      <source>Load session...</source>
+      <translation>Charger la session...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1921" />
+      <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="1931" />
+      <source>New Window</source>
+      <translation>Nouvelle fenêtre</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1933" />
+      <source>New &amp;Window</source>
+      <translation>&amp;Nouvelle fenêtre</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1934" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1941" />
+      <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="1955" />
+      <location filename="../UI/UserInterface.py" line="1953" />
+      <source>Edit Profile</source>
+      <translation>Profil d'Edition</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
+      <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="1964" />
+      <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="1977" />
+      <location filename="../UI/UserInterface.py" line="1975" />
+      <source>Debug Profile</source>
+      <translation>Profil Débogage</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1984" />
+      <source>Activate the debug view profile</source>
+      <translation>Active le profil Débogage</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1986" />
+      <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="1998" />
+      <source>&amp;Project-Viewer</source>
+      <translation>Gestionnaire de &amp;projet</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2005" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2008" />
+      <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="2020" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>Gestionnaire de &amp;multi-projet</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2027" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2030" />
+      <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="2042" />
+      <source>&amp;Debug-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2049" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2052" />
+      <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="2064" />
+      <source>&amp;Shell</source>
+      <translation>&amp;Shell</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2065" />
+      <source>Alt+Shift+S</source>
+      <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2071" />
+      <source>Switch the input focus to the Shell window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2074" />
+      <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="2086" />
+      <source>&amp;File-Browser</source>
+      <translation>Navigateur de &amp;fichier</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2087" />
+      <source>Alt+Shift+F</source>
+      <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2093" />
+      <source>Switch the input focus to the File-Browser window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2096" />
+      <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="2108" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2109" />
+      <source>Alt+Shift+G</source>
+      <translation>Alt+Shift+G</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2115" />
+      <source>Switch the input focus to the Log-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2118" />
+      <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="2130" />
+      <source>&amp;Task-Viewer</source>
+      <translation>Visionneur de &amp;tâches</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2131" />
+      <source>Alt+Shift+T</source>
+      <translation>Alt+Shift+T</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2137" />
+      <source>Switch the input focus to the Task-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2140" />
+      <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="2153" />
+      <source>Templ&amp;ate-Viewer</source>
+      <translation>Visionneur de g&amp;abarits</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2154" />
+      <source>Alt+Shift+A</source>
+      <translation>Alt+Shift+A</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2160" />
+      <source>Switch the input focus to the Template-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2163" />
+      <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="2178" />
-      <location filename="../UI/UserInterface.py" line="1066" />
-      <source>Left Toolbox</source>
+      <source>&amp;Left Toolbox</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2185" />
+      <source>Toggle the Left Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2187" />
+      <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="2201" />
+      <source>&amp;Right Toolbox</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2208" />
+      <source>Toggle the Right Toolbox window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2210" />
+      <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="2224" />
-      <location filename="../UI/UserInterface.py" line="1076" />
-      <source>Horizontal Toolbox</source>
-      <translation>Barre horizontale</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2201" />
-      <location filename="../UI/UserInterface.py" line="1086" />
-      <source>Right Toolbox</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2020" />
-      <location filename="../UI/UserInterface.py" line="1279" />
-      <location filename="../UI/UserInterface.py" line="1096" />
-      <source>Multiproject-Viewer</source>
-      <translation>Gestionnaire de multi-projets</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1998" />
-      <location filename="../UI/UserInterface.py" line="1285" />
-      <location filename="../UI/UserInterface.py" line="1102" />
-      <source>Project-Viewer</source>
-      <translation>Gestionnaire de projet</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2560" />
-      <location filename="../UI/UserInterface.py" line="2559" />
-      <location filename="../UI/UserInterface.py" line="1292" />
-      <location filename="../UI/UserInterface.py" line="1109" />
-      <source>Find/Replace In Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
-      <location filename="../UI/UserInterface.py" line="2582" />
-      <location filename="../UI/UserInterface.py" line="1299" />
-      <location filename="../UI/UserInterface.py" line="1116" />
-      <source>Find File</source>
-      <translation type="unfinished">Trouver un fichier</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1305" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>VCS Status</source>
-      <translation type="unfinished">VCS Status</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
-      <location filename="../UI/UserInterface.py" line="1312" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Template-Viewer</source>
-      <translation>Gestionnaire de gabarits</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2086" />
-      <location filename="../UI/UserInterface.py" line="1319" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>File-Browser</source>
-      <translation>Navigateur de fichiers</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Symbols</source>
-      <translation>Symboles</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2042" />
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1153" />
-      <source>Debug-Viewer</source>
-      <translation>Gestionnaire de débogage</translation>
+      <source>&amp;Horizontal Toolbox</source>
+      <translation>Barre &amp;horizontale</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2231" />
+      <source>Toggle the Horizontal Toolbox window</source>
+      <translation>Afficher/Masquer la barre d'outils horizontale</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2233" />
+      <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="2246" />
+      <source>Left Sidebar</source>
+      <translation>Barre latérale de gauche</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2247" />
+      <source>&amp;Left Sidebar</source>
+      <translation>Barre latérale de &amp;gauche</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2254" />
+      <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="2256" />
+      <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="2269" />
+      <source>Right Sidebar</source>
+      <translation type="unfinished">Barre latérale de droite</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2270" />
+      <source>&amp;Right Sidebar</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2277" />
+      <source>Toggle the right sidebar window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2279" />
+      <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="2292" />
+      <source>Bottom Sidebar</source>
+      <translation>Barre du bas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2293" />
+      <source>&amp;Bottom Sidebar</source>
+      <translation>&amp;Barre du bas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2300" />
+      <source>Toggle the bottom sidebar window</source>
+      <translation>Affiche/Masque la barre du bas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2302" />
+      <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="2315" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2316" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2317" />
+      <source>Alt+Shift+O</source>
+      <translation>Alt+Shift+O</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2323" />
+      <source>Switch the input focus to the Cooperation-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2326" />
+      <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="2341" />
+      <source>&amp;IRC</source>
+      <translation>&amp;IRC</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2342" />
+      <source>Ctrl+Alt+Shift+I</source>
+      <translation>Ctrl+Alt+Shift+I</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2348" />
+      <source>Switch the input focus to the IRC window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2351" />
+      <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="2362" />
+      <source>Symbols-Viewer</source>
+      <translation>Visionneur de symbole</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2363" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>Visionneur de s&amp;ymbole</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2364" />
+      <source>Alt+Shift+Y</source>
+      <translation>Alt+Shift+Y</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2370" />
+      <source>Switch the input focus to the Symbols-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2373" />
+      <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="2387" />
+      <source>Numbers-Viewer</source>
+      <translation>Visionneur de nombres</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2388" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation>Visionneur de nom&amp;bres</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2389" />
+      <source>Alt+Shift+B</source>
+      <translation>Alt+Shift+B</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2395" />
+      <source>Switch the input focus to the Numbers-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2398" />
+      <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="2414" />
-      <location filename="../UI/UserInterface.py" line="2413" />
-      <location filename="../UI/UserInterface.py" line="1355" />
-      <location filename="../UI/UserInterface.py" line="1160" />
-      <source>Code Documentation Viewer</source>
-      <translation type="unfinished">Visionneur de documentation du code</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2629" />
-      <location filename="../UI/UserInterface.py" line="2628" />
-      <location filename="../UI/UserInterface.py" line="1362" />
-      <location filename="../UI/UserInterface.py" line="1167" />
-      <source>Help Viewer</source>
-      <translation type="unfinished">Visionneur d'aide</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <location filename="../UI/UserInterface.py" line="2509" />
-      <location filename="../UI/UserInterface.py" line="2508" />
-      <location filename="../UI/UserInterface.py" line="1368" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Plugin Repository</source>
-      <translation>Référentiel de plugins</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
-      <location filename="../UI/UserInterface.py" line="2532" />
-      <location filename="../UI/UserInterface.py" line="1374" />
-      <location filename="../UI/UserInterface.py" line="1179" />
-      <source>Virtual Environments</source>
+      <source>Ctrl+Alt+Shift+D</source>
+      <translation>Ctrl+Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2420" />
+      <source>Switch the input focus to the Code Documentation Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2425" />
+      <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="2441" />
-      <location filename="../UI/UserInterface.py" line="2440" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1184" />
-      <source>PyPI</source>
-      <translation>PyPI</translation>
+      <source>Ctrl+Alt+Shift+P</source>
+      <translation>Ctrl+Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2447" />
+      <source>Switch the input focus to the PyPI window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2450" />
+      <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="2463" />
-      <location filename="../UI/UserInterface.py" line="2462" />
-      <location filename="../UI/UserInterface.py" line="1386" />
-      <location filename="../UI/UserInterface.py" line="1189" />
-      <source>Conda</source>
-      <translation>Conda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1393" />
-      <location filename="../UI/UserInterface.py" line="1196" />
-      <source>Cooperation</source>
-      <translation>Coopération</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
-      <location filename="../UI/UserInterface.py" line="1397" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>IRC</source>
-      <translation>IRC</translation>
+      <source>Ctrl+Alt+Shift+C</source>
+      <translation>Ctrl+Alt+Shift+C</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2469" />
+      <source>Switch the input focus to the Conda window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2472" />
+      <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="2485" />
-      <location filename="../UI/UserInterface.py" line="2484" />
-      <location filename="../UI/UserInterface.py" line="1403" />
-      <location filename="../UI/UserInterface.py" line="1208" />
-      <source>MicroPython</source>
-      <translation>MicroPython</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2064" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Shell</source>
-      <translation>Shell</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2130" />
-      <location filename="../UI/UserInterface.py" line="1417" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>Task-Viewer</source>
-      <translation>Visualisueur de tâches</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2108" />
-      <location filename="../UI/UserInterface.py" line="1423" />
-      <location filename="../UI/UserInterface.py" line="1224" />
-      <source>Log-Viewer</source>
-      <translation>Fenêtre de log</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1430" />
-      <location filename="../UI/UserInterface.py" line="1231" />
-      <source>Numbers</source>
-      <translation>Nombres</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1816" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} - Mode passif</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1823" />
-      <location filename="../UI/UserInterface.py" line="1819" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} - {1} - Mode Passif</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} - {1} - {2} - Mode Passif</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1851" />
-      <source>Quit</source>
-      <translation>Quitter</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <source>&amp;Quit</source>
-      <translation>&amp;Quitter</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1854" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>Quit the IDE</source>
-      <translation>Quitter l'IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1861" />
-      <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="1875" />
-      <location filename="../UI/UserInterface.py" line="1873" />
-      <source>Restart</source>
-      <translation>Redémarrer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Shift+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1881" />
-      <source>Restart the IDE</source>
-      <translation>Rédémarrer l'IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1883" />
-      <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="1901" />
-      <location filename="../UI/UserInterface.py" line="1894" />
-      <source>Save session</source>
-      <translation>Enregistrer la session</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>Save session...</source>
-      <translation>Enregistrer session...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1903" />
-      <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="7650" />
-      <location filename="../UI/UserInterface.py" line="1920" />
-      <location filename="../UI/UserInterface.py" line="1913" />
-      <source>Load session</source>
-      <translation>Charger la session</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1914" />
-      <source>Load session...</source>
-      <translation>Charger la session...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1922" />
-      <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="1932" />
-      <source>New Window</source>
-      <translation>Nouvelle fenêtre</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1934" />
-      <source>New &amp;Window</source>
-      <translation>&amp;Nouvelle fenêtre</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1940" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1942" />
-      <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="1956" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <source>Edit Profile</source>
-      <translation>Profil d'Edition</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1963" />
-      <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="1965" />
-      <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="1978" />
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>Debug Profile</source>
-      <translation>Profil Débogage</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1985" />
-      <source>Activate the debug view profile</source>
-      <translation>Active le profil Débogage</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1987" />
-      <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="1999" />
-      <source>&amp;Project-Viewer</source>
-      <translation>Gestionnaire de &amp;projet</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2000" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2006" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2009" />
-      <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="2021" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>Gestionnaire de &amp;multi-projet</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2028" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2031" />
-      <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="2043" />
-      <source>&amp;Debug-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2050" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2053" />
-      <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="2065" />
-      <source>&amp;Shell</source>
-      <translation>&amp;Shell</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
-      <source>Alt+Shift+S</source>
-      <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2072" />
-      <source>Switch the input focus to the Shell window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2075" />
-      <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="2087" />
-      <source>&amp;File-Browser</source>
-      <translation>Navigateur de &amp;fichier</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
-      <source>Alt+Shift+F</source>
-      <translation>Alt+Shift+F</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2094" />
-      <source>Switch the input focus to the File-Browser window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2097" />
-      <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="2109" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2110" />
-      <source>Alt+Shift+G</source>
-      <translation>Alt+Shift+G</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2116" />
-      <source>Switch the input focus to the Log-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2119" />
-      <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="2131" />
-      <source>&amp;Task-Viewer</source>
-      <translation>Visionneur de &amp;tâches</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
-      <source>Alt+Shift+T</source>
-      <translation>Alt+Shift+T</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2138" />
-      <source>Switch the input focus to the Task-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2141" />
-      <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="2154" />
-      <source>Templ&amp;ate-Viewer</source>
-      <translation>Visionneur de g&amp;abarits</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
-      <source>Alt+Shift+A</source>
-      <translation>Alt+Shift+A</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2161" />
-      <source>Switch the input focus to the Template-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
-      <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="2179" />
-      <source>&amp;Left Toolbox</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2186" />
-      <source>Toggle the Left Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
-      <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="2202" />
-      <source>&amp;Right Toolbox</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2209" />
-      <source>Toggle the Right Toolbox window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2211" />
-      <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="2225" />
-      <source>&amp;Horizontal Toolbox</source>
-      <translation>Barre &amp;horizontale</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2232" />
-      <source>Toggle the Horizontal Toolbox window</source>
-      <translation>Afficher/Masquer la barre d'outils horizontale</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2234" />
-      <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="2247" />
-      <source>Left Sidebar</source>
-      <translation>Barre latérale de gauche</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
-      <source>&amp;Left Sidebar</source>
-      <translation>Barre latérale de &amp;gauche</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2255" />
-      <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="2257" />
-      <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="2270" />
-      <source>Right Sidebar</source>
-      <translation type="unfinished">Barre latérale de droite</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2271" />
-      <source>&amp;Right Sidebar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2278" />
-      <source>Toggle the right sidebar window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2280" />
-      <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="2293" />
-      <source>Bottom Sidebar</source>
-      <translation>Barre du bas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2294" />
-      <source>&amp;Bottom Sidebar</source>
-      <translation>&amp;Barre du bas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2301" />
-      <source>Toggle the bottom sidebar window</source>
-      <translation>Affiche/Masque la barre du bas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2303" />
-      <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="2316" />
-      <source>Cooperation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2317" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
-      <source>Alt+Shift+O</source>
-      <translation>Alt+Shift+O</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2324" />
-      <source>Switch the input focus to the Cooperation-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
-      <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="2342" />
-      <source>&amp;IRC</source>
-      <translation>&amp;IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
-      <source>Ctrl+Alt+Shift+I</source>
-      <translation>Ctrl+Alt+Shift+I</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2349" />
-      <source>Switch the input focus to the IRC window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2352" />
-      <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="2363" />
-      <source>Symbols-Viewer</source>
-      <translation>Visionneur de symbole</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2364" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>Visionneur de s&amp;ymbole</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
-      <source>Alt+Shift+Y</source>
-      <translation>Alt+Shift+Y</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2371" />
-      <source>Switch the input focus to the Symbols-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2374" />
-      <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="2388" />
-      <source>Numbers-Viewer</source>
-      <translation>Visionneur de nombres</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2389" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>Visionneur de nom&amp;bres</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
-      <source>Alt+Shift+B</source>
-      <translation>Alt+Shift+B</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2396" />
-      <source>Switch the input focus to the Numbers-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2399" />
-      <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="2415" />
-      <source>Ctrl+Alt+Shift+D</source>
-      <translation>Ctrl+Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2421" />
-      <source>Switch the input focus to the Code Documentation Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2426" />
-      <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="2442" />
-      <source>Ctrl+Alt+Shift+P</source>
-      <translation>Ctrl+Alt+Shift+P</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
-      <source>Switch the input focus to the PyPI window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2451" />
-      <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="2464" />
-      <source>Ctrl+Alt+Shift+C</source>
-      <translation>Ctrl+Alt+Shift+C</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2470" />
-      <source>Switch the input focus to the Conda window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2473" />
-      <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="2486" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2492" />
+      <location filename="../UI/UserInterface.py" line="2491" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2495" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <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="2510" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2516" />
+      <location filename="../UI/UserInterface.py" line="2515" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2534" />
+      <location filename="../UI/UserInterface.py" line="2533" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2540" />
+      <location filename="../UI/UserInterface.py" line="2539" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
       <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="2561" />
+      <location filename="../UI/UserInterface.py" line="2560" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
+      <location filename="../UI/UserInterface.py" line="2566" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2570" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <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="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2590" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2593" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <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="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <source>VCS Status List</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
-      <location filename="../UI/UserInterface.py" line="2606" />
-      <source>VCS Status List</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2614" />
+      <location filename="../UI/UserInterface.py" line="2613" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <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="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2636" />
+      <location filename="../UI/UserInterface.py" line="2635" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2639" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <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="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
       <source>What's This?</source>
       <translation>Qu'est-ce que c'est ?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <source>&amp;What's This?</source>
+      <translation>&amp;Qu'est-ce que c'est?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2654" />
-      <source>&amp;What's This?</source>
-      <translation>&amp;Qu'est-ce que c'est?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2660" />
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Context sensitive help</source>
       <translation>Aide contextuelle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2662" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <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="2675" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>Helpviewer</source>
       <translation>Visionneur d'aide</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2676" />
+      <source>&amp;Helpviewer...</source>
+      <translation>Visionneur d'&amp;aide...</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
-      <source>&amp;Helpviewer...</source>
-      <translation>Visionneur d'&amp;aide...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2678" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2683" />
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Open the helpviewer window</source>
       <translation>Ouvre le visualiseur d'aide</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2685" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <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="2704" />
+      <source>Show Versions</source>
+      <translation>Afficher les versions</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2705" />
-      <source>Show Versions</source>
-      <translation>Afficher les versions</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Show &amp;Versions</source>
       <translation>Afficher les &amp;versions</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2711" />
       <source>Display version information</source>
       <translation>Affiche les informations sur les versions</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2714" />
+      <location filename="../UI/UserInterface.py" line="2713" />
       <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="2729" />
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>Show Error Log</source>
       <translation>Montrer l'historique d'erreur</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2722" />
       <source>Show Error &amp;Log...</source>
       <translation>Montrer &amp;l'historique d'erreur...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2730" />
       <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="2739" />
+      <source>Show Install Info</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2740" />
-      <source>Show Install Info</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2747" />
+      <location filename="../UI/UserInterface.py" line="2746" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2749" />
+      <location filename="../UI/UserInterface.py" line="2748" />
       <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="4633" />
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="4632" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report Bug</source>
       <translation>Rapport de bogue</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report &amp;Bug...</source>
       <translation>Rapport de &amp;bogue...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
+      <location filename="../UI/UserInterface.py" line="2760" />
       <source>Report a bug</source>
       <translation>Envoyer un rapport de bogue</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <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="2770" />
+      <source>Request Feature</source>
+      <translation>Suggestion d'amélioration</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2771" />
-      <source>Request Feature</source>
-      <translation>Suggestion d'amélioration</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2772" />
       <source>Request &amp;Feature...</source>
       <translation>Suggestion d'&amp;amélioration...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2777" />
       <source>Send a feature request</source>
       <translation>Envoyer une suggestion d'amélioration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2780" />
+      <location filename="../UI/UserInterface.py" line="2779" />
       <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="4091" />
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2792" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
+      <location filename="../UI/UserInterface.py" line="2798" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2801" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <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="2812" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2820" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2821" />
       <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="2832" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2833" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2844" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <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="2854" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
+      <location filename="../UI/UserInterface.py" line="2855" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>Run tests of the current script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2864" />
+      <location filename="../UI/UserInterface.py" line="2863" />
       <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="2873" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2881" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <source>Run tests of the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <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="2905" />
+      <location filename="../UI/UserInterface.py" line="2904" />
       <source>Qt-Designer</source>
       <translation>Qt-Designer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2907" />
+      <location filename="../UI/UserInterface.py" line="2906" />
       <source>Qt-&amp;Designer...</source>
       <translation>Qt-&amp;Designer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2912" />
       <source>Start Qt-Designer</source>
       <translation>Démarrer Qt-Designer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2915" />
+      <location filename="../UI/UserInterface.py" line="2914" />
       <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="2935" />
+      <location filename="../UI/UserInterface.py" line="2934" />
       <source>Qt-Linguist</source>
       <translation>Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2937" />
+      <location filename="../UI/UserInterface.py" line="2936" />
       <source>Qt-&amp;Linguist...</source>
       <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2943" />
+      <location filename="../UI/UserInterface.py" line="2942" />
       <source>Start Qt-Linguist</source>
       <translation>Démarrer Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2945" />
+      <location filename="../UI/UserInterface.py" line="2944" />
       <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="2953" />
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>UI Previewer</source>
       <translation>Visionneur d'UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
+      <location filename="../UI/UserInterface.py" line="2954" />
       <source>&amp;UI Previewer...</source>
       <translation>Visionneur d'&amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2961" />
+      <location filename="../UI/UserInterface.py" line="2960" />
       <source>Start the UI Previewer</source>
       <translation>Démarre le Visionneur d'UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2962" />
       <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="2969" />
+      <location filename="../UI/UserInterface.py" line="2968" />
       <source>Translations Previewer</source>
       <translation>Visionneur de traductions</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2971" />
+      <location filename="../UI/UserInterface.py" line="2970" />
       <source>&amp;Translations Previewer...</source>
       <translation>Visionneur de &amp;Traductions...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="2976" />
       <source>Start the Translations Previewer</source>
       <translation>Démarre le visionneur de traductions</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2979" />
+      <location filename="../UI/UserInterface.py" line="2978" />
       <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="2988" />
+      <location filename="../UI/UserInterface.py" line="2987" />
       <source>Compare Files</source>
       <translation>Comparaison de fichiers</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2990" />
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Comparaison de fichiers...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="2995" />
       <source>Compare two files</source>
       <translation>Compare deux fichiers</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2998" />
+      <location filename="../UI/UserInterface.py" line="2997" />
       <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="3007" />
+      <location filename="../UI/UserInterface.py" line="3006" />
       <source>Compare Files side by side</source>
       <translation>Comparaison de fichiers côte à côte</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3009" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <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="3017" />
+      <location filename="../UI/UserInterface.py" line="3016" />
       <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="3027" />
+      <location filename="../UI/UserInterface.py" line="3026" />
       <source>SQL Browser</source>
       <translation>Navigateur SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3028" />
       <source>SQL &amp;Browser...</source>
       <translation>&amp;Navigateur SQL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3035" />
+      <location filename="../UI/UserInterface.py" line="3034" />
       <source>Browse a SQL database</source>
       <translation>Parcourir une base de données SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3037" />
+      <location filename="../UI/UserInterface.py" line="3036" />
       <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="3051" />
-      <location filename="../UI/UserInterface.py" line="3043" />
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <location filename="../UI/UserInterface.py" line="3042" />
       <source>Mini Editor</source>
       <translation>Mini-éditeur</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3045" />
+      <location filename="../UI/UserInterface.py" line="3044" />
       <source>Mini &amp;Editor...</source>
       <translation>Mini édit&amp;eur...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3053" />
+      <location filename="../UI/UserInterface.py" line="3052" />
       <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="3062" />
+      <location filename="../UI/UserInterface.py" line="3061" />
       <source>Hex Editor</source>
       <translation>Hex Editor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3064" />
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&amp;Hex Editor...</source>
       <translation>&amp;Hex Editor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
+      <location filename="../UI/UserInterface.py" line="3069" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3072" />
+      <location filename="../UI/UserInterface.py" line="3071" />
       <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="3082" />
+      <location filename="../UI/UserInterface.py" line="3081" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3084" />
+      <location filename="../UI/UserInterface.py" line="3083" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3089" />
       <source>Start the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3092" />
+      <location filename="../UI/UserInterface.py" line="3091" />
       <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="3101" />
+      <location filename="../UI/UserInterface.py" line="3100" />
       <source>Icon Editor</source>
       <translation>Éditeur d'icone</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3103" />
+      <location filename="../UI/UserInterface.py" line="3102" />
       <source>&amp;Icon Editor...</source>
       <translation>Éditeur d'&amp;icone...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3109" />
+      <location filename="../UI/UserInterface.py" line="3108" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
+      <location filename="../UI/UserInterface.py" line="3110" />
       <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="3120" />
+      <location filename="../UI/UserInterface.py" line="3119" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3122" />
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3128" />
+      <location filename="../UI/UserInterface.py" line="3127" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3129" />
       <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="3140" />
+      <location filename="../UI/UserInterface.py" line="3139" />
       <source>Preferences</source>
       <translation>Préférences</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3142" />
+      <location filename="../UI/UserInterface.py" line="3141" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Préférences...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3147" />
       <source>Set the prefered configuration</source>
       <translation>Édition des préférences</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3149" />
       <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="3161" />
+      <location filename="../UI/UserInterface.py" line="3160" />
       <source>Export Preferences</source>
       <translation>Exporte les préférences</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3163" />
+      <location filename="../UI/UserInterface.py" line="3162" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;xporter les préférences...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3169" />
+      <location filename="../UI/UserInterface.py" line="3168" />
       <source>Export the current configuration</source>
       <translation>Exporte la configuration courante</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="3170" />
       <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="3180" />
+      <location filename="../UI/UserInterface.py" line="3179" />
       <source>Import Preferences</source>
       <translation>Importe les préférences</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3182" />
+      <location filename="../UI/UserInterface.py" line="3181" />
       <source>I&amp;mport Preferences...</source>
       <translation>I&amp;mporter les préférences...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3188" />
       <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="3192" />
+      <location filename="../UI/UserInterface.py" line="3191" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3200" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3203" />
+      <location filename="../UI/UserInterface.py" line="3202" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3209" />
+      <location filename="../UI/UserInterface.py" line="3208" />
       <source>Export the current theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
+      <location filename="../UI/UserInterface.py" line="3210" />
       <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="3220" />
+      <location filename="../UI/UserInterface.py" line="3219" />
       <source>Import Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3222" />
+      <location filename="../UI/UserInterface.py" line="3221" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3228" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
+      <location filename="../UI/UserInterface.py" line="3229" />
       <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="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload APIs</source>
       <translation>Recharger les APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload &amp;APIs</source>
       <translation>Recharger les &amp;APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3241" />
+      <location filename="../UI/UserInterface.py" line="3240" />
       <source>Reload the API information</source>
       <translation>Recharger les informations des API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3243" />
+      <location filename="../UI/UserInterface.py" line="3242" />
       <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="3257" />
-      <location filename="../UI/UserInterface.py" line="3249" />
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <location filename="../UI/UserInterface.py" line="3248" />
       <source>Show external tools</source>
       <translation>Afficher les outils externes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
+      <location filename="../UI/UserInterface.py" line="3250" />
       <source>Show external &amp;tools</source>
       <translation>Afficher les &amp;outils externes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3258" />
       <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="3269" />
+      <location filename="../UI/UserInterface.py" line="3268" />
       <source>View Profiles</source>
       <translation>Profils de visualisation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
+      <location filename="../UI/UserInterface.py" line="3270" />
       <source>&amp;View Profiles...</source>
       <translation>Profils de &amp;Visualisation...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3277" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Configure view profiles</source>
       <translation>Configuration des profils de visualisation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
+      <location filename="../UI/UserInterface.py" line="3278" />
       <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="3290" />
+      <location filename="../UI/UserInterface.py" line="3289" />
       <source>Toolbars</source>
       <translation>Barres d'outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3292" />
+      <location filename="../UI/UserInterface.py" line="3291" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Barres d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
+      <location filename="../UI/UserInterface.py" line="3297" />
       <source>Configure toolbars</source>
       <translation>Configuration des barres d'outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3299" />
       <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="3311" />
+      <location filename="../UI/UserInterface.py" line="3310" />
       <source>Keyboard Shortcuts</source>
       <translation>Raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3313" />
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>&amp;Raccourcis claviers...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3319" />
+      <location filename="../UI/UserInterface.py" line="3318" />
       <source>Set the keyboard shortcuts</source>
       <translation>Définition des raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
+      <location filename="../UI/UserInterface.py" line="3320" />
       <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="7335" />
-      <location filename="../UI/UserInterface.py" line="7316" />
-      <location filename="../UI/UserInterface.py" line="3331" />
+      <location filename="../UI/UserInterface.py" line="7334" />
+      <location filename="../UI/UserInterface.py" line="7315" />
+      <location filename="../UI/UserInterface.py" line="3330" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exporter les raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3333" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Exporter les raccourcis claviers...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
+      <location filename="../UI/UserInterface.py" line="3338" />
       <source>Export the keyboard shortcuts</source>
       <translation>Exporte les raccourcis claviers</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3341" />
+      <location filename="../UI/UserInterface.py" line="3340" />
       <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="7354" />
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="7353" />
+      <location filename="../UI/UserInterface.py" line="3349" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importer des raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3352" />
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Importer des raccourcis clavier...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="3357" />
       <source>Import the keyboard shortcuts</source>
       <translation>Importe des raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3359" />
       <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="3370" />
+      <location filename="../UI/UserInterface.py" line="3369" />
       <source>Manage SSL Certificates</source>
       <translation>Gestion des certificats SSL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3372" />
+      <location filename="../UI/UserInterface.py" line="3371" />
       <source>Manage SSL Certificates...</source>
       <translation>Gestion des certificats SSL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3378" />
       <source>Manage the saved SSL certificates</source>
       <translation>Gestion des certificats SSL enregistrés</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3382" />
+      <location filename="../UI/UserInterface.py" line="3381" />
       <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="3392" />
+      <location filename="../UI/UserInterface.py" line="3391" />
       <source>Edit Message Filters</source>
       <translation>Éditer les filtres de message</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3394" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Edit Message Filters...</source>
       <translation>Éditer les filtres de message...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="3400" />
       <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="3404" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <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="3423" />
-      <location filename="../UI/UserInterface.py" line="3417" />
-      <location filename="../UI/UserInterface.py" line="3415" />
+      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Clear private data</source>
       <translation>Nettoyer les données privées</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3425" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <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="3435" />
+      <location filename="../UI/UserInterface.py" line="3434" />
+      <source>Activate current editor</source>
+      <translation>Activer l'éditeur courant</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3436" />
-      <location filename="../UI/UserInterface.py" line="3435" />
-      <source>Activate current editor</source>
-      <translation>Activer l'éditeur courant</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3447" />
+      <location filename="../UI/UserInterface.py" line="3446" />
+      <source>Show next</source>
+      <translation>Afficher le suivant</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3448" />
-      <location filename="../UI/UserInterface.py" line="3447" />
-      <source>Show next</source>
-      <translation>Afficher le suivant</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3458" />
+      <source>Show previous</source>
+      <translation>Afficher le précédent</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3460" />
-      <location filename="../UI/UserInterface.py" line="3459" />
-      <source>Show previous</source>
-      <translation>Afficher le précédent</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3461" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Switch between tabs</source>
+      <translation>Intervertir les onglets</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3472" />
-      <location filename="../UI/UserInterface.py" line="3471" />
-      <source>Switch between tabs</source>
-      <translation>Intervertir les onglets</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
       <source>Plugin Infos</source>
       <translation>Infos Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3485" />
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>&amp;Plugin Infos...</source>
       <translation>Infos &amp;Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
+      <location filename="../UI/UserInterface.py" line="3490" />
       <source>Show Plugin Infos</source>
       <translation>Affiche les infos sur les plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
+      <location filename="../UI/UserInterface.py" line="3492" />
       <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="3511" />
-      <location filename="../UI/UserInterface.py" line="3503" />
+      <location filename="../UI/UserInterface.py" line="3510" />
+      <location filename="../UI/UserInterface.py" line="3502" />
       <source>Install Plugins</source>
       <translation>Installation de plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3504" />
       <source>&amp;Install Plugins...</source>
       <translation>&amp;Installation de plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
+      <location filename="../UI/UserInterface.py" line="3512" />
       <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="3530" />
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Uninstall Plugin</source>
       <translation>Désinstaller un plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3524" />
+      <location filename="../UI/UserInterface.py" line="3523" />
       <source>&amp;Uninstall Plugin...</source>
       <translation>&amp;Désinstaller un plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <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="3543" />
+      <location filename="../UI/UserInterface.py" line="3542" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Référentiel de plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <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="3551" />
+      <location filename="../UI/UserInterface.py" line="3550" />
       <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="3578" />
       <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="3576" />
       <source>Qt5 Documentation</source>
       <translation>Documentation Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3584" />
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Open Qt5 Documentation</source>
       <translation>Lance la Documentation Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3599" />
       <location filename="../UI/UserInterface.py" line="3598" />
+      <location filename="../UI/UserInterface.py" line="3597" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Documentation Qt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3605" />
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">Lance la Documentation Qt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3606" />
       <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="3620" />
       <location filename="../UI/UserInterface.py" line="3619" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>PyQt5 Documentation</source>
       <translation>Documentation PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3626" />
+      <location filename="../UI/UserInterface.py" line="3625" />
       <source>Open PyQt5 Documentation</source>
       <translation>Lance la documentation PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3627" />
       <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="3641" />
       <location filename="../UI/UserInterface.py" line="3640" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">Documentation PyQt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3647" />
+      <location filename="../UI/UserInterface.py" line="3646" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">Lance la documentation PyQt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3648" />
       <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="3667" />
       <location filename="../UI/UserInterface.py" line="3666" />
+      <location filename="../UI/UserInterface.py" line="3665" />
       <source>Python 3 Documentation</source>
       <translation>Documentation Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3673" />
+      <location filename="../UI/UserInterface.py" line="3672" />
       <source>Open Python 3 Documentation</source>
       <translation>Ouvrir la Documentation Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <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="3694" />
       <location filename="../UI/UserInterface.py" line="3693" />
+      <location filename="../UI/UserInterface.py" line="3692" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3700" />
+      <location filename="../UI/UserInterface.py" line="3699" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
       <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="3720" />
       <location filename="../UI/UserInterface.py" line="3719" />
+      <location filename="../UI/UserInterface.py" line="3718" />
       <source>PySide2 Documentation</source>
       <translation>Documentation PySide2</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3726" />
+      <location filename="../UI/UserInterface.py" line="3725" />
       <source>Open PySide2 Documentation</source>
       <translation>Ouvrir la Documentation PySide2</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
       <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="3746" />
       <location filename="../UI/UserInterface.py" line="3745" />
+      <location filename="../UI/UserInterface.py" line="3744" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished">Documentation PySide2 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3752" />
+      <location filename="../UI/UserInterface.py" line="3751" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished">Ouvrir la Documentation PySide2 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <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="3854" />
+      <location filename="../UI/UserInterface.py" line="3853" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtras</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
+      <location filename="../UI/UserInterface.py" line="3863" />
       <source>Wi&amp;zards</source>
       <translation>As&amp;sistants</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3882" />
+      <location filename="../UI/UserInterface.py" line="3881" />
       <source>P&amp;lugins</source>
       <translation>P&amp;lugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3891" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>Configure...</source>
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3900" />
+      <location filename="../UI/UserInterface.py" line="3899" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3917" />
+      <location filename="../UI/UserInterface.py" line="3916" />
       <source>Select Tool Group</source>
       <translation>Sélection d'un groupe d'outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Se&amp;ttings</source>
       <translation>&amp;Configuration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3961" />
+      <location filename="../UI/UserInterface.py" line="3960" />
       <source>&amp;Window</source>
       <translation>&amp;Fenêtre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3970" />
+      <location filename="../UI/UserInterface.py" line="3969" />
       <source>&amp;Windows</source>
       <translation>&amp;Fenêtres</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3974" />
+      <location filename="../UI/UserInterface.py" line="3973" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3978" />
+      <location filename="../UI/UserInterface.py" line="3977" />
       <source>Left Side</source>
       <translation>Coté gauche</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3997" />
+      <location filename="../UI/UserInterface.py" line="3996" />
       <source>Right Side</source>
       <translation>Coté droit</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4016" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Bottom Side</source>
       <translation>Coté bas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4024" />
+      <location filename="../UI/UserInterface.py" line="4023" />
       <source>Plug-ins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4030" />
+      <location filename="../UI/UserInterface.py" line="4029" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Barres d'Outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4043" />
+      <location filename="../UI/UserInterface.py" line="4042" />
       <source>&amp;Help</source>
       <translation>A&amp;ide</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="4112" />
+      <location filename="../UI/UserInterface.py" line="4089" />
       <source>Tools</source>
       <translation>Outils</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4093" />
+      <source>Settings</source>
+      <translation>Configuration</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6147" />
       <location filename="../UI/UserInterface.py" line="4115" />
       <location filename="../UI/UserInterface.py" line="4094" />
-      <source>Settings</source>
-      <translation>Configuration</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6148" />
+      <source>Help</source>
+      <translation>Aide</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4116" />
       <location filename="../UI/UserInterface.py" line="4095" />
-      <source>Help</source>
-      <translation>Aide</translation>
+      <source>Profiles</source>
+      <translation>Profils</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="4117" />
       <location filename="../UI/UserInterface.py" line="4096" />
-      <source>Profiles</source>
-      <translation>Profils</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4118" />
-      <location filename="../UI/UserInterface.py" line="4097" />
       <source>Plugins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4113" />
       <source>Unittest</source>
       <translation>Tests unitaires</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4286" />
+      <location filename="../UI/UserInterface.py" line="4285" />
       <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="4295" />
+      <location filename="../UI/UserInterface.py" line="4294" />
       <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="4304" />
+      <location filename="../UI/UserInterface.py" line="4303" />
       <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="4313" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4322" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4331" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4345" />
+      <location filename="../UI/UserInterface.py" line="4344" />
       <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="4416" />
-      <location filename="../UI/UserInterface.py" line="4375" />
+      <location filename="../UI/UserInterface.py" line="4415" />
+      <location filename="../UI/UserInterface.py" line="4374" />
       <source>External Tools/{0}</source>
       <translation>Outils externe/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4524" />
+      <location filename="../UI/UserInterface.py" line="4523" />
       <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="4573" />
+      <location filename="../UI/UserInterface.py" line="4572" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4590" />
+      <location filename="../UI/UserInterface.py" line="4589" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4593" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4597" />
+      <location filename="../UI/UserInterface.py" line="4596" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4633" />
       <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="4948" />
+      <source>Restart application</source>
+      <translation>Redémarrage de l'application</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4949" />
-      <source>Restart application</source>
-      <translation>Redémarrage de l'application</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4950" />
       <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="4973" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4974" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4975" />
       <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="5024" />
+      <location filename="../UI/UserInterface.py" line="4998" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="4999" />
+      <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="5025" />
-      <location filename="../UI/UserInterface.py" line="4999" />
-      <source>Upgrade Eric</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5000" />
-      <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="5026" />
       <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="5084" />
+      <location filename="../UI/UserInterface.py" line="5083" />
       <source>&amp;Builtin Tools</source>
       <translation>Outils &amp;internes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5101" />
+      <location filename="../UI/UserInterface.py" line="5100" />
       <source>&amp;Plugin Tools</source>
       <translation>Outils &amp;plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5103" />
       <source>&amp;User Tools</source>
       <translation>Outils &amp;utilisateurs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5130" />
+      <location filename="../UI/UserInterface.py" line="5129" />
       <source>Configure Tool Groups ...</source>
       <translation>Configuration des groupes d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5134" />
+      <location filename="../UI/UserInterface.py" line="5133" />
       <source>Configure current Tool Group ...</source>
       <translation>Configuration du groupe d'outils courant...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5173" />
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5172" />
+      <location filename="../UI/UserInterface.py" line="5152" />
       <source>No User Tools Configured</source>
       <translation>Pas d'outils utilisateurs configuré</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5247" />
+      <location filename="../UI/UserInterface.py" line="5246" />
       <source>&amp;Show all</source>
       <translation>Tout &amp;afficher</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5249" />
+      <location filename="../UI/UserInterface.py" line="5248" />
       <source>&amp;Hide all</source>
       <translation>Tout &amp;masquer</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6282" />
+      <location filename="../UI/UserInterface.py" line="6271" />
+      <location filename="../UI/UserInterface.py" line="6223" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6049" />
+      <location filename="../UI/UserInterface.py" line="6039" />
+      <location filename="../UI/UserInterface.py" line="5982" />
+      <location filename="../UI/UserInterface.py" line="5972" />
+      <source>Problem</source>
+      <translation>Problème</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6283" />
       <location filename="../UI/UserInterface.py" line="6272" />
       <location filename="../UI/UserInterface.py" line="6224" />
@@ -85597,311 +85630,299 @@
       <location filename="../UI/UserInterface.py" line="6040" />
       <location filename="../UI/UserInterface.py" line="5983" />
       <location filename="../UI/UserInterface.py" line="5973" />
-      <source>Problem</source>
-      <translation>Problème</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6273" />
-      <location filename="../UI/UserInterface.py" line="6225" />
-      <location filename="../UI/UserInterface.py" line="6215" />
-      <location filename="../UI/UserInterface.py" line="6051" />
-      <location filename="../UI/UserInterface.py" line="6041" />
-      <location filename="../UI/UserInterface.py" line="5984" />
-      <location filename="../UI/UserInterface.py" line="5974" />
       <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="6496" />
-      <location filename="../UI/UserInterface.py" line="6409" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6296" />
-      <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6164" />
-      <location filename="../UI/UserInterface.py" line="6124" />
-      <location filename="../UI/UserInterface.py" line="6115" />
-      <location filename="../UI/UserInterface.py" line="6081" />
-      <location filename="../UI/UserInterface.py" line="6072" />
-      <location filename="../UI/UserInterface.py" line="6014" />
-      <location filename="../UI/UserInterface.py" line="6005" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6408" />
+      <location filename="../UI/UserInterface.py" line="6318" />
+      <location filename="../UI/UserInterface.py" line="6295" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6163" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
+      <location filename="../UI/UserInterface.py" line="6080" />
+      <location filename="../UI/UserInterface.py" line="6071" />
+      <location filename="../UI/UserInterface.py" line="6013" />
+      <location filename="../UI/UserInterface.py" line="6004" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6006" />
+      <location filename="../UI/UserInterface.py" line="6005" />
       <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="6015" />
+      <location filename="../UI/UserInterface.py" line="6014" />
       <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="6073" />
+      <location filename="../UI/UserInterface.py" line="6072" />
       <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="6082" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <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="6116" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <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="6125" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <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="6149" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <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="6165" />
+      <location filename="../UI/UserInterface.py" line="6164" />
       <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="6186" />
+      <location filename="../UI/UserInterface.py" line="6185" />
       <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="6238" />
+      <location filename="../UI/UserInterface.py" line="6237" />
       <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="6297" />
+      <location filename="../UI/UserInterface.py" line="6296" />
       <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="6320" />
+      <location filename="../UI/UserInterface.py" line="6319" />
       <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="6410" />
+      <location filename="../UI/UserInterface.py" line="6409" />
       <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="6442" />
+      <location filename="../UI/UserInterface.py" line="6432" />
+      <source>External Tools</source>
+      <translation>Outils externes</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <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="6443" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <source>External Tools</source>
-      <translation>Outils externes</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6434" />
-      <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="6444" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6479" />
+      <location filename="../UI/UserInterface.py" line="6478" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Démarrage du processus '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6497" />
+      <location filename="../UI/UserInterface.py" line="6496" />
       <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="6573" />
+      <location filename="../UI/UserInterface.py" line="6572" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6857" />
+      <location filename="../UI/UserInterface.py" line="6795" />
+      <location filename="../UI/UserInterface.py" line="6751" />
+      <location filename="../UI/UserInterface.py" line="6679" />
+      <location filename="../UI/UserInterface.py" line="6615" />
+      <source>Documentation Missing</source>
+      <translation>Documentation Manquante</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6858" />
       <location filename="../UI/UserInterface.py" line="6796" />
       <location filename="../UI/UserInterface.py" line="6752" />
       <location filename="../UI/UserInterface.py" line="6680" />
       <location filename="../UI/UserInterface.py" line="6616" />
-      <source>Documentation Missing</source>
-      <translation>Documentation Manquante</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6859" />
-      <location filename="../UI/UserInterface.py" line="6797" />
-      <location filename="../UI/UserInterface.py" line="6753" />
-      <location filename="../UI/UserInterface.py" line="6681" />
-      <location filename="../UI/UserInterface.py" line="6617" />
       <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="6839" />
+      <location filename="../UI/UserInterface.py" line="6723" />
+      <source>Documentation</source>
+      <translation>Documentation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6724" />
+      <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="6840" />
-      <location filename="../UI/UserInterface.py" line="6724" />
-      <source>Documentation</source>
-      <translation>Documentation</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6725" />
-      <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="6841" />
       <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="7020" />
+      <location filename="../UI/UserInterface.py" line="6955" />
+      <source>Start Web Browser</source>
+      <translation>Démarrer le navigateur web</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6956" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7021" />
-      <location filename="../UI/UserInterface.py" line="6956" />
-      <source>Start Web Browser</source>
-      <translation>Démarrer le navigateur web</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6957" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7022" />
       <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="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Open Browser</source>
       <translation>Ouverture du navigateur</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Could not start a web browser</source>
       <translation>Impossible de lancer le navigateur web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7318" />
+      <location filename="../UI/UserInterface.py" line="7317" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7336" />
+      <location filename="../UI/UserInterface.py" line="7335" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7538" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7539" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7540" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier tâche &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7582" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7611" />
-      <location filename="../UI/UserInterface.py" line="7584" />
-      <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="7610" />
+      <location filename="../UI/UserInterface.py" line="7583" />
+      <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="7609" />
       <source>Read session</source>
       <translation>Chargement de session</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7627" />
+      <location filename="../UI/UserInterface.py" line="7626" />
       <source>Save Session</source>
       <translation type="unfinished">Enregistrer la session</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7629" />
+      <location filename="../UI/UserInterface.py" line="7628" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7652" />
+      <location filename="../UI/UserInterface.py" line="7651" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7697" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7698" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7699" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8058" />
+      <source>Drop Error</source>
+      <translation>Erreur de suppression</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8059" />
-      <source>Drop Error</source>
-      <translation>Erreur de suppression</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8060" />
       <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="8233" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8234" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8235" />
       <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;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8285" />
+      <location filename="../UI/UserInterface.py" line="8272" />
+      <source>First time usage</source>
+      <translation>Première utilisation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8273" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8286" />
-      <location filename="../UI/UserInterface.py" line="8273" />
-      <source>First time usage</source>
-      <translation>Première utilisation</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8274" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8287" />
       <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="8310" />
+      <location filename="../UI/UserInterface.py" line="8309" />
       <source>Select Workspace Directory</source>
       <translation>Sélectionner le répertoire de travail</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8490" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8491" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8492" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -85985,7 +86006,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1616" />
+      <location filename="../Utilities/__init__.py" line="1615" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Vous pouvez utiliser la syntaxe "%-code" dans la chaine de caractères. Les codes supportés sont :&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;colonne du curseur de l'éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;répertoire de l'éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nom de fichier de l'éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;répertoire 'home' de l'utilisateur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;ligne du curseur de l'éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;chemin du projet courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;texte sélectionné dans l'éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;nom d'utilisateur de l'utilisateur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;le signe pourcent&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_it.ts	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/i18n/eric7_it.ts	Fri Nov 25 11:51:51 2022 +0100
@@ -5532,7 +5532,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="206" />
+      <location filename="../Utilities/__init__.py" line="205" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>La codifica '{0}' è errata per questo testo.</translation>
     </message>
@@ -8868,88 +8868,89 @@
       <translation>Stato</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="221" />
+      <location filename="../Debugger/DebugViewer.py" line="149" />
+      <source>Source</source>
+      <translation>Sorgente</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Don't Show</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Show Only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="233" />
-      <location filename="../Debugger/DebugViewer.py" line="162" />
+      <location filename="../Debugger/DebugViewer.py" line="248" />
+      <location filename="../Debugger/DebugViewer.py" line="176" />
       <source>Enter regular expression patterns separated by ';' to define variable filters. </source>
       <translation>Inserisi pattern  delle espressioni regolari serate da ';' per definire dei filtri variabili.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="239" />
-      <location filename="../Debugger/DebugViewer.py" line="168" />
-      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
-      <translation>Inserisi pattern  delle espressioni regolari serate da ';' per definire dei filtri variabili. Tutte le variabili e gli attributi di classe che sono verificati da una di queste espressioni non sono mostrate nella lista sottostante.</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="246" />
-      <location filename="../Debugger/DebugViewer.py" line="176" />
-      <source>Set</source>
-      <translation>Imposta</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="184" />
-      <source>Shows the list of global variables and their values.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="206" />
-      <source>Source</source>
-      <translation>Sorgente</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugViewer.py" line="254" />
+      <location filename="../Debugger/DebugViewer.py" line="182" />
+      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
+      <translation>Inserisi pattern  delle espressioni regolari serate da ';' per definire dei filtri variabili. Tutte le variabili e gli attributi di classe che sono verificati da una di queste espressioni non sono mostrate nella lista sottostante.</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="261" />
+      <location filename="../Debugger/DebugViewer.py" line="190" />
+      <source>Set</source>
+      <translation>Imposta</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="198" />
+      <source>Shows the list of global variables and their values.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="269" />
       <source>Shows the list of local variables and their values.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="271" />
+      <location filename="../Debugger/DebugViewer.py" line="295" />
       <source>Shows the current call stack.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="281" />
+      <location filename="../Debugger/DebugViewer.py" line="305" />
       <source>Shows a trace of the program flow.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="292" />
+      <location filename="../Debugger/DebugViewer.py" line="316" />
       <source>Shows a list of defined breakpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="303" />
+      <location filename="../Debugger/DebugViewer.py" line="327" />
       <source>Shows a list of defined watchpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="312" />
+      <location filename="../Debugger/DebugViewer.py" line="336" />
       <source>Shows a list of raised exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="323" />
+      <location filename="../Debugger/DebugViewer.py" line="347" />
       <source>Shows a code disassembly in case of an exception.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="749" />
+      <location filename="../Debugger/DebugViewer.py" line="790" />
       <source>&lt;p&gt;Debugger with ID &lt;b&gt;{0}&lt;/b&gt; has been connected.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="992" />
-      <location filename="../Debugger/DebugViewer.py" line="864" />
+      <location filename="../Debugger/DebugViewer.py" line="1033" />
+      <location filename="../Debugger/DebugViewer.py" line="905" />
       <source>unknown state ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -9432,26 +9433,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
       <source>Add allowed host</source>
       <translation>Aggiungi un host consentito</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="343" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="307" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Inserisci l'indirizzo IP di un host consentito</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="357" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="320" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'indirizzo &lt;b&gt;{0}&lt;/b&gt; non è un indirizzo IP v4 o v6 valido. Uscita...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
       <source>Edit allowed host</source>
       <translation>Modifica host permessi</translation>
     </message>
@@ -20844,7 +20845,7 @@
       <translation>Aggiungi/Modifica</translation>
     </message>
     <message>
-      <location filename="../Project/FiletypeAssociationDialog.py" line="56" />
+      <location filename="../Project/FiletypeAssociationDialog.py" line="58" />
       <location filename="../Project/FiletypeAssociationDialog.py" line="45" />
       <source>Ignore</source>
       <translation>Ignora</translation>
@@ -46714,7 +46715,7 @@
       <translation>Pygments</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="462" />
+      <location filename="../Preferences/__init__.py" line="461" />
       <location filename="../QScintilla/Lexers/__init__.py" line="386" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished">File Python (*.py *.py3)</translation>
@@ -46967,7 +46968,7 @@
       <translation>Tutti i file (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="465" />
+      <location filename="../Preferences/__init__.py" line="464" />
       <location filename="../QScintilla/Lexers/__init__.py" line="479" />
       <source>Python3 Files (*.py)</source>
       <translation>Python3 Files (*.py)</translation>
@@ -55528,18 +55529,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1608" />
+      <location filename="../Preferences/__init__.py" line="1653" />
       <source>Export Preferences</source>
       <translation>Esporta Preferenze</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1637" />
-      <location filename="../Preferences/__init__.py" line="1610" />
+      <location filename="../Preferences/__init__.py" line="1682" />
+      <location filename="../Preferences/__init__.py" line="1655" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>File proprietà (*.ini);;Tutti i file(*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1635" />
+      <location filename="../Preferences/__init__.py" line="1680" />
       <source>Import Preferences</source>
       <translation>Importa Preferenze</translation>
     </message>
@@ -55560,7 +55561,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="472" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -56405,7 +56406,7 @@
       <translation>Rinomina File</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3311" />
+      <location filename="../Project/Project.py" line="3313" />
       <location filename="../Project/Project.py" line="2130" />
       <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>
@@ -56436,154 +56437,154 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2517" />
+      <location filename="../Project/Project.py" line="2518" />
       <source>Create project directory</source>
       <translation>Crea la directory del progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2518" />
+      <location filename="../Project/Project.py" line="2519" />
       <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="3115" />
-      <location filename="../Project/Project.py" line="2579" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3116" />
       <location filename="../Project/Project.py" line="2580" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3117" />
+      <location filename="../Project/Project.py" line="2581" />
       <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="2600" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2601" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2602" />
       <source>&lt;p&gt;The mainscript &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="2922" />
-      <location filename="../Project/Project.py" line="2625" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2923" />
       <location filename="../Project/Project.py" line="2626" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2924" />
+      <location filename="../Project/Project.py" line="2627" />
       <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="3144" />
-      <location filename="../Project/Project.py" line="2764" />
-      <location filename="../Project/Project.py" line="2735" />
-      <location filename="../Project/Project.py" line="2691" />
-      <location filename="../Project/Project.py" line="2666" />
-      <location filename="../Project/Project.py" line="2636" />
-      <source>New Project</source>
-      <translation>Nuovo Progetto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2637" />
-      <source>Add existing files to the project?</source>
-      <translation>Aggiungi file esistenti al progetto ?</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3145" />
+      <location filename="../Project/Project.py" line="2765" />
+      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2692" />
       <location filename="../Project/Project.py" line="2667" />
+      <location filename="../Project/Project.py" line="2637" />
+      <source>New Project</source>
+      <translation>Nuovo Progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2638" />
+      <source>Add existing files to the project?</source>
+      <translation>Aggiungi file esistenti al progetto ?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3146" />
+      <location filename="../Project/Project.py" line="2668" />
       <source>Select Version Control System</source>
       <translation>Selezione il Sistema di Controllo della Versione (VCS)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2765" />
-      <location filename="../Project/Project.py" line="2692" />
+      <location filename="../Project/Project.py" line="2766" />
+      <location filename="../Project/Project.py" line="2693" />
       <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="4082" />
-      <location filename="../Project/Project.py" line="2707" />
+      <location filename="../Project/Project.py" line="4085" />
+      <location filename="../Project/Project.py" line="2708" />
       <source>New project</source>
       <translation>Nuovo progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2708" />
+      <location filename="../Project/Project.py" line="2709" />
       <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="2741" />
-      <location filename="../Project/Project.py" line="2729" />
+      <location filename="../Project/Project.py" line="2742" />
+      <location filename="../Project/Project.py" line="2730" />
       <source>None</source>
       <translation>Nessuno</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2737" />
       <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="2848" />
-      <source>Translation Pattern</source>
-      <translation>Pattern di traduzione</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2849" />
+      <source>Translation Pattern</source>
+      <translation>Pattern di traduzione</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2850" />
       <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="4102" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="4105" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Open project</source>
       <translation>Apri progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3096" />
+      <location filename="../Project/Project.py" line="3097" />
       <source>Project Files (*.epj);;XML Project Files (*.e4p)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="3298" />
+      <location filename="../Project/Project.py" line="3288" />
+      <source>Project Files (*.epj)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="3296" />
-      <location filename="../Project/Project.py" line="3286" />
-      <source>Project Files (*.epj)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3294" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3310" />
+      <location filename="../Project/Project.py" line="3312" />
       <source>Save File</source>
       <translation>Salva file</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3349" />
+      <location filename="../Project/Project.py" line="3351" />
       <source>Close Project</source>
       <translation>Chiudi progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3350" />
+      <location filename="../Project/Project.py" line="3352" />
       <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="3538" />
-      <location filename="../Project/Project.py" line="3504" />
+      <location filename="../Project/Project.py" line="3541" />
+      <location filename="../Project/Project.py" line="3507" />
       <source>Syntax errors detected</source>
       <translation>Errore di sintassi rilevato</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="3539" />
-      <location filename="../Project/Project.py" line="3505" />
+      <location filename="../Project/Project.py" line="3542" />
+      <location filename="../Project/Project.py" line="3508" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Il progetto contiene %n file con errori di sintassi.</numerusform>
@@ -56591,1151 +56592,1171 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4084" />
+      <location filename="../Project/Project.py" line="4087" />
       <source>&amp;New...</source>
       <translation>&amp;Nuovo...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4090" />
+      <location filename="../Project/Project.py" line="4093" />
       <source>Generate a new project</source>
       <translation>Genera un nuovo progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4092" />
+      <location filename="../Project/Project.py" line="4095" />
       <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="4104" />
+      <location filename="../Project/Project.py" line="4107" />
       <source>&amp;Open...</source>
       <translation>&amp;Apri...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4110" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>Open an existing project</source>
       <translation>Apri un progetto esistente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4115" />
       <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="4118" />
+      <location filename="../Project/Project.py" line="4121" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4123" />
+      <source>&amp;Reload</source>
+      <translation type="unfinished">&amp;Ricarica</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4129" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4131" />
+      <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="4137" />
       <source>Close project</source>
       <translation>Chiudi progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4120" />
+      <location filename="../Project/Project.py" line="4139" />
       <source>&amp;Close</source>
       <translation>&amp;Chiudi</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4126" />
+      <location filename="../Project/Project.py" line="4145" />
       <source>Close the current project</source>
       <translation>Chiudi il progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4128" />
+      <location filename="../Project/Project.py" line="4147" />
       <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="4134" />
+      <location filename="../Project/Project.py" line="4153" />
       <source>Save project</source>
       <translation>Salva progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4410" />
-      <location filename="../Project/Project.py" line="4136" />
+      <location filename="../Project/Project.py" line="4429" />
+      <location filename="../Project/Project.py" line="4155" />
       <source>&amp;Save</source>
       <translation>&amp;Salva</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4142" />
+      <location filename="../Project/Project.py" line="4161" />
       <source>Save the current project</source>
       <translation>Salva il progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4144" />
+      <location filename="../Project/Project.py" line="4163" />
       <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="4150" />
+      <location filename="../Project/Project.py" line="4169" />
       <source>Save project as</source>
       <translation>Salva progetto come</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4152" />
+      <location filename="../Project/Project.py" line="4171" />
       <source>Save &amp;as...</source>
       <translation>S&amp;alva come...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4158" />
-      <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="4160" />
-      <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="4175" />
-      <source>Add files to project</source>
-      <translation>Aggiungi file al progetto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4177" />
-      <source>Add &amp;files...</source>
-      <translation>Aggiungi &amp;files...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4183" />
-      <source>Add files to the current project</source>
-      <translation>Aggiungi file al progetto corrente</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4185" />
-      <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>
+      <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="4179" />
+      <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="4194" />
+      <source>Add files to project</source>
+      <translation>Aggiungi file al progetto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4196" />
+      <source>Add &amp;files...</source>
+      <translation>Aggiungi &amp;files...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4202" />
+      <source>Add files to the current project</source>
+      <translation>Aggiungi file al progetto corrente</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4204" />
+      <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="4215" />
       <source>Add directory to project</source>
       <translation>Aggiungi directory al progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4198" />
+      <location filename="../Project/Project.py" line="4217" />
       <source>Add directory...</source>
       <translation>Aggiungi directory...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4205" />
+      <location filename="../Project/Project.py" line="4224" />
       <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="4208" />
-      <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="4218" />
-      <source>Add translation to project</source>
-      <translation>Aggiungi le traduzioni al progetto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4220" />
-      <source>Add &amp;translation...</source>
-      <translation>Aggiungi &amp;traduzione...</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4227" />
+      <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="4237" />
+      <source>Add translation to project</source>
+      <translation>Aggiungi le traduzioni al progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4239" />
+      <source>Add &amp;translation...</source>
+      <translation>Aggiungi &amp;traduzione...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4246" />
       <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="4230" />
-      <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="4240" />
-      <source>Search new files</source>
-      <translation>Cerca nuovi file</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4241" />
-      <source>Searc&amp;h new files...</source>
-      <translation>Cerca &amp;nuovi file...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4247" />
-      <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="4249" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
+      <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="4259" />
+      <source>Search new files</source>
+      <translation>Cerca nuovi file</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4260" />
+      <source>Searc&amp;h new files...</source>
+      <translation>Cerca &amp;nuovi file...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4266" />
+      <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="4268" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4279" />
       <source>Search Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4261" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4262" />
-      <source>Alt+Ctrl+P</source>
-      <comment>Project|Search Project File</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4267" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4269" />
-      <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="4278" />
-      <source>Project properties</source>
-      <translation>Proprietà del progetto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4280" />
-      <source>&amp;Properties...</source>
-      <translation>&amp;Proprietà...</translation>
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4281" />
+      <source>Alt+Ctrl+P</source>
+      <comment>Project|Search Project File</comment>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4286" />
-      <source>Show the project properties</source>
-      <translation>Mostra le proprietà del progetto</translation>
+      <source>Search for a file in the project list of files.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4288" />
-      <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>
+      <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="4297" />
-      <source>User project properties</source>
-      <translation>Proprietà utente del progetto</translation>
+      <source>Project properties</source>
+      <translation>Proprietà del progetto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4299" />
+      <source>&amp;Properties...</source>
+      <translation>&amp;Proprietà...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4305" />
+      <source>Show the project properties</source>
+      <translation>Mostra le proprietà del progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4307" />
+      <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="4316" />
+      <source>User project properties</source>
+      <translation>Proprietà utente del progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4318" />
       <source>&amp;User Properties...</source>
       <translation>Proprietà &amp;utente...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4306" />
+      <location filename="../Project/Project.py" line="4325" />
       <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="4309" />
+      <location filename="../Project/Project.py" line="4328" />
       <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="4319" />
+      <location filename="../Project/Project.py" line="4338" />
       <source>Filetype Associations</source>
       <translation>Associazione tipi file</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4320" />
+      <location filename="../Project/Project.py" line="4339" />
       <source>Filetype Associations...</source>
       <translation>Associazione tipi file...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4327" />
+      <location filename="../Project/Project.py" line="4346" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4330" />
+      <location filename="../Project/Project.py" line="4349" />
       <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="4343" />
+      <location filename="../Project/Project.py" line="4362" />
       <source>Lexer Associations</source>
       <translation>Associazioni analizzatore lessicale</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4344" />
+      <location filename="../Project/Project.py" line="4363" />
       <source>Lexer Associations...</source>
       <translation>Associazioni analizzatore lessicale...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4351" />
+      <location filename="../Project/Project.py" line="4370" />
       <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="4354" />
-      <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="4372" />
-      <source>Debugger Properties</source>
-      <translation>Proprietà Debugger</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4373" />
-      <source>Debugger &amp;Properties...</source>
-      <translation>&amp;Proprietà Debugger...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4379" />
-      <source>Show the debugger properties</source>
-      <translation>Mostra le proprietàd el debugger</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4381" />
-      <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>
+      <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="4391" />
-      <source>Load</source>
-      <translation>Carica</translation>
+      <source>Debugger Properties</source>
+      <translation>Proprietà Debugger</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4392" />
-      <source>&amp;Load</source>
-      <translation>&amp;Carica</translation>
+      <source>Debugger &amp;Properties...</source>
+      <translation>&amp;Proprietà Debugger...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4398" />
-      <source>Load the debugger properties</source>
-      <translation>Carica le proprietàd el debugger</translation>
+      <source>Show the debugger properties</source>
+      <translation>Mostra le proprietàd el debugger</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4400" />
+      <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="4410" />
+      <source>Load</source>
+      <translation>Carica</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4411" />
+      <source>&amp;Load</source>
+      <translation>&amp;Carica</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4417" />
+      <source>Load the debugger properties</source>
+      <translation>Carica le proprietàd el debugger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4419" />
       <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="4409" />
-      <source>Save</source>
-      <translation>Salva</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4416" />
-      <source>Save the debugger properties</source>
-      <translation>Salva le proprietà del debugger</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4418" />
-      <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="4427" />
-      <source>Delete</source>
-      <translation>Cancella</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4428" />
-      <source>&amp;Delete</source>
-      <translation>&amp;Cancella</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4434" />
-      <source>Delete the debugger properties</source>
-      <translation>Cancella le proprietà del debugger</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4436" />
-      <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>
+      <source>Save</source>
+      <translation>Salva</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4435" />
+      <source>Save the debugger properties</source>
+      <translation>Salva le proprietà del debugger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4437" />
+      <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="4446" />
-      <source>Reset</source>
-      <translation>Resetta</translation>
+      <source>Delete</source>
+      <translation>Cancella</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4447" />
-      <source>&amp;Reset</source>
-      <translation>&amp;Resetta</translation>
+      <source>&amp;Delete</source>
+      <translation>&amp;Cancella</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4453" />
-      <source>Reset the debugger properties</source>
-      <translation>Resetta le proprietà del debugger</translation>
+      <source>Delete the debugger properties</source>
+      <translation>Cancella le proprietà del debugger</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4455" />
+      <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="4465" />
+      <source>Reset</source>
+      <translation>Resetta</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4466" />
+      <source>&amp;Reset</source>
+      <translation>&amp;Resetta</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4472" />
+      <source>Reset the debugger properties</source>
+      <translation>Resetta le proprietà del debugger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4474" />
       <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="4471" />
-      <location filename="../Project/Project.py" line="4470" />
+      <location filename="../Project/Project.py" line="4490" />
+      <location filename="../Project/Project.py" line="4489" />
       <source>Load session</source>
       <translation>Carica sessione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4477" />
+      <location filename="../Project/Project.py" line="4496" />
       <source>Load the projects session file.</source>
       <translation>Carica il file di sessione del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4479" />
+      <location filename="../Project/Project.py" line="4498" />
       <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="4495" />
-      <location filename="../Project/Project.py" line="4494" />
+      <location filename="../Project/Project.py" line="4514" />
+      <location filename="../Project/Project.py" line="4513" />
       <source>Save session</source>
       <translation>Salva sessione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4501" />
+      <location filename="../Project/Project.py" line="4520" />
       <source>Save the projects session file.</source>
       <translation>Salva il file sessione del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4503" />
+      <location filename="../Project/Project.py" line="4522" />
       <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="4519" />
-      <location filename="../Project/Project.py" line="4518" />
+      <location filename="../Project/Project.py" line="4538" />
+      <location filename="../Project/Project.py" line="4537" />
       <source>Delete session</source>
       <translation>Cancella sessione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4525" />
+      <location filename="../Project/Project.py" line="4544" />
       <source>Delete the projects session file.</source>
       <translation>Cancella il file di sessione del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4527" />
+      <location filename="../Project/Project.py" line="4546" />
       <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="4542" />
+      <location filename="../Project/Project.py" line="4561" />
       <source>Code Metrics</source>
       <translation>Statistiche codice</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4543" />
+      <location filename="../Project/Project.py" line="4562" />
       <source>&amp;Code Metrics...</source>
       <translation>Statistiche &amp;codice...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4550" />
+      <location filename="../Project/Project.py" line="4569" />
       <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="4553" />
+      <location filename="../Project/Project.py" line="4572" />
       <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="4563" />
+      <location filename="../Project/Project.py" line="4582" />
       <source>Python Code Coverage</source>
       <translation>Analisi codice Python</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4564" />
+      <location filename="../Project/Project.py" line="4583" />
       <source>Code Co&amp;verage...</source>
       <translation>A&amp;nalisi codice...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4571" />
+      <location filename="../Project/Project.py" line="4590" />
       <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="4574" />
+      <location filename="../Project/Project.py" line="4593" />
       <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="5894" />
-      <location filename="../Project/Project.py" line="5881" />
-      <location filename="../Project/Project.py" line="4584" />
+      <location filename="../Project/Project.py" line="5914" />
+      <location filename="../Project/Project.py" line="5901" />
+      <location filename="../Project/Project.py" line="4603" />
       <source>Profile Data</source>
       <translation>Profilazione dati</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4585" />
+      <location filename="../Project/Project.py" line="4604" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Profilazione dati...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4592" />
-      <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="4595" />
-      <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="5946" />
-      <location filename="../Project/Project.py" line="4610" />
-      <source>Application Diagram</source>
-      <translation>Diagrammi dell'applicazione</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4611" />
-      <source>&amp;Application Diagram...</source>
-      <translation>Diagramma dell' &amp;Applicazione...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4618" />
-      <source>Show a diagram of the project.</source>
-      <translation>Mostra un diagramma del progetto.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4621" />
-      <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>
+      <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="4614" />
+      <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="5966" />
+      <location filename="../Project/Project.py" line="4629" />
+      <source>Application Diagram</source>
+      <translation>Diagrammi dell'applicazione</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4630" />
-      <source>Load Diagram</source>
-      <translation type="unfinished">Carico Diagramma</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4631" />
-      <source>&amp;Load Diagram...</source>
-      <translation type="unfinished" />
+      <source>&amp;Application Diagram...</source>
+      <translation>Diagramma dell' &amp;Applicazione...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4637" />
-      <source>Load a diagram from file.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4639" />
-      <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="6131" />
-      <location filename="../Project/Project.py" line="6080" />
-      <location filename="../Project/Project.py" line="4654" />
-      <source>Create Package List</source>
-      <translation>Crea lista del package</translation>
+      <source>Show a diagram of the project.</source>
+      <translation>Mostra un diagramma del progetto.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4640" />
+      <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="4649" />
+      <source>Load Diagram</source>
+      <translation type="unfinished">Carico Diagramma</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4650" />
+      <source>&amp;Load Diagram...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4656" />
+      <source>Load a diagram from file.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4658" />
+      <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="6151" />
+      <location filename="../Project/Project.py" line="6100" />
+      <location filename="../Project/Project.py" line="4673" />
+      <source>Create Package List</source>
+      <translation>Crea lista del package</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4675" />
       <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="4663" />
+      <location filename="../Project/Project.py" line="4682" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4666" />
-      <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="6200" />
-      <location filename="../Project/Project.py" line="4677" />
-      <source>Create Plugin Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4679" />
-      <source>Create Plugin &amp;Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4685" />
+      <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="6220" />
+      <location filename="../Project/Project.py" line="4696" />
+      <source>Create Plugin Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4698" />
+      <source>Create Plugin &amp;Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4704" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4687" />
+      <location filename="../Project/Project.py" line="4706" />
       <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="4699" />
+      <location filename="../Project/Project.py" line="4718" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4701" />
+      <location filename="../Project/Project.py" line="4720" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4708" />
+      <location filename="../Project/Project.py" line="4727" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4711" />
+      <location filename="../Project/Project.py" line="4730" />
       <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="6621" />
-      <location filename="../Project/Project.py" line="6592" />
-      <location filename="../Project/Project.py" line="6543" />
-      <location filename="../Project/Project.py" line="4730" />
+      <location filename="../Project/Project.py" line="6641" />
+      <location filename="../Project/Project.py" line="6612" />
+      <location filename="../Project/Project.py" line="6563" />
+      <location filename="../Project/Project.py" line="4749" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4731" />
-      <source>&amp;Execute Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4737" />
-      <source>Perform a 'make' run.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4739" />
-      <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="6598" />
-      <location filename="../Project/Project.py" line="4749" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4750" />
+      <source>&amp;Execute Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4756" />
+      <source>Perform a 'make' run.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4758" />
+      <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="6618" />
+      <location filename="../Project/Project.py" line="4768" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4769" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4757" />
+      <location filename="../Project/Project.py" line="4776" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4760" />
-      <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="4778" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4779" />
+      <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="4797" />
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4798" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4786" />
+      <location filename="../Project/Project.py" line="4805" />
       <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4789" />
+      <location filename="../Project/Project.py" line="4808" />
       <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="4806" />
+      <location filename="../Project/Project.py" line="4825" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4826" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4813" />
+      <location filename="../Project/Project.py" line="4832" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4815" />
+      <location filename="../Project/Project.py" line="4834" />
       <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="4827" />
+      <location filename="../Project/Project.py" line="4846" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4847" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4835" />
+      <location filename="../Project/Project.py" line="4854" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4838" />
+      <location filename="../Project/Project.py" line="4857" />
       <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="4850" />
+      <location filename="../Project/Project.py" line="4869" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4851" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4858" />
-      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4863" />
-      <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="4876" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4877" />
+      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4882" />
+      <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="4895" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4884" />
+      <location filename="../Project/Project.py" line="4903" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4890" />
+      <location filename="../Project/Project.py" line="4909" />
       <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="5055" />
-      <location filename="../Project/Project.py" line="5005" />
-      <location filename="../Project/Project.py" line="5004" />
-      <location filename="../Project/Project.py" line="4904" />
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="5074" />
+      <location filename="../Project/Project.py" line="5024" />
+      <location filename="../Project/Project.py" line="5023" />
+      <location filename="../Project/Project.py" line="4923" />
+      <location filename="../Project/Project.py" line="4922" />
       <source>Configure</source>
       <translation type="unfinished">Configura</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4930" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4916" />
+      <location filename="../Project/Project.py" line="4935" />
       <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="4932" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4933" />
+      <location filename="../Project/Project.py" line="4952" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4939" />
+      <location filename="../Project/Project.py" line="4958" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4960" />
       <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="4954" />
-      <location filename="../Project/Project.py" line="4953" />
+      <location filename="../Project/Project.py" line="4973" />
+      <location filename="../Project/Project.py" line="4972" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4961" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4983" />
       <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="4978" />
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4997" />
+      <location filename="../Project/Project.py" line="4996" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4985" />
+      <location filename="../Project/Project.py" line="5004" />
       <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="4991" />
+      <location filename="../Project/Project.py" line="5010" />
       <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="5012" />
+      <location filename="../Project/Project.py" line="5031" />
       <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="5018" />
+      <location filename="../Project/Project.py" line="5037" />
       <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="5034" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5035" />
+      <location filename="../Project/Project.py" line="5054" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5042" />
+      <location filename="../Project/Project.py" line="5061" />
       <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5045" />
+      <location filename="../Project/Project.py" line="5064" />
       <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="5056" />
+      <location filename="../Project/Project.py" line="5075" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5063" />
+      <location filename="../Project/Project.py" line="5082" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
-      <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="5076" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5077" />
-      <source>&amp;Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5083" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5085" />
-      <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="5097" />
-      <source>Recreate</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5098" />
-      <source>&amp;Recreate</source>
+      <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="5095" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5096" />
+      <source>&amp;Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5102" />
+      <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5104" />
+      <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="5116" />
+      <source>Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5117" />
+      <source>&amp;Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5123" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5106" />
+      <location filename="../Project/Project.py" line="5125" />
       <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="5135" />
-      <source>&amp;Project</source>
-      <translation>&amp;Progetto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5136" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Apri un progetto &amp;recente</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5137" />
-      <source>Session</source>
-      <translation>Sessione</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5138" />
-      <source>Debugger</source>
-      <translation>Debugger</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5139" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5141" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5142" />
-      <source>&amp;Version Control</source>
-      <translation>Controllo di &amp;Versione</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5146" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Controlla</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5148" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5150" />
-      <source>Sho&amp;w</source>
-      <translation>&amp;Mostra</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagrammi</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Pac&amp;kagers</source>
-      <translation>Pac&amp;kagers</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5153" />
-      <source>Source &amp;Documentation</source>
-      <translation>&amp;Documentazione sorgenti</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5155" />
-      <source>Make</source>
-      <translation type="unfinished" />
+      <source>&amp;Project</source>
+      <translation>&amp;Progetto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5156" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Apri un progetto &amp;recente</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5157" />
+      <source>Session</source>
+      <translation>Sessione</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5158" />
+      <source>Debugger</source>
+      <translation>Debugger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5159" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5161" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5162" />
+      <source>&amp;Version Control</source>
+      <translation>Controllo di &amp;Versione</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5166" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Controlla</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5168" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5170" />
+      <source>Sho&amp;w</source>
+      <translation>&amp;Mostra</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5171" />
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagrammi</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Pac&amp;kagers</source>
+      <translation>Pac&amp;kagers</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
+      <source>Source &amp;Documentation</source>
+      <translation>&amp;Documentazione sorgenti</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5175" />
+      <source>Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5176" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5317" />
-      <location filename="../Project/Project.py" line="5314" />
+      <location filename="../Project/Project.py" line="5337" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>Project</source>
       <translation>Progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5378" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Clear</source>
       <translation>Pulis&amp;ci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5557" />
       <source>Search New Files</source>
       <translation>Cerca Nuovi File</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5558" />
       <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="5687" />
-      <location filename="../Project/Project.py" line="5674" />
+      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5694" />
       <source>Version Control System</source>
       <translation>Version Control System</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5695" />
       <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="5688" />
+      <location filename="../Project/Project.py" line="5708" />
       <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="5836" />
+      <location filename="../Project/Project.py" line="5856" />
       <source>Coverage Data</source>
       <translation>Dati Analisi</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5882" />
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5902" />
+      <location filename="../Project/Project.py" line="5857" />
       <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="5849" />
+      <location filename="../Project/Project.py" line="5869" />
       <source>Code Coverage</source>
       <translation>Analisi codice</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5850" />
+      <location filename="../Project/Project.py" line="5870" />
       <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="5895" />
+      <location filename="../Project/Project.py" line="5915" />
       <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="5947" />
+      <location filename="../Project/Project.py" line="5967" />
       <source>Include module names?</source>
       <translation>Includi i nomi dei moduli ?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6081" />
+      <location filename="../Project/Project.py" line="6101" />
       <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="6132" />
+      <location filename="../Project/Project.py" line="6152" />
       <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="6421" />
-      <location filename="../Project/Project.py" line="6379" />
-      <location filename="../Project/Project.py" line="6333" />
-      <location filename="../Project/Project.py" line="6322" />
-      <location filename="../Project/Project.py" line="6304" />
-      <location filename="../Project/Project.py" line="6271" />
-      <location filename="../Project/Project.py" line="6241" />
-      <location filename="../Project/Project.py" line="6213" />
-      <location filename="../Project/Project.py" line="6183" />
-      <location filename="../Project/Project.py" line="6169" />
-      <location filename="../Project/Project.py" line="6152" />
+      <location filename="../Project/Project.py" line="6441" />
+      <location filename="../Project/Project.py" line="6399" />
+      <location filename="../Project/Project.py" line="6353" />
+      <location filename="../Project/Project.py" line="6342" />
+      <location filename="../Project/Project.py" line="6324" />
+      <location filename="../Project/Project.py" line="6291" />
+      <location filename="../Project/Project.py" line="6261" />
+      <location filename="../Project/Project.py" line="6233" />
+      <location filename="../Project/Project.py" line="6203" />
+      <location filename="../Project/Project.py" line="6189" />
+      <location filename="../Project/Project.py" line="6172" />
       <source>Create Plugin Archive</source>
       <translation>Crea un archivio per il plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6153" />
+      <location filename="../Project/Project.py" line="6173" />
       <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="6170" />
+      <location filename="../Project/Project.py" line="6190" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6184" />
+      <location filename="../Project/Project.py" line="6204" />
       <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="6192" />
+      <location filename="../Project/Project.py" line="6212" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6193" />
+      <location filename="../Project/Project.py" line="6213" />
       <source>Abort</source>
       <translation type="unfinished">Termina</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6196" />
+      <location filename="../Project/Project.py" line="6216" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6214" />
+      <location filename="../Project/Project.py" line="6234" />
       <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="6242" />
+      <location filename="../Project/Project.py" line="6262" />
       <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="6272" />
+      <location filename="../Project/Project.py" line="6292" />
       <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="6305" />
+      <location filename="../Project/Project.py" line="6325" />
       <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="6323" />
+      <location filename="../Project/Project.py" line="6343" />
       <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="6334" />
+      <location filename="../Project/Project.py" line="6354" />
       <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="6380" />
+      <location filename="../Project/Project.py" line="6400" />
       <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="6422" />
+      <location filename="../Project/Project.py" line="6442" />
       <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="6544" />
+      <location filename="../Project/Project.py" line="6564" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6593" />
+      <location filename="../Project/Project.py" line="6613" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6601" />
+      <location filename="../Project/Project.py" line="6621" />
       <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="6606" />
+      <location filename="../Project/Project.py" line="6626" />
       <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="6622" />
+      <location filename="../Project/Project.py" line="6642" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -57987,22 +58008,22 @@
   <context>
     <name>ProjectFile</name>
     <message>
-      <location filename="../Project/ProjectFile.py" line="109" />
+      <location filename="../Project/ProjectFile.py" line="108" />
       <source>Save Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFile.py" line="110" />
+      <location filename="../Project/ProjectFile.py" line="109" />
       <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectFile.py" line="134" />
+      <source>Read Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectFile.py" line="135" />
-      <source>Read Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectFile.py" line="136" />
       <source>&lt;p&gt;The project 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>
@@ -59878,265 +59899,265 @@
   <context>
     <name>ProjectTranslationsBrowser</name>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="99" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="76" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="74" />
       <source>Translations</source>
       <translation>Traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="79" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="77" />
       <source>&lt;b&gt;Project Translations Browser&lt;/b&gt;&lt;p&gt;This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Browser delle traduzioni del progetto&lt;/b&gt;&lt;p&gt;Consente di vedere facilmente tutte le traduzioni contenute nel progetto corrente. Diverse azioni posso essere eseguite dal menù contestuale.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="95" />
       <source>Translation Files ({0})</source>
       <translation type="unfinished">File Traduzioni ({0})</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="98" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="96" />
       <source>Translation Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="109" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="107" />
       <source>Translations Browser</source>
       <translation type="unfinished">Browser delle traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="239" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="183" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="237" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="181" />
       <source>Generate translation</source>
       <translation>Genera traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="249" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="247" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation (with obsolete)</source>
       <translation>Genera traduzioni (con deprecati)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="538" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="360" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="258" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="194" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="536" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="507" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="330" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="256" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="192" />
       <source>Generate all translations</source>
       <translation>Genera tutte le traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="513" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="369" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="267" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="198" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="545" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="511" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="367" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="196" />
       <source>Generate all translations (with obsolete)</source>
       <translation>Genera tutte le traduzioni (con deprecati)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="419" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="417" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
       <source>Open in Qt-Linguist</source>
       <translation>Apri in Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="423" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="279" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="206" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="471" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="421" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="277" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="204" />
       <source>Open in Editor</source>
       <translation>Apri con l'editor</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="286" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="284" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
       <source>Release translation</source>
       <translation>Rilascia traduzione</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="518" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="377" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="341" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="295" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="553" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="516" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="375" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="339" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="293" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="214" />
       <source>Release all translations</source>
       <translation>Rilascia tutte le traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="220" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
       <source>Preview translation</source>
       <translation>Anteprima traduzione</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="346" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="344" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Preview all translations</source>
       <translation>Anteprima tutte le traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="441" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="352" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="527" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
       <source>Extract messages</source>
       <translation>Estrai messaggi</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="469" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="275" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="273" />
       <source>Open</source>
       <translation>Apri</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="488" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="302" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="486" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="300" />
       <source>Remove from project</source>
       <translation>Rimuovi dal progetto</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="561" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="491" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="305" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="559" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="489" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
       <source>Delete</source>
       <translation>Cancella</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="384" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="309" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="307" />
       <source>Add translation...</source>
       <translation>Aggiungi traduzione...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="568" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="566" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="385" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
       <source>Add translation files...</source>
       <translation>Aggiungi file traduzione...</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="569" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="313" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Copia il path nella Clipboard</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="492" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="388" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="315" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Copia il path nella Clipboard</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="573" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="390" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Configure...</source>
       <translation>Configura...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="448" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
       <source>Generate translations</source>
       <translation>Genera traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="460" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="458" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="410" />
       <source>Generate translations (with obsolete)</source>
       <translation>Genera traduzioni (con deprecati)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="480" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="478" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="426" />
       <source>Release translations</source>
       <translation>Rilascia traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="432" />
       <source>Preview translations</source>
       <translation>Anteprima traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="835" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="833" />
       <source>Delete translation files</source>
       <translation>Cancella file della traduzione</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="836" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="834" />
       <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="1504" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1001" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="961" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1502" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="999" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="959" />
       <source>Write temporary project file</source>
       <translation>Scrivi un file progetto temporaneo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1505" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1241" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="962" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1239" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="960" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Nessun file traduzione (*.ts) selezionato.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1002" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1000" />
       <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="1240" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1123" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1111" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1238" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1121" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1109" />
       <source>Translation file generation</source>
       <translation>Generazione file traduzioni</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1112" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1110" />
       <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="1118" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1116" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1122" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1534" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1532" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1292" />
       <source>Process Generation Error</source>
       <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1337" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1295" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1335" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1293" />
       <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="1427" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1425" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1405" />
       <source>Translation file release</source>
       <translation>Rilascia file traduzione</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1406" />
       <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="1428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1426" />
       <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="1535" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1533" />
       <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>
@@ -83253,2216 +83274,2228 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="574" />
+      <location filename="../UI/UserInterface.py" line="573" />
       <source>Initializing Tools...</source>
       <translation>Inizializzazione strumenti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="585" />
+      <location filename="../UI/UserInterface.py" line="584" />
       <source>Registering Objects...</source>
       <translation>Registrazione Oggetti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="619" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Initializing Actions...</source>
       <translation>Inizializzazione Azioni...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="621" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Initializing Menus...</source>
       <translation>Inizializzazione Menù...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="623" />
+      <location filename="../UI/UserInterface.py" line="622" />
       <source>Initializing Toolbars...</source>
       <translation>Inizializzazione barre degli strumenti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="625" />
+      <location filename="../UI/UserInterface.py" line="624" />
       <source>Initializing Statusbar...</source>
       <translation>Inizializzazione barra di stato...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Single Application Server...</source>
       <translation>Inizializzazione Single Application Server...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="658" />
+      <location filename="../UI/UserInterface.py" line="657" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="661" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Activating Plugins...</source>
       <translation>Attivazione Plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="663" />
+      <location filename="../UI/UserInterface.py" line="662" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="666" />
+      <location filename="../UI/UserInterface.py" line="665" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="673" />
+      <location filename="../UI/UserInterface.py" line="672" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Ripristino toolbarmanager...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="680" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="693" />
       <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="699" />
+      <location filename="../UI/UserInterface.py" line="698" />
       <source>Reading Templates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="703" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
-      <location filename="../UI/UserInterface.py" line="1066" />
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1065" />
       <source>Left Toolbox</source>
       <translation type="unfinished">Barra degli strumenti sinistra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2224" />
-      <location filename="../UI/UserInterface.py" line="1076" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1075" />
       <source>Horizontal Toolbox</source>
       <translation>Barra dei comandi orizzontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2201" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1085" />
       <source>Right Toolbox</source>
       <translation type="unfinished">Barra degli strumenti destra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2020" />
-      <location filename="../UI/UserInterface.py" line="1279" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2019" />
+      <location filename="../UI/UserInterface.py" line="1278" />
+      <location filename="../UI/UserInterface.py" line="1095" />
       <source>Multiproject-Viewer</source>
       <translation>Multiproject-Viewer</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1997" />
+      <location filename="../UI/UserInterface.py" line="1284" />
+      <location filename="../UI/UserInterface.py" line="1101" />
+      <source>Project-Viewer</source>
+      <translation>Project-Viewer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2559" />
+      <location filename="../UI/UserInterface.py" line="2558" />
+      <location filename="../UI/UserInterface.py" line="1291" />
+      <location filename="../UI/UserInterface.py" line="1108" />
+      <source>Find/Replace In Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1298" />
+      <location filename="../UI/UserInterface.py" line="1115" />
+      <source>Find File</source>
+      <translation type="unfinished">Trova file</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1304" />
+      <location filename="../UI/UserInterface.py" line="1121" />
+      <source>VCS Status</source>
+      <translation type="unfinished">Stato VCS</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1311" />
+      <location filename="../UI/UserInterface.py" line="1128" />
+      <source>Template-Viewer</source>
+      <translation>Templates-Viewer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2085" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1135" />
+      <source>File-Browser</source>
+      <translation>File Browser</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1325" />
+      <location filename="../UI/UserInterface.py" line="1142" />
+      <source>Symbols</source>
+      <translation>Simboli</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2041" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Debug-Viewer</source>
+      <translation>Debug-Viewer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2412" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1159" />
+      <source>Code Documentation Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2628" />
+      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="1361" />
+      <location filename="../UI/UserInterface.py" line="1166" />
+      <source>Help Viewer</source>
+      <translation type="unfinished">Visualizzatore dell'Aiuto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1367" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>Plugin Repository</source>
+      <translation>Repository Plugin</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1373" />
+      <location filename="../UI/UserInterface.py" line="1178" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2440" />
+      <location filename="../UI/UserInterface.py" line="2439" />
+      <location filename="../UI/UserInterface.py" line="1378" />
+      <location filename="../UI/UserInterface.py" line="1183" />
+      <source>PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="2461" />
+      <location filename="../UI/UserInterface.py" line="1385" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Conda</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1392" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Cooperation</source>
+      <translation>Cooperazione</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2340" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
+      <source>IRC</source>
+      <translation type="unfinished">IRC</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="2483" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>MicroPython</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2063" />
+      <location filename="../UI/UserInterface.py" line="1410" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Shell</source>
+      <translation>Shell</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2129" />
+      <location filename="../UI/UserInterface.py" line="1416" />
+      <location filename="../UI/UserInterface.py" line="1219" />
+      <source>Task-Viewer</source>
+      <translation>Task-Viewer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2107" />
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1223" />
+      <source>Log-Viewer</source>
+      <translation>Log-Viewer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1429" />
+      <location filename="../UI/UserInterface.py" line="1230" />
+      <source>Numbers</source>
+      <translation>Numeri</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1815" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} - Passive Debug Mode</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1822" />
+      <location filename="../UI/UserInterface.py" line="1818" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} -{1} Passive Debug Mode</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1826" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} -{1} - {2} - Passive Debug Mode</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1850" />
+      <source>Quit</source>
+      <translation>Esci</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1852" />
+      <source>&amp;Quit</source>
+      <translation>&amp;Esci</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1853" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1858" />
+      <source>Quit the IDE</source>
+      <translation>Esci dall'IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1860" />
+      <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="1874" />
+      <location filename="../UI/UserInterface.py" line="1872" />
+      <source>Restart</source>
+      <translation type="unfinished">Riavvio</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1880" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
+      <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="1900" />
+      <location filename="../UI/UserInterface.py" line="1893" />
+      <source>Save session</source>
+      <translation>Salva sessione</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1894" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1902" />
+      <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="7649" />
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Load session</source>
+      <translation type="unfinished">Carica sessione</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1913" />
+      <source>Load session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1921" />
+      <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="1931" />
+      <source>New Window</source>
+      <translation type="unfinished">Nuova finestra</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1933" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished">Nuova &amp;Finestra</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1934" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1941" />
+      <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="1955" />
+      <location filename="../UI/UserInterface.py" line="1953" />
+      <source>Edit Profile</source>
+      <translation>Modifica profilo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
+      <source>Activate the edit view profile</source>
+      <translation>Attiva il profilo della vista di editing</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1964" />
+      <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="1977" />
+      <location filename="../UI/UserInterface.py" line="1975" />
+      <source>Debug Profile</source>
+      <translation>Profilo Debug</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1984" />
+      <source>Activate the debug view profile</source>
+      <translation>Attiva profilo Debug</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1986" />
+      <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="1998" />
-      <location filename="../UI/UserInterface.py" line="1285" />
-      <location filename="../UI/UserInterface.py" line="1102" />
-      <source>Project-Viewer</source>
-      <translation>Project-Viewer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2560" />
-      <location filename="../UI/UserInterface.py" line="2559" />
-      <location filename="../UI/UserInterface.py" line="1292" />
-      <location filename="../UI/UserInterface.py" line="1109" />
-      <source>Find/Replace In Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
-      <location filename="../UI/UserInterface.py" line="2582" />
-      <location filename="../UI/UserInterface.py" line="1299" />
-      <location filename="../UI/UserInterface.py" line="1116" />
-      <source>Find File</source>
-      <translation type="unfinished">Trova file</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1305" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>VCS Status</source>
-      <translation type="unfinished">Stato VCS</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
-      <location filename="../UI/UserInterface.py" line="1312" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Template-Viewer</source>
-      <translation>Templates-Viewer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2086" />
-      <location filename="../UI/UserInterface.py" line="1319" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>File-Browser</source>
-      <translation>File Browser</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Symbols</source>
-      <translation>Simboli</translation>
+      <source>&amp;Project-Viewer</source>
+      <translation>&amp;Project-Viewer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2005" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2008" />
+      <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="2020" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>&amp;Multiproject-Viewer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2027" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2030" />
+      <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="2042" />
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1153" />
-      <source>Debug-Viewer</source>
-      <translation>Debug-Viewer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2414" />
-      <location filename="../UI/UserInterface.py" line="2413" />
-      <location filename="../UI/UserInterface.py" line="1355" />
-      <location filename="../UI/UserInterface.py" line="1160" />
-      <source>Code Documentation Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2629" />
-      <location filename="../UI/UserInterface.py" line="2628" />
-      <location filename="../UI/UserInterface.py" line="1362" />
-      <location filename="../UI/UserInterface.py" line="1167" />
-      <source>Help Viewer</source>
-      <translation type="unfinished">Visualizzatore dell'Aiuto</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <location filename="../UI/UserInterface.py" line="2509" />
-      <location filename="../UI/UserInterface.py" line="2508" />
-      <location filename="../UI/UserInterface.py" line="1368" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Plugin Repository</source>
-      <translation>Repository Plugin</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
-      <location filename="../UI/UserInterface.py" line="2532" />
-      <location filename="../UI/UserInterface.py" line="1374" />
-      <location filename="../UI/UserInterface.py" line="1179" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2441" />
-      <location filename="../UI/UserInterface.py" line="2440" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1184" />
-      <source>PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2463" />
-      <location filename="../UI/UserInterface.py" line="2462" />
-      <location filename="../UI/UserInterface.py" line="1386" />
-      <location filename="../UI/UserInterface.py" line="1189" />
-      <source>Conda</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1393" />
-      <location filename="../UI/UserInterface.py" line="1196" />
-      <source>Cooperation</source>
-      <translation>Cooperazione</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
-      <location filename="../UI/UserInterface.py" line="1397" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>IRC</source>
-      <translation type="unfinished">IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
-      <location filename="../UI/UserInterface.py" line="2484" />
-      <location filename="../UI/UserInterface.py" line="1403" />
-      <location filename="../UI/UserInterface.py" line="1208" />
-      <source>MicroPython</source>
+      <source>&amp;Debug-Viewer</source>
+      <translation>&amp;Debug-Viewer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2049" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2052" />
+      <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="2064" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Shell</source>
-      <translation>Shell</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2130" />
-      <location filename="../UI/UserInterface.py" line="1417" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>Task-Viewer</source>
-      <translation>Task-Viewer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2108" />
-      <location filename="../UI/UserInterface.py" line="1423" />
-      <location filename="../UI/UserInterface.py" line="1224" />
-      <source>Log-Viewer</source>
-      <translation>Log-Viewer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1430" />
-      <location filename="../UI/UserInterface.py" line="1231" />
-      <source>Numbers</source>
-      <translation>Numeri</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1816" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} - Passive Debug Mode</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1823" />
-      <location filename="../UI/UserInterface.py" line="1819" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} -{1} Passive Debug Mode</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} -{1} - {2} - Passive Debug Mode</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1851" />
-      <source>Quit</source>
-      <translation>Esci</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <source>&amp;Quit</source>
-      <translation>&amp;Esci</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1854" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>Quit the IDE</source>
-      <translation>Esci dall'IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1861" />
-      <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="1875" />
-      <location filename="../UI/UserInterface.py" line="1873" />
-      <source>Restart</source>
-      <translation type="unfinished">Riavvio</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1881" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1883" />
-      <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="1901" />
-      <location filename="../UI/UserInterface.py" line="1894" />
-      <source>Save session</source>
-      <translation>Salva sessione</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1903" />
-      <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="7650" />
-      <location filename="../UI/UserInterface.py" line="1920" />
-      <location filename="../UI/UserInterface.py" line="1913" />
-      <source>Load session</source>
-      <translation type="unfinished">Carica sessione</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1914" />
-      <source>Load session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1922" />
-      <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="1932" />
-      <source>New Window</source>
-      <translation type="unfinished">Nuova finestra</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1934" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished">Nuova &amp;Finestra</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1940" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1942" />
-      <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="1956" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <source>Edit Profile</source>
-      <translation>Modifica profilo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1963" />
-      <source>Activate the edit view profile</source>
-      <translation>Attiva il profilo della vista di editing</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1965" />
-      <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="1978" />
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>Debug Profile</source>
-      <translation>Profilo Debug</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1985" />
-      <source>Activate the debug view profile</source>
-      <translation>Attiva profilo Debug</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1987" />
-      <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="1999" />
-      <source>&amp;Project-Viewer</source>
-      <translation>&amp;Project-Viewer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2000" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2006" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2009" />
-      <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="2021" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>&amp;Multiproject-Viewer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2028" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2031" />
-      <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="2043" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>&amp;Debug-Viewer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2050" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2053" />
-      <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" />
+      <source>&amp;Shell</source>
+      <translation>&amp;Shell</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&amp;Shell</source>
-      <translation>&amp;Shell</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2072" />
+      <location filename="../UI/UserInterface.py" line="2071" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2075" />
+      <location filename="../UI/UserInterface.py" line="2074" />
       <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="2086" />
+      <source>&amp;File-Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&amp;File-Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2094" />
+      <location filename="../UI/UserInterface.py" line="2093" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2097" />
+      <location filename="../UI/UserInterface.py" line="2096" />
       <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="2108" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2109" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2116" />
+      <location filename="../UI/UserInterface.py" line="2115" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2119" />
+      <location filename="../UI/UserInterface.py" line="2118" />
       <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="2130" />
+      <source>&amp;Task-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&amp;Task-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2138" />
+      <location filename="../UI/UserInterface.py" line="2137" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2141" />
+      <location filename="../UI/UserInterface.py" line="2140" />
       <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="2153" />
+      <source>Templ&amp;ate-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2154" />
-      <source>Templ&amp;ate-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2161" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <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="2179" />
+      <location filename="../UI/UserInterface.py" line="2178" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2186" />
+      <location filename="../UI/UserInterface.py" line="2185" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2187" />
       <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="2202" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2209" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2211" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <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="2225" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Toolbox &amp;Orizzontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2232" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation>Abilita/Disabilita una finestra la toolbox orizzontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2234" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <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="2246" />
+      <source>Left Sidebar</source>
+      <translation>Barra laterale sinistra</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2247" />
-      <source>Left Sidebar</source>
-      <translation>Barra laterale sinistra</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
       <source>&amp;Left Sidebar</source>
       <translation>Barra &amp;laterale sinistra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2255" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <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="2257" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2269" />
+      <source>Right Sidebar</source>
+      <translation type="unfinished">Barra laterale destra</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2270" />
-      <source>Right Sidebar</source>
-      <translation type="unfinished">Barra laterale destra</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2271" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2278" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2280" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2292" />
+      <source>Bottom Sidebar</source>
+      <translation>Barra in basso</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2293" />
-      <source>Bottom Sidebar</source>
-      <translation>Barra in basso</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2294" />
       <source>&amp;Bottom Sidebar</source>
       <translation>Barra in &amp;basso</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2301" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <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="2303" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <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="2315" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2316" />
-      <source>Cooperation-Viewer</source>
+      <source>Co&amp;operation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2317" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2324" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2326" />
       <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="2341" />
+      <source>&amp;IRC</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2342" />
-      <source>&amp;IRC</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2349" />
+      <location filename="../UI/UserInterface.py" line="2348" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2352" />
+      <location filename="../UI/UserInterface.py" line="2351" />
       <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="2362" />
+      <source>Symbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2363" />
-      <source>Symbols-Viewer</source>
+      <source>S&amp;ymbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2364" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2371" />
+      <location filename="../UI/UserInterface.py" line="2370" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2374" />
+      <location filename="../UI/UserInterface.py" line="2373" />
       <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="2387" />
+      <source>Numbers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2388" />
-      <source>Numbers-Viewer</source>
+      <source>Num&amp;bers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2389" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2396" />
+      <location filename="../UI/UserInterface.py" line="2395" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2399" />
+      <location filename="../UI/UserInterface.py" line="2398" />
       <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="2415" />
+      <location filename="../UI/UserInterface.py" line="2414" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2421" />
+      <location filename="../UI/UserInterface.py" line="2420" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2426" />
+      <location filename="../UI/UserInterface.py" line="2425" />
       <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="2442" />
+      <location filename="../UI/UserInterface.py" line="2441" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
+      <location filename="../UI/UserInterface.py" line="2447" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2451" />
+      <location filename="../UI/UserInterface.py" line="2450" />
       <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="2464" />
+      <location filename="../UI/UserInterface.py" line="2463" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2470" />
+      <location filename="../UI/UserInterface.py" line="2469" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2473" />
+      <location filename="../UI/UserInterface.py" line="2472" />
       <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="2486" />
+      <location filename="../UI/UserInterface.py" line="2485" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2492" />
+      <location filename="../UI/UserInterface.py" line="2491" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2495" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <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="2510" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2516" />
+      <location filename="../UI/UserInterface.py" line="2515" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2534" />
+      <location filename="../UI/UserInterface.py" line="2533" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2540" />
+      <location filename="../UI/UserInterface.py" line="2539" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
       <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="2561" />
+      <location filename="../UI/UserInterface.py" line="2560" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
+      <location filename="../UI/UserInterface.py" line="2566" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2570" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <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="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2590" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2593" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <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="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <source>VCS Status List</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
-      <location filename="../UI/UserInterface.py" line="2606" />
-      <source>VCS Status List</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2614" />
+      <location filename="../UI/UserInterface.py" line="2613" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <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="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2636" />
+      <location filename="../UI/UserInterface.py" line="2635" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2639" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <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="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
       <source>What's This?</source>
       <translation>Cos'è questo ?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <source>&amp;What's This?</source>
+      <translation>C&amp;os'è Questo ?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2654" />
-      <source>&amp;What's This?</source>
-      <translation>C&amp;os'è Questo ?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2660" />
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Context sensitive help</source>
       <translation>Help sensibile al contesto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2662" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <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="2675" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>Helpviewer</source>
       <translation>Visualizzatore Help</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2676" />
+      <source>&amp;Helpviewer...</source>
+      <translation>Visualizzatore &amp;Help...</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
-      <source>&amp;Helpviewer...</source>
-      <translation>Visualizzatore &amp;Help...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2678" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2683" />
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Open the helpviewer window</source>
       <translation>Apri il visualizzatore di help</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2685" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <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="2704" />
+      <source>Show Versions</source>
+      <translation>Mostra versione</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2705" />
-      <source>Show Versions</source>
-      <translation>Mostra versione</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Show &amp;Versions</source>
       <translation>Mostra &amp;Versione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2711" />
       <source>Display version information</source>
       <translation>Mostra informazioni sulla versione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2714" />
+      <location filename="../UI/UserInterface.py" line="2713" />
       <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="2729" />
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>Show Error Log</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2722" />
       <source>Show Error &amp;Log...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2730" />
       <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="2739" />
+      <source>Show Install Info</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2740" />
-      <source>Show Install Info</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2747" />
+      <location filename="../UI/UserInterface.py" line="2746" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2749" />
+      <location filename="../UI/UserInterface.py" line="2748" />
       <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="4633" />
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="4632" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report Bug</source>
       <translation>Segnala Bug</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report &amp;Bug...</source>
       <translation>Segnala &amp;Bug...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
+      <location filename="../UI/UserInterface.py" line="2760" />
       <source>Report a bug</source>
       <translation>Segnala un bug</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <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="2770" />
+      <source>Request Feature</source>
+      <translation>Richiedi funzionalità</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2771" />
-      <source>Request Feature</source>
-      <translation>Richiedi funzionalità</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2772" />
       <source>Request &amp;Feature...</source>
       <translation>Richiedi &amp;funzionalità...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2777" />
       <source>Send a feature request</source>
       <translation>Invia una richiesta di funzionalità</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2780" />
+      <location filename="../UI/UserInterface.py" line="2779" />
       <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="4091" />
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2792" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
+      <location filename="../UI/UserInterface.py" line="2798" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2801" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <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="2812" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2820" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2821" />
       <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="2832" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2833" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2844" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <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="2854" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
+      <location filename="../UI/UserInterface.py" line="2855" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>Run tests of the current script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2864" />
+      <location filename="../UI/UserInterface.py" line="2863" />
       <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="2873" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2881" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <source>Run tests of the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <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="2905" />
+      <location filename="../UI/UserInterface.py" line="2904" />
       <source>Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2907" />
+      <location filename="../UI/UserInterface.py" line="2906" />
       <source>Qt-&amp;Designer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2912" />
       <source>Start Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2915" />
+      <location filename="../UI/UserInterface.py" line="2914" />
       <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="2935" />
+      <location filename="../UI/UserInterface.py" line="2934" />
       <source>Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2937" />
+      <location filename="../UI/UserInterface.py" line="2936" />
       <source>Qt-&amp;Linguist...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2943" />
+      <location filename="../UI/UserInterface.py" line="2942" />
       <source>Start Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2945" />
+      <location filename="../UI/UserInterface.py" line="2944" />
       <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="2953" />
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>UI Previewer</source>
       <translation>Anteprima UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
+      <location filename="../UI/UserInterface.py" line="2954" />
       <source>&amp;UI Previewer...</source>
       <translation>Antreprima &amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2961" />
+      <location filename="../UI/UserInterface.py" line="2960" />
       <source>Start the UI Previewer</source>
       <translation>Avvia UI Previewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2962" />
       <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="2969" />
+      <location filename="../UI/UserInterface.py" line="2968" />
       <source>Translations Previewer</source>
       <translation>Anteprima traduzioni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2971" />
+      <location filename="../UI/UserInterface.py" line="2970" />
       <source>&amp;Translations Previewer...</source>
       <translation>Anteprima &amp;Traduzioni...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="2976" />
       <source>Start the Translations Previewer</source>
       <translation>Avvia l'anteprima delle traduzioni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2979" />
+      <location filename="../UI/UserInterface.py" line="2978" />
       <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="2988" />
+      <location filename="../UI/UserInterface.py" line="2987" />
       <source>Compare Files</source>
       <translation>Confronta file</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2990" />
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Confronta file...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="2995" />
       <source>Compare two files</source>
       <translation>Confronta due file</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2998" />
+      <location filename="../UI/UserInterface.py" line="2997" />
       <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="3007" />
+      <location filename="../UI/UserInterface.py" line="3006" />
       <source>Compare Files side by side</source>
       <translation>Confronta file affiancati</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3009" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3017" />
+      <location filename="../UI/UserInterface.py" line="3016" />
       <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="3027" />
+      <location filename="../UI/UserInterface.py" line="3026" />
       <source>SQL Browser</source>
       <translation>SQL Browser</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3028" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL &amp;Browser...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3035" />
+      <location filename="../UI/UserInterface.py" line="3034" />
       <source>Browse a SQL database</source>
       <translation>Naviga un database SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3037" />
+      <location filename="../UI/UserInterface.py" line="3036" />
       <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="3051" />
-      <location filename="../UI/UserInterface.py" line="3043" />
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <location filename="../UI/UserInterface.py" line="3042" />
       <source>Mini Editor</source>
       <translation>Mini Editor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3045" />
+      <location filename="../UI/UserInterface.py" line="3044" />
       <source>Mini &amp;Editor...</source>
       <translation>Mini &amp;Editor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3053" />
+      <location filename="../UI/UserInterface.py" line="3052" />
       <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="3062" />
+      <location filename="../UI/UserInterface.py" line="3061" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3064" />
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
+      <location filename="../UI/UserInterface.py" line="3069" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3072" />
+      <location filename="../UI/UserInterface.py" line="3071" />
       <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="3082" />
+      <location filename="../UI/UserInterface.py" line="3081" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3084" />
+      <location filename="../UI/UserInterface.py" line="3083" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3089" />
       <source>Start the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3092" />
+      <location filename="../UI/UserInterface.py" line="3091" />
       <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="3101" />
+      <location filename="../UI/UserInterface.py" line="3100" />
       <source>Icon Editor</source>
       <translation>Editor di icone</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3103" />
+      <location filename="../UI/UserInterface.py" line="3102" />
       <source>&amp;Icon Editor...</source>
       <translation>Editor di &amp;icone...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3109" />
+      <location filename="../UI/UserInterface.py" line="3108" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
+      <location filename="../UI/UserInterface.py" line="3110" />
       <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="3120" />
+      <location filename="../UI/UserInterface.py" line="3119" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3122" />
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3128" />
+      <location filename="../UI/UserInterface.py" line="3127" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3129" />
       <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="3140" />
+      <location filename="../UI/UserInterface.py" line="3139" />
       <source>Preferences</source>
       <translation>Preferenze</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3142" />
+      <location filename="../UI/UserInterface.py" line="3141" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Preferenze...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3147" />
       <source>Set the prefered configuration</source>
       <translation>Imposta la configurazione preferita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3149" />
       <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="3161" />
+      <location filename="../UI/UserInterface.py" line="3160" />
       <source>Export Preferences</source>
       <translation>Esporta preferenze</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3163" />
+      <location filename="../UI/UserInterface.py" line="3162" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;sporta preferenze...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3169" />
+      <location filename="../UI/UserInterface.py" line="3168" />
       <source>Export the current configuration</source>
       <translation>Esporta la configurazione attuale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="3170" />
       <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="3180" />
+      <location filename="../UI/UserInterface.py" line="3179" />
       <source>Import Preferences</source>
       <translation>Importa preferenze</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3182" />
+      <location filename="../UI/UserInterface.py" line="3181" />
       <source>I&amp;mport Preferences...</source>
       <translation>I&amp;mporta preferenze...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3188" />
       <source>Import a previously exported configuration</source>
       <translation>Importa una configurazione precedentemente esportata</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3192" />
+      <location filename="../UI/UserInterface.py" line="3191" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3200" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3203" />
+      <location filename="../UI/UserInterface.py" line="3202" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3209" />
+      <location filename="../UI/UserInterface.py" line="3208" />
       <source>Export the current theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
+      <location filename="../UI/UserInterface.py" line="3210" />
       <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="3220" />
+      <location filename="../UI/UserInterface.py" line="3219" />
       <source>Import Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3222" />
+      <location filename="../UI/UserInterface.py" line="3221" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3228" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
+      <location filename="../UI/UserInterface.py" line="3229" />
       <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="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload APIs</source>
       <translation>Ricarica APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload &amp;APIs</source>
       <translation>Ricarica &amp;APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3241" />
+      <location filename="../UI/UserInterface.py" line="3240" />
       <source>Reload the API information</source>
       <translation>Ricarica le informazioni delle API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3243" />
+      <location filename="../UI/UserInterface.py" line="3242" />
       <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="3257" />
-      <location filename="../UI/UserInterface.py" line="3249" />
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <location filename="../UI/UserInterface.py" line="3248" />
       <source>Show external tools</source>
       <translation>Mostra tool esterni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
+      <location filename="../UI/UserInterface.py" line="3250" />
       <source>Show external &amp;tools</source>
       <translation>Mostra toll &amp;esterni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3258" />
       <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="3269" />
+      <location filename="../UI/UserInterface.py" line="3268" />
       <source>View Profiles</source>
       <translation>Vista Profili</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
+      <location filename="../UI/UserInterface.py" line="3270" />
       <source>&amp;View Profiles...</source>
       <translation>&amp;Vista profili...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3277" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Configure view profiles</source>
       <translation>Configura i profili</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
+      <location filename="../UI/UserInterface.py" line="3278" />
       <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="3290" />
+      <location filename="../UI/UserInterface.py" line="3289" />
       <source>Toolbars</source>
       <translation>Toolbars</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3292" />
+      <location filename="../UI/UserInterface.py" line="3291" />
       <source>Tool&amp;bars...</source>
       <translation>Tool&amp;bars...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
+      <location filename="../UI/UserInterface.py" line="3297" />
       <source>Configure toolbars</source>
       <translation>Configura toolbars</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3299" />
       <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="3311" />
+      <location filename="../UI/UserInterface.py" line="3310" />
       <source>Keyboard Shortcuts</source>
       <translation>Scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3313" />
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>&amp;Scorciatoie da tastiera...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3319" />
+      <location filename="../UI/UserInterface.py" line="3318" />
       <source>Set the keyboard shortcuts</source>
       <translation>Imposta le scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
+      <location filename="../UI/UserInterface.py" line="3320" />
       <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="7335" />
-      <location filename="../UI/UserInterface.py" line="7316" />
-      <location filename="../UI/UserInterface.py" line="3331" />
+      <location filename="../UI/UserInterface.py" line="7334" />
+      <location filename="../UI/UserInterface.py" line="7315" />
+      <location filename="../UI/UserInterface.py" line="3330" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Esporta scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3333" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Esporta scorciatoie da tastiera...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
+      <location filename="../UI/UserInterface.py" line="3338" />
       <source>Export the keyboard shortcuts</source>
       <translation>Esporta le scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3341" />
+      <location filename="../UI/UserInterface.py" line="3340" />
       <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="7354" />
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="7353" />
+      <location filename="../UI/UserInterface.py" line="3349" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importa scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3352" />
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Importa scorciatoie da tastiera...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="3357" />
       <source>Import the keyboard shortcuts</source>
       <translation>Importa le scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3359" />
       <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="3370" />
+      <location filename="../UI/UserInterface.py" line="3369" />
       <source>Manage SSL Certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3372" />
+      <location filename="../UI/UserInterface.py" line="3371" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3378" />
       <source>Manage the saved SSL certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3382" />
+      <location filename="../UI/UserInterface.py" line="3381" />
       <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="3392" />
+      <location filename="../UI/UserInterface.py" line="3391" />
       <source>Edit Message Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3394" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="3400" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3404" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <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="3423" />
-      <location filename="../UI/UserInterface.py" line="3417" />
-      <location filename="../UI/UserInterface.py" line="3415" />
+      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Clear private data</source>
       <translation type="unfinished">Pulisci dati privati</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3425" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <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="3435" />
+      <location filename="../UI/UserInterface.py" line="3434" />
+      <source>Activate current editor</source>
+      <translation>Attiva editor corrente</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3436" />
-      <location filename="../UI/UserInterface.py" line="3435" />
-      <source>Activate current editor</source>
-      <translation>Attiva editor corrente</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3447" />
+      <location filename="../UI/UserInterface.py" line="3446" />
+      <source>Show next</source>
+      <translation>Mostra successivo</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3448" />
-      <location filename="../UI/UserInterface.py" line="3447" />
-      <source>Show next</source>
-      <translation>Mostra successivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3458" />
+      <source>Show previous</source>
+      <translation>Mostra precedente</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3460" />
-      <location filename="../UI/UserInterface.py" line="3459" />
-      <source>Show previous</source>
-      <translation>Mostra precedente</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3461" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Switch between tabs</source>
+      <translation>Cicla tra le linguette</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3472" />
-      <location filename="../UI/UserInterface.py" line="3471" />
-      <source>Switch between tabs</source>
-      <translation>Cicla tra le linguette</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
       <source>Plugin Infos</source>
       <translation>Informazioni su Plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3485" />
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>&amp;Plugin Infos...</source>
       <translation>Informazioni su &amp;Plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
+      <location filename="../UI/UserInterface.py" line="3490" />
       <source>Show Plugin Infos</source>
       <translation>Mostra informazioni sui Plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
+      <location filename="../UI/UserInterface.py" line="3492" />
       <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="3511" />
-      <location filename="../UI/UserInterface.py" line="3503" />
+      <location filename="../UI/UserInterface.py" line="3510" />
+      <location filename="../UI/UserInterface.py" line="3502" />
       <source>Install Plugins</source>
       <translation>Installa Plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3504" />
       <source>&amp;Install Plugins...</source>
       <translation>&amp;Installa Plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
+      <location filename="../UI/UserInterface.py" line="3512" />
       <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="3530" />
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Uninstall Plugin</source>
       <translation>Disinstalla Plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3524" />
+      <location filename="../UI/UserInterface.py" line="3523" />
       <source>&amp;Uninstall Plugin...</source>
       <translation>Disinstalla Pl&amp;ugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <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="3543" />
+      <location filename="../UI/UserInterface.py" line="3542" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Repository Plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <source>Show Plugins available for download</source>
       <translation>Mostra Plugin disponibili per il download</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3551" />
+      <location filename="../UI/UserInterface.py" line="3550" />
       <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="3578" />
       <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="3576" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished">Documentazione Qt4 {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3584" />
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Open Qt5 Documentation</source>
       <translation type="unfinished">Apri documentazione su Qt4 {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3599" />
       <location filename="../UI/UserInterface.py" line="3598" />
+      <location filename="../UI/UserInterface.py" line="3597" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Documentazione Qt4 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3605" />
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">Apri documentazione su Qt4 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3606" />
       <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="3620" />
       <location filename="../UI/UserInterface.py" line="3619" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3626" />
+      <location filename="../UI/UserInterface.py" line="3625" />
       <source>Open PyQt5 Documentation</source>
       <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3627" />
       <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="3641" />
       <location filename="../UI/UserInterface.py" line="3640" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">Documentazione PyQt4 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3647" />
+      <location filename="../UI/UserInterface.py" line="3646" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">Apri documentazione su PyQt4 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3648" />
       <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="3667" />
       <location filename="../UI/UserInterface.py" line="3666" />
+      <location filename="../UI/UserInterface.py" line="3665" />
       <source>Python 3 Documentation</source>
       <translation>Documentazione Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3673" />
+      <location filename="../UI/UserInterface.py" line="3672" />
       <source>Open Python 3 Documentation</source>
       <translation>Apri documentazione Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <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="3694" />
       <location filename="../UI/UserInterface.py" line="3693" />
+      <location filename="../UI/UserInterface.py" line="3692" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3700" />
+      <location filename="../UI/UserInterface.py" line="3699" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
       <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="3720" />
       <location filename="../UI/UserInterface.py" line="3719" />
+      <location filename="../UI/UserInterface.py" line="3718" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3726" />
+      <location filename="../UI/UserInterface.py" line="3725" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
       <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="3746" />
       <location filename="../UI/UserInterface.py" line="3745" />
+      <location filename="../UI/UserInterface.py" line="3744" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3752" />
+      <location filename="../UI/UserInterface.py" line="3751" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <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="3854" />
+      <location filename="../UI/UserInterface.py" line="3853" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
+      <location filename="../UI/UserInterface.py" line="3863" />
       <source>Wi&amp;zards</source>
       <translation>Wi&amp;zards</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3882" />
+      <location filename="../UI/UserInterface.py" line="3881" />
       <source>P&amp;lugins</source>
       <translation>P&amp;lugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3891" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>Configure...</source>
       <translation>Configura...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3900" />
+      <location filename="../UI/UserInterface.py" line="3899" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3917" />
+      <location filename="../UI/UserInterface.py" line="3916" />
       <source>Select Tool Group</source>
       <translation>Seleziona Tool Group</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Se&amp;ttings</source>
       <translation>Impos&amp;tazioni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3961" />
+      <location filename="../UI/UserInterface.py" line="3960" />
       <source>&amp;Window</source>
       <translation>&amp;Finestre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3970" />
+      <location filename="../UI/UserInterface.py" line="3969" />
       <source>&amp;Windows</source>
       <translation type="unfinished">&amp;Finestre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3974" />
+      <location filename="../UI/UserInterface.py" line="3973" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3978" />
+      <location filename="../UI/UserInterface.py" line="3977" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3997" />
+      <location filename="../UI/UserInterface.py" line="3996" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4016" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4024" />
+      <location filename="../UI/UserInterface.py" line="4023" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4030" />
+      <location filename="../UI/UserInterface.py" line="4029" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Toolbar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4043" />
+      <location filename="../UI/UserInterface.py" line="4042" />
       <source>&amp;Help</source>
       <translation>&amp;Help</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="4112" />
+      <location filename="../UI/UserInterface.py" line="4089" />
       <source>Tools</source>
       <translation>Strumenti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4115" />
-      <location filename="../UI/UserInterface.py" line="4094" />
+      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4093" />
       <source>Settings</source>
       <translation>Impostazioni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6148" />
+      <location filename="../UI/UserInterface.py" line="6147" />
+      <location filename="../UI/UserInterface.py" line="4115" />
+      <location filename="../UI/UserInterface.py" line="4094" />
+      <source>Help</source>
+      <translation>Aiuto</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4116" />
       <location filename="../UI/UserInterface.py" line="4095" />
-      <source>Help</source>
-      <translation>Aiuto</translation>
+      <source>Profiles</source>
+      <translation>Profili</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="4117" />
       <location filename="../UI/UserInterface.py" line="4096" />
-      <source>Profiles</source>
-      <translation>Profili</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4118" />
-      <location filename="../UI/UserInterface.py" line="4097" />
       <source>Plugins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4113" />
       <source>Unittest</source>
       <translation>Unittest</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4286" />
+      <location filename="../UI/UserInterface.py" line="4285" />
       <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="4295" />
+      <location filename="../UI/UserInterface.py" line="4294" />
       <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="4304" />
+      <location filename="../UI/UserInterface.py" line="4303" />
       <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="4313" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4322" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4331" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4345" />
+      <location filename="../UI/UserInterface.py" line="4344" />
       <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="4416" />
-      <location filename="../UI/UserInterface.py" line="4375" />
+      <location filename="../UI/UserInterface.py" line="4415" />
+      <location filename="../UI/UserInterface.py" line="4374" />
       <source>External Tools/{0}</source>
       <translation>Tool Esterni/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4524" />
+      <location filename="../UI/UserInterface.py" line="4523" />
       <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="4573" />
+      <location filename="../UI/UserInterface.py" line="4572" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4590" />
+      <location filename="../UI/UserInterface.py" line="4589" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4593" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4597" />
+      <location filename="../UI/UserInterface.py" line="4596" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4633" />
       <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="4948" />
+      <source>Restart application</source>
+      <translation>Riavvia applicazione</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4949" />
-      <source>Restart application</source>
-      <translation>Riavvia applicazione</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4950" />
       <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="4973" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4974" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4975" />
       <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="5024" />
+      <location filename="../UI/UserInterface.py" line="4998" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="4999" />
+      <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="5025" />
-      <location filename="../UI/UserInterface.py" line="4999" />
-      <source>Upgrade Eric</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5000" />
-      <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="5026" />
       <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="5084" />
+      <location filename="../UI/UserInterface.py" line="5083" />
       <source>&amp;Builtin Tools</source>
       <translation>Tool &amp;Builtin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5101" />
+      <location filename="../UI/UserInterface.py" line="5100" />
       <source>&amp;Plugin Tools</source>
       <translation>Informazioni sui &amp;Plugin Tools</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5103" />
       <source>&amp;User Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5130" />
+      <location filename="../UI/UserInterface.py" line="5129" />
       <source>Configure Tool Groups ...</source>
       <translation>Configura Tools Groups...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5134" />
+      <location filename="../UI/UserInterface.py" line="5133" />
       <source>Configure current Tool Group ...</source>
       <translation>Configura Tools Groups correnti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5173" />
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5172" />
+      <location filename="../UI/UserInterface.py" line="5152" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5247" />
+      <location filename="../UI/UserInterface.py" line="5246" />
       <source>&amp;Show all</source>
       <translation>Mo&amp;stra tutti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5249" />
+      <location filename="../UI/UserInterface.py" line="5248" />
       <source>&amp;Hide all</source>
       <translation>Nascondi &amp;tutti</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6282" />
+      <location filename="../UI/UserInterface.py" line="6271" />
+      <location filename="../UI/UserInterface.py" line="6223" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6049" />
+      <location filename="../UI/UserInterface.py" line="6039" />
+      <location filename="../UI/UserInterface.py" line="5982" />
+      <location filename="../UI/UserInterface.py" line="5972" />
+      <source>Problem</source>
+      <translation>Problema</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6283" />
       <location filename="../UI/UserInterface.py" line="6272" />
       <location filename="../UI/UserInterface.py" line="6224" />
@@ -85471,311 +85504,299 @@
       <location filename="../UI/UserInterface.py" line="6040" />
       <location filename="../UI/UserInterface.py" line="5983" />
       <location filename="../UI/UserInterface.py" line="5973" />
-      <source>Problem</source>
-      <translation>Problema</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6273" />
-      <location filename="../UI/UserInterface.py" line="6225" />
-      <location filename="../UI/UserInterface.py" line="6215" />
-      <location filename="../UI/UserInterface.py" line="6051" />
-      <location filename="../UI/UserInterface.py" line="6041" />
-      <location filename="../UI/UserInterface.py" line="5984" />
-      <location filename="../UI/UserInterface.py" line="5974" />
       <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="6496" />
-      <location filename="../UI/UserInterface.py" line="6409" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6296" />
-      <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6164" />
-      <location filename="../UI/UserInterface.py" line="6124" />
-      <location filename="../UI/UserInterface.py" line="6115" />
-      <location filename="../UI/UserInterface.py" line="6081" />
-      <location filename="../UI/UserInterface.py" line="6072" />
-      <location filename="../UI/UserInterface.py" line="6014" />
-      <location filename="../UI/UserInterface.py" line="6005" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6408" />
+      <location filename="../UI/UserInterface.py" line="6318" />
+      <location filename="../UI/UserInterface.py" line="6295" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6163" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
+      <location filename="../UI/UserInterface.py" line="6080" />
+      <location filename="../UI/UserInterface.py" line="6071" />
+      <location filename="../UI/UserInterface.py" line="6013" />
+      <location filename="../UI/UserInterface.py" line="6004" />
       <source>Process Generation Error</source>
       <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6006" />
+      <location filename="../UI/UserInterface.py" line="6005" />
       <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="6015" />
+      <location filename="../UI/UserInterface.py" line="6014" />
       <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="6073" />
+      <location filename="../UI/UserInterface.py" line="6072" />
       <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="6082" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <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="6116" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <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="6125" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <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="6149" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <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="6165" />
+      <location filename="../UI/UserInterface.py" line="6164" />
       <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="6186" />
+      <location filename="../UI/UserInterface.py" line="6185" />
       <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="6238" />
+      <location filename="../UI/UserInterface.py" line="6237" />
       <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="6297" />
+      <location filename="../UI/UserInterface.py" line="6296" />
       <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="6320" />
+      <location filename="../UI/UserInterface.py" line="6319" />
       <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="6410" />
+      <location filename="../UI/UserInterface.py" line="6409" />
       <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="6442" />
+      <location filename="../UI/UserInterface.py" line="6432" />
+      <source>External Tools</source>
+      <translation>Tool esterni</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <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="6443" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <source>External Tools</source>
-      <translation>Tool esterni</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6434" />
-      <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="6444" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>Nessun gruppo '{0}' trovato.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6479" />
+      <location filename="../UI/UserInterface.py" line="6478" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Avvio processo '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6497" />
+      <location filename="../UI/UserInterface.py" line="6496" />
       <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="6573" />
+      <location filename="../UI/UserInterface.py" line="6572" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Il processo '{0}' è terminato.</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6857" />
+      <location filename="../UI/UserInterface.py" line="6795" />
+      <location filename="../UI/UserInterface.py" line="6751" />
+      <location filename="../UI/UserInterface.py" line="6679" />
+      <location filename="../UI/UserInterface.py" line="6615" />
+      <source>Documentation Missing</source>
+      <translation>Documentazione mancante</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6858" />
       <location filename="../UI/UserInterface.py" line="6796" />
       <location filename="../UI/UserInterface.py" line="6752" />
       <location filename="../UI/UserInterface.py" line="6680" />
       <location filename="../UI/UserInterface.py" line="6616" />
-      <source>Documentation Missing</source>
-      <translation>Documentazione mancante</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6859" />
-      <location filename="../UI/UserInterface.py" line="6797" />
-      <location filename="../UI/UserInterface.py" line="6753" />
-      <location filename="../UI/UserInterface.py" line="6681" />
-      <location filename="../UI/UserInterface.py" line="6617" />
       <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="6839" />
+      <location filename="../UI/UserInterface.py" line="6723" />
+      <source>Documentation</source>
+      <translation>Documentazione</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6724" />
+      <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="6840" />
-      <location filename="../UI/UserInterface.py" line="6724" />
-      <source>Documentation</source>
-      <translation>Documentazione</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6725" />
-      <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="6841" />
       <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="7020" />
+      <location filename="../UI/UserInterface.py" line="6955" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6956" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7021" />
-      <location filename="../UI/UserInterface.py" line="6956" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6957" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7022" />
       <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="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7318" />
+      <location filename="../UI/UserInterface.py" line="7317" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7336" />
+      <location filename="../UI/UserInterface.py" line="7335" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7538" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7539" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7540" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file task &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7583" />
+      <location filename="../UI/UserInterface.py" line="7582" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7611" />
-      <location filename="../UI/UserInterface.py" line="7584" />
-      <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="7610" />
+      <location filename="../UI/UserInterface.py" line="7583" />
+      <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="7609" />
       <source>Read session</source>
       <translation>Leggi sessione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7627" />
+      <location filename="../UI/UserInterface.py" line="7626" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7629" />
+      <location filename="../UI/UserInterface.py" line="7628" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7652" />
+      <location filename="../UI/UserInterface.py" line="7651" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7697" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7698" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7699" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8058" />
+      <source>Drop Error</source>
+      <translation>Errore Drop</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8059" />
-      <source>Drop Error</source>
-      <translation>Errore Drop</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8060" />
       <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="8233" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8234" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8235" />
       <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;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8285" />
+      <location filename="../UI/UserInterface.py" line="8272" />
+      <source>First time usage</source>
+      <translation>Primo avvio</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8273" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8286" />
-      <location filename="../UI/UserInterface.py" line="8273" />
-      <source>First time usage</source>
-      <translation>Primo avvio</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8274" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8287" />
       <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="8310" />
+      <location filename="../UI/UserInterface.py" line="8309" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished">Seleziona cartella di lavoro</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8490" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8491" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8492" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -85860,7 +85881,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1616" />
+      <location filename="../Utilities/__init__.py" line="1615" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Puoi usare i codici % come segnaposti nella stringa. I codici supportati sono: &lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;colonna del cursore nell'editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory dell'editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nome file dell'editor corrente&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;directory home dell'utente attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;linea del cursore dell'editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;percorso del progetto attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;testo selezionato dell'editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username dell'utente attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;Segno percentuale&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_pt.ts	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/i18n/eric7_pt.ts	Fri Nov 25 11:51:51 2022 +0100
@@ -5547,7 +5547,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="206" />
+      <location filename="../Utilities/__init__.py" line="205" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>A codificação '{0}' é incorreta para o texto indicado.</translation>
     </message>
@@ -8887,88 +8887,89 @@
       <translation>Estado</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="221" />
+      <location filename="../Debugger/DebugViewer.py" line="149" />
+      <source>Source</source>
+      <translation>Fonte</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Don't Show</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Show Only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="233" />
-      <location filename="../Debugger/DebugViewer.py" line="162" />
+      <location filename="../Debugger/DebugViewer.py" line="248" />
+      <location filename="../Debugger/DebugViewer.py" line="176" />
       <source>Enter regular expression patterns separated by ';' to define variable filters. </source>
       <translation>Introduzir padrões de expressões regulares separados por ';' para definir os filtros de variáveis. </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="239" />
-      <location filename="../Debugger/DebugViewer.py" line="168" />
-      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
-      <translation>Introduza padrões de expressões regulares separados por ';' para definir os filtros de variáveis. Todos os atributos de classes e variáveis que coincidam com uma das expressões não se mostrarão na lista de cima.</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="246" />
-      <location filename="../Debugger/DebugViewer.py" line="176" />
-      <source>Set</source>
-      <translation>Definir</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="184" />
-      <source>Shows the list of global variables and their values.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="206" />
-      <source>Source</source>
-      <translation>Fonte</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugViewer.py" line="254" />
+      <location filename="../Debugger/DebugViewer.py" line="182" />
+      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
+      <translation>Introduza padrões de expressões regulares separados por ';' para definir os filtros de variáveis. Todos os atributos de classes e variáveis que coincidam com uma das expressões não se mostrarão na lista de cima.</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="261" />
+      <location filename="../Debugger/DebugViewer.py" line="190" />
+      <source>Set</source>
+      <translation>Definir</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="198" />
+      <source>Shows the list of global variables and their values.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="269" />
       <source>Shows the list of local variables and their values.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="271" />
+      <location filename="../Debugger/DebugViewer.py" line="295" />
       <source>Shows the current call stack.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="281" />
+      <location filename="../Debugger/DebugViewer.py" line="305" />
       <source>Shows a trace of the program flow.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="292" />
+      <location filename="../Debugger/DebugViewer.py" line="316" />
       <source>Shows a list of defined breakpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="303" />
+      <location filename="../Debugger/DebugViewer.py" line="327" />
       <source>Shows a list of defined watchpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="312" />
+      <location filename="../Debugger/DebugViewer.py" line="336" />
       <source>Shows a list of raised exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="323" />
+      <location filename="../Debugger/DebugViewer.py" line="347" />
       <source>Shows a code disassembly in case of an exception.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="749" />
+      <location filename="../Debugger/DebugViewer.py" line="790" />
       <source>&lt;p&gt;Debugger with ID &lt;b&gt;{0}&lt;/b&gt; has been connected.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="992" />
-      <location filename="../Debugger/DebugViewer.py" line="864" />
+      <location filename="../Debugger/DebugViewer.py" line="1033" />
+      <location filename="../Debugger/DebugViewer.py" line="905" />
       <source>unknown state ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -9451,26 +9452,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
       <source>Add allowed host</source>
       <translation>Adicionar anfitrião permitido</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="343" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="307" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Introduzir a direção IP de um anfitrião permitido</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="357" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="320" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;A direção &lt;b&gt;{0}&lt;/b&gt; não é um direção IP v4 ou IP v6 válida. A cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
       <source>Edit allowed host</source>
       <translation>Editar anfitrião permitido</translation>
     </message>
@@ -20862,7 +20863,7 @@
       <translation>Adicionar/Alterar</translation>
     </message>
     <message>
-      <location filename="../Project/FiletypeAssociationDialog.py" line="56" />
+      <location filename="../Project/FiletypeAssociationDialog.py" line="58" />
       <location filename="../Project/FiletypeAssociationDialog.py" line="45" />
       <source>Ignore</source>
       <translation>Ignorar</translation>
@@ -46711,7 +46712,7 @@
       <translation />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="462" />
+      <location filename="../Preferences/__init__.py" line="461" />
       <location filename="../QScintilla/Lexers/__init__.py" line="386" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished">Ficheiros Python (*.py *.py3)</translation>
@@ -46964,7 +46965,7 @@
       <translation>Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="465" />
+      <location filename="../Preferences/__init__.py" line="464" />
       <location filename="../QScintilla/Lexers/__init__.py" line="479" />
       <source>Python3 Files (*.py)</source>
       <translation>Ficheiros Python3 (*.py)</translation>
@@ -55530,18 +55531,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1608" />
+      <location filename="../Preferences/__init__.py" line="1653" />
       <source>Export Preferences</source>
       <translation>Exportar Preferências</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1637" />
-      <location filename="../Preferences/__init__.py" line="1610" />
+      <location filename="../Preferences/__init__.py" line="1682" />
+      <location filename="../Preferences/__init__.py" line="1655" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Ficheiro de Propriedades (*.ini);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1635" />
+      <location filename="../Preferences/__init__.py" line="1680" />
       <source>Import Preferences</source>
       <translation>Importar Preferências</translation>
     </message>
@@ -55562,7 +55563,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="472" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -56407,7 +56408,7 @@
       <translation>Renomear Ficheiro</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3311" />
+      <location filename="../Project/Project.py" line="3313" />
       <location filename="../Project/Project.py" line="2130" />
       <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>
@@ -56438,154 +56439,154 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2517" />
+      <location filename="../Project/Project.py" line="2518" />
       <source>Create project directory</source>
       <translation>Criar diretório de projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2518" />
+      <location filename="../Project/Project.py" line="2519" />
       <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="3115" />
-      <location filename="../Project/Project.py" line="2579" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3116" />
       <location filename="../Project/Project.py" line="2580" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3117" />
+      <location filename="../Project/Project.py" line="2581" />
       <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="2600" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2601" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2602" />
       <source>&lt;p&gt;The mainscript &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="2922" />
-      <location filename="../Project/Project.py" line="2625" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2923" />
       <location filename="../Project/Project.py" line="2626" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2924" />
+      <location filename="../Project/Project.py" line="2627" />
       <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="3144" />
-      <location filename="../Project/Project.py" line="2764" />
-      <location filename="../Project/Project.py" line="2735" />
-      <location filename="../Project/Project.py" line="2691" />
-      <location filename="../Project/Project.py" line="2666" />
-      <location filename="../Project/Project.py" line="2636" />
-      <source>New Project</source>
-      <translation>Projeto Novo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2637" />
-      <source>Add existing files to the project?</source>
-      <translation>Adicionar os ficheiros existentes ao projeto?</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3145" />
+      <location filename="../Project/Project.py" line="2765" />
+      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2692" />
       <location filename="../Project/Project.py" line="2667" />
+      <location filename="../Project/Project.py" line="2637" />
+      <source>New Project</source>
+      <translation>Projeto Novo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2638" />
+      <source>Add existing files to the project?</source>
+      <translation>Adicionar os ficheiros existentes ao projeto?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3146" />
+      <location filename="../Project/Project.py" line="2668" />
       <source>Select Version Control System</source>
       <translation>Selecionar o Sistema de Control de Versão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2765" />
-      <location filename="../Project/Project.py" line="2692" />
+      <location filename="../Project/Project.py" line="2766" />
+      <location filename="../Project/Project.py" line="2693" />
       <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="4082" />
-      <location filename="../Project/Project.py" line="2707" />
+      <location filename="../Project/Project.py" line="4085" />
+      <location filename="../Project/Project.py" line="2708" />
       <source>New project</source>
       <translation>Projeto novo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2708" />
+      <location filename="../Project/Project.py" line="2709" />
       <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="2741" />
-      <location filename="../Project/Project.py" line="2729" />
+      <location filename="../Project/Project.py" line="2742" />
+      <location filename="../Project/Project.py" line="2730" />
       <source>None</source>
       <translation>Nenhum</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2737" />
       <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="2848" />
-      <source>Translation Pattern</source>
-      <translation>Padrão de Tradução</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2849" />
+      <source>Translation Pattern</source>
+      <translation>Padrão de Tradução</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2850" />
       <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="4102" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="4105" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Open project</source>
       <translation>Abrir projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3096" />
+      <location filename="../Project/Project.py" line="3097" />
       <source>Project Files (*.epj);;XML Project Files (*.e4p)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="3298" />
+      <location filename="../Project/Project.py" line="3288" />
+      <source>Project Files (*.epj)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="3296" />
-      <location filename="../Project/Project.py" line="3286" />
-      <source>Project Files (*.epj)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3294" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3310" />
+      <location filename="../Project/Project.py" line="3312" />
       <source>Save File</source>
       <translation>Gravar Ficheiro</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3349" />
+      <location filename="../Project/Project.py" line="3351" />
       <source>Close Project</source>
       <translation>Fechar Projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3350" />
+      <location filename="../Project/Project.py" line="3352" />
       <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="3538" />
-      <location filename="../Project/Project.py" line="3504" />
+      <location filename="../Project/Project.py" line="3541" />
+      <location filename="../Project/Project.py" line="3507" />
       <source>Syntax errors detected</source>
       <translation>Detetados erros de sintaxe</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="3539" />
-      <location filename="../Project/Project.py" line="3505" />
+      <location filename="../Project/Project.py" line="3542" />
+      <location filename="../Project/Project.py" line="3508" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>O projeto tem um ficheiro com erros de síntaxe.</numerusform>
@@ -56593,1151 +56594,1171 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4084" />
+      <location filename="../Project/Project.py" line="4087" />
       <source>&amp;New...</source>
       <translation>&amp;Novo...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4090" />
+      <location filename="../Project/Project.py" line="4093" />
       <source>Generate a new project</source>
       <translation>Criar um projeto novo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4092" />
+      <location filename="../Project/Project.py" line="4095" />
       <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="4104" />
+      <location filename="../Project/Project.py" line="4107" />
       <source>&amp;Open...</source>
       <translation>&amp;Abrir...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4110" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>Open an existing project</source>
       <translation>Abrir um projeto existente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4115" />
       <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="4118" />
+      <location filename="../Project/Project.py" line="4121" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4123" />
+      <source>&amp;Reload</source>
+      <translation type="unfinished">&amp;Recarregar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4129" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4131" />
+      <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="4137" />
       <source>Close project</source>
       <translation>Fechar projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4120" />
+      <location filename="../Project/Project.py" line="4139" />
       <source>&amp;Close</source>
       <translation>&amp;Fechar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4126" />
+      <location filename="../Project/Project.py" line="4145" />
       <source>Close the current project</source>
       <translation>Fechar o projeto atual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4128" />
+      <location filename="../Project/Project.py" line="4147" />
       <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="4134" />
+      <location filename="../Project/Project.py" line="4153" />
       <source>Save project</source>
       <translation>Gravar projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4410" />
-      <location filename="../Project/Project.py" line="4136" />
+      <location filename="../Project/Project.py" line="4429" />
+      <location filename="../Project/Project.py" line="4155" />
       <source>&amp;Save</source>
       <translation>&amp;Gravar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4142" />
+      <location filename="../Project/Project.py" line="4161" />
       <source>Save the current project</source>
       <translation>Gravar o projeto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4144" />
+      <location filename="../Project/Project.py" line="4163" />
       <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="4150" />
+      <location filename="../Project/Project.py" line="4169" />
       <source>Save project as</source>
       <translation>Gravar projeto como</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4152" />
+      <location filename="../Project/Project.py" line="4171" />
       <source>Save &amp;as...</source>
       <translation>Gravar &amp;como...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4158" />
-      <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="4160" />
-      <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="4175" />
-      <source>Add files to project</source>
-      <translation>Adicionar ficheiros ao projeto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4177" />
-      <source>Add &amp;files...</source>
-      <translation>Adicionar &amp;ficheiros...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4183" />
-      <source>Add files to the current project</source>
-      <translation>Adicionar ficheiros ao projeto atual</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4185" />
-      <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>
+      <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="4179" />
+      <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="4194" />
+      <source>Add files to project</source>
+      <translation>Adicionar ficheiros ao projeto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4196" />
+      <source>Add &amp;files...</source>
+      <translation>Adicionar &amp;ficheiros...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4202" />
+      <source>Add files to the current project</source>
+      <translation>Adicionar ficheiros ao projeto atual</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4204" />
+      <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="4215" />
       <source>Add directory to project</source>
       <translation>Adicionar diretório ao projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4198" />
+      <location filename="../Project/Project.py" line="4217" />
       <source>Add directory...</source>
       <translation>Adicionar diretório...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4205" />
+      <location filename="../Project/Project.py" line="4224" />
       <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="4208" />
-      <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="4218" />
-      <source>Add translation to project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4220" />
-      <source>Add &amp;translation...</source>
-      <translation>Adicionar &amp;tradução...</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4227" />
+      <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="4237" />
+      <source>Add translation to project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4239" />
+      <source>Add &amp;translation...</source>
+      <translation>Adicionar &amp;tradução...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4246" />
       <source>Add a translation to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4230" />
-      <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="4240" />
-      <source>Search new files</source>
-      <translation>Procurar ficheiros novos</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4241" />
-      <source>Searc&amp;h new files...</source>
-      <translation>&amp;Procurar ficheiros novos...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4247" />
-      <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="4249" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
+      <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="4259" />
+      <source>Search new files</source>
+      <translation>Procurar ficheiros novos</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4260" />
+      <source>Searc&amp;h new files...</source>
+      <translation>&amp;Procurar ficheiros novos...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4266" />
+      <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="4268" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4279" />
       <source>Search Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4261" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4262" />
-      <source>Alt+Ctrl+P</source>
-      <comment>Project|Search Project File</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4267" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4269" />
-      <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="4278" />
-      <source>Project properties</source>
-      <translation>Propriedades do projeto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4280" />
-      <source>&amp;Properties...</source>
-      <translation>&amp;Propriedades...</translation>
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4281" />
+      <source>Alt+Ctrl+P</source>
+      <comment>Project|Search Project File</comment>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4286" />
-      <source>Show the project properties</source>
-      <translation>Mostrar as propriedades do projeto</translation>
+      <source>Search for a file in the project list of files.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4288" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <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="4297" />
-      <source>User project properties</source>
-      <translation>Propriedades de projecto do usuário</translation>
+      <source>Project properties</source>
+      <translation>Propriedades do projeto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4299" />
+      <source>&amp;Properties...</source>
+      <translation>&amp;Propriedades...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4305" />
+      <source>Show the project properties</source>
+      <translation>Mostrar as propriedades do projeto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4307" />
+      <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="4316" />
+      <source>User project properties</source>
+      <translation>Propriedades de projecto do usuário</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4318" />
       <source>&amp;User Properties...</source>
       <translation>Propriedades de &amp;Usuário...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4306" />
+      <location filename="../Project/Project.py" line="4325" />
       <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="4309" />
+      <location filename="../Project/Project.py" line="4328" />
       <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="4319" />
+      <location filename="../Project/Project.py" line="4338" />
       <source>Filetype Associations</source>
       <translation>Associações de Tipos de Ficheiros</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4320" />
+      <location filename="../Project/Project.py" line="4339" />
       <source>Filetype Associations...</source>
       <translation>Associações de Tipos de Ficheiros...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4327" />
+      <location filename="../Project/Project.py" line="4346" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4330" />
+      <location filename="../Project/Project.py" line="4349" />
       <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="4343" />
+      <location filename="../Project/Project.py" line="4362" />
       <source>Lexer Associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4344" />
+      <location filename="../Project/Project.py" line="4363" />
       <source>Lexer Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4351" />
+      <location filename="../Project/Project.py" line="4370" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4354" />
-      <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="4372" />
-      <source>Debugger Properties</source>
-      <translation>Propriedades do Depurador</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4373" />
-      <source>Debugger &amp;Properties...</source>
-      <translation>&amp;Propriedades do Depurador...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4379" />
-      <source>Show the debugger properties</source>
-      <translation>Mostrar as propriedades do depurador</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4381" />
-      <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>
+      <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="4391" />
-      <source>Load</source>
-      <translation>Carregar</translation>
+      <source>Debugger Properties</source>
+      <translation>Propriedades do Depurador</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4392" />
-      <source>&amp;Load</source>
-      <translation>&amp;Carregar</translation>
+      <source>Debugger &amp;Properties...</source>
+      <translation>&amp;Propriedades do Depurador...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4398" />
-      <source>Load the debugger properties</source>
-      <translation>Carregar propriedades do depurador</translation>
+      <source>Show the debugger properties</source>
+      <translation>Mostrar as propriedades do depurador</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4400" />
+      <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="4410" />
+      <source>Load</source>
+      <translation>Carregar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4411" />
+      <source>&amp;Load</source>
+      <translation>&amp;Carregar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4417" />
+      <source>Load the debugger properties</source>
+      <translation>Carregar propriedades do depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4419" />
       <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="4409" />
-      <source>Save</source>
-      <translation>Gravar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4416" />
-      <source>Save the debugger properties</source>
-      <translation>Gravar propriedades do depurador</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4418" />
-      <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="4427" />
-      <source>Delete</source>
-      <translation>Apagar</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4428" />
-      <source>&amp;Delete</source>
-      <translation>&amp;Apagar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4434" />
-      <source>Delete the debugger properties</source>
-      <translation>Apagar as propriedades do depurador</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4436" />
-      <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>
+      <source>Save</source>
+      <translation>Gravar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4435" />
+      <source>Save the debugger properties</source>
+      <translation>Gravar propriedades do depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4437" />
+      <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="4446" />
-      <source>Reset</source>
-      <translation>Reinicializar</translation>
+      <source>Delete</source>
+      <translation>Apagar</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4447" />
-      <source>&amp;Reset</source>
-      <translation>&amp;Reinicializar</translation>
+      <source>&amp;Delete</source>
+      <translation>&amp;Apagar</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4453" />
-      <source>Reset the debugger properties</source>
-      <translation>Reinicializar as propriedades do depurador</translation>
+      <source>Delete the debugger properties</source>
+      <translation>Apagar as propriedades do depurador</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4455" />
+      <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="4465" />
+      <source>Reset</source>
+      <translation>Reinicializar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4466" />
+      <source>&amp;Reset</source>
+      <translation>&amp;Reinicializar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4472" />
+      <source>Reset the debugger properties</source>
+      <translation>Reinicializar as propriedades do depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4474" />
       <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="4471" />
-      <location filename="../Project/Project.py" line="4470" />
+      <location filename="../Project/Project.py" line="4490" />
+      <location filename="../Project/Project.py" line="4489" />
       <source>Load session</source>
       <translation>Carregar sessão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4477" />
+      <location filename="../Project/Project.py" line="4496" />
       <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="4479" />
+      <location filename="../Project/Project.py" line="4498" />
       <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="4495" />
-      <location filename="../Project/Project.py" line="4494" />
+      <location filename="../Project/Project.py" line="4514" />
+      <location filename="../Project/Project.py" line="4513" />
       <source>Save session</source>
       <translation>Guargar sessão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4501" />
+      <location filename="../Project/Project.py" line="4520" />
       <source>Save the projects session file.</source>
       <translation>Gravar ficheiro de sessão do projeto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4503" />
+      <location filename="../Project/Project.py" line="4522" />
       <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="4519" />
-      <location filename="../Project/Project.py" line="4518" />
+      <location filename="../Project/Project.py" line="4538" />
+      <location filename="../Project/Project.py" line="4537" />
       <source>Delete session</source>
       <translation>Apagar sessão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4525" />
+      <location filename="../Project/Project.py" line="4544" />
       <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="4527" />
+      <location filename="../Project/Project.py" line="4546" />
       <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="4542" />
+      <location filename="../Project/Project.py" line="4561" />
       <source>Code Metrics</source>
       <translation type="unfinished">Métricas de Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4543" />
+      <location filename="../Project/Project.py" line="4562" />
       <source>&amp;Code Metrics...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4550" />
+      <location filename="../Project/Project.py" line="4569" />
       <source>Show some code metrics for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4553" />
+      <location filename="../Project/Project.py" line="4572" />
       <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="4563" />
+      <location filename="../Project/Project.py" line="4582" />
       <source>Python Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4564" />
+      <location filename="../Project/Project.py" line="4583" />
       <source>Code Co&amp;verage...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4571" />
+      <location filename="../Project/Project.py" line="4590" />
       <source>Show code coverage information for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4574" />
+      <location filename="../Project/Project.py" line="4593" />
       <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="5894" />
-      <location filename="../Project/Project.py" line="5881" />
-      <location filename="../Project/Project.py" line="4584" />
+      <location filename="../Project/Project.py" line="5914" />
+      <location filename="../Project/Project.py" line="5901" />
+      <location filename="../Project/Project.py" line="4603" />
       <source>Profile Data</source>
       <translation type="unfinished">Dados de Perfil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4585" />
+      <location filename="../Project/Project.py" line="4604" />
       <source>&amp;Profile Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4592" />
-      <source>Show profiling data for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4595" />
-      <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="5946" />
-      <location filename="../Project/Project.py" line="4610" />
-      <source>Application Diagram</source>
-      <translation>Diagrama da Aplicação</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4611" />
-      <source>&amp;Application Diagram...</source>
-      <translation>Diagrama da &amp;Aplicação...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4618" />
-      <source>Show a diagram of the project.</source>
-      <translation>Mostrar o diagrama do projeto.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4621" />
-      <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>
+      <source>Show profiling data for the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4614" />
+      <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="5966" />
+      <location filename="../Project/Project.py" line="4629" />
+      <source>Application Diagram</source>
+      <translation>Diagrama da Aplicação</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4630" />
-      <source>Load Diagram</source>
-      <translation>Carregar Diagrama</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4631" />
-      <source>&amp;Load Diagram...</source>
-      <translation>&amp;Carregar Diagrama...</translation>
+      <source>&amp;Application Diagram...</source>
+      <translation>Diagrama da &amp;Aplicação...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4637" />
-      <source>Load a diagram from file.</source>
-      <translation>Carregar um diagrama desde um ficheiro.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4639" />
-      <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="6131" />
-      <location filename="../Project/Project.py" line="6080" />
-      <location filename="../Project/Project.py" line="4654" />
-      <source>Create Package List</source>
-      <translation type="unfinished" />
+      <source>Show a diagram of the project.</source>
+      <translation>Mostrar o diagrama do projeto.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4640" />
+      <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="4649" />
+      <source>Load Diagram</source>
+      <translation>Carregar Diagrama</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4650" />
+      <source>&amp;Load Diagram...</source>
+      <translation>&amp;Carregar Diagrama...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4656" />
+      <source>Load a diagram from file.</source>
+      <translation>Carregar um diagrama desde um ficheiro.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4658" />
+      <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="6151" />
+      <location filename="../Project/Project.py" line="6100" />
+      <location filename="../Project/Project.py" line="4673" />
+      <source>Create Package List</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4675" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4663" />
+      <location filename="../Project/Project.py" line="4682" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4666" />
-      <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="6200" />
-      <location filename="../Project/Project.py" line="4677" />
-      <source>Create Plugin Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4679" />
-      <source>Create Plugin &amp;Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4685" />
+      <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="6220" />
+      <location filename="../Project/Project.py" line="4696" />
+      <source>Create Plugin Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4698" />
+      <source>Create Plugin &amp;Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4704" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4687" />
+      <location filename="../Project/Project.py" line="4706" />
       <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="4699" />
+      <location filename="../Project/Project.py" line="4718" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4701" />
+      <location filename="../Project/Project.py" line="4720" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4708" />
+      <location filename="../Project/Project.py" line="4727" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4711" />
+      <location filename="../Project/Project.py" line="4730" />
       <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="6621" />
-      <location filename="../Project/Project.py" line="6592" />
-      <location filename="../Project/Project.py" line="6543" />
-      <location filename="../Project/Project.py" line="4730" />
+      <location filename="../Project/Project.py" line="6641" />
+      <location filename="../Project/Project.py" line="6612" />
+      <location filename="../Project/Project.py" line="6563" />
+      <location filename="../Project/Project.py" line="4749" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4731" />
-      <source>&amp;Execute Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4737" />
-      <source>Perform a 'make' run.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4739" />
-      <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="6598" />
-      <location filename="../Project/Project.py" line="4749" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4750" />
+      <source>&amp;Execute Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4756" />
+      <source>Perform a 'make' run.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4758" />
+      <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="6618" />
+      <location filename="../Project/Project.py" line="4768" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4769" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4757" />
+      <location filename="../Project/Project.py" line="4776" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4760" />
-      <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="4778" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4779" />
+      <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="4797" />
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4798" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4786" />
+      <location filename="../Project/Project.py" line="4805" />
       <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4789" />
+      <location filename="../Project/Project.py" line="4808" />
       <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="4806" />
+      <location filename="../Project/Project.py" line="4825" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4826" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4813" />
+      <location filename="../Project/Project.py" line="4832" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4815" />
+      <location filename="../Project/Project.py" line="4834" />
       <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="4827" />
+      <location filename="../Project/Project.py" line="4846" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4847" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4835" />
+      <location filename="../Project/Project.py" line="4854" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4838" />
+      <location filename="../Project/Project.py" line="4857" />
       <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="4850" />
+      <location filename="../Project/Project.py" line="4869" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4851" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4858" />
-      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4863" />
-      <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="4876" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4877" />
+      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4882" />
+      <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="4895" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4884" />
+      <location filename="../Project/Project.py" line="4903" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4890" />
+      <location filename="../Project/Project.py" line="4909" />
       <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="5055" />
-      <location filename="../Project/Project.py" line="5005" />
-      <location filename="../Project/Project.py" line="5004" />
-      <location filename="../Project/Project.py" line="4904" />
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="5074" />
+      <location filename="../Project/Project.py" line="5024" />
+      <location filename="../Project/Project.py" line="5023" />
+      <location filename="../Project/Project.py" line="4923" />
+      <location filename="../Project/Project.py" line="4922" />
       <source>Configure</source>
       <translation type="unfinished">Configurar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4930" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4916" />
+      <location filename="../Project/Project.py" line="4935" />
       <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="4932" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4933" />
+      <location filename="../Project/Project.py" line="4952" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4939" />
+      <location filename="../Project/Project.py" line="4958" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4960" />
       <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="4954" />
-      <location filename="../Project/Project.py" line="4953" />
+      <location filename="../Project/Project.py" line="4973" />
+      <location filename="../Project/Project.py" line="4972" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4961" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4983" />
       <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="4978" />
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4997" />
+      <location filename="../Project/Project.py" line="4996" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4985" />
+      <location filename="../Project/Project.py" line="5004" />
       <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="4991" />
+      <location filename="../Project/Project.py" line="5010" />
       <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="5012" />
+      <location filename="../Project/Project.py" line="5031" />
       <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="5018" />
+      <location filename="../Project/Project.py" line="5037" />
       <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="5034" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5035" />
+      <location filename="../Project/Project.py" line="5054" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5042" />
+      <location filename="../Project/Project.py" line="5061" />
       <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5045" />
+      <location filename="../Project/Project.py" line="5064" />
       <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="5056" />
+      <location filename="../Project/Project.py" line="5075" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5063" />
+      <location filename="../Project/Project.py" line="5082" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
-      <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="5076" />
-      <source>Upgrade</source>
-      <translation type="unfinished">Atualizar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5077" />
-      <source>&amp;Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5083" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5085" />
-      <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="5097" />
-      <source>Recreate</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5098" />
-      <source>&amp;Recreate</source>
+      <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="5095" />
+      <source>Upgrade</source>
+      <translation type="unfinished">Atualizar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5096" />
+      <source>&amp;Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5102" />
+      <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5104" />
+      <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="5116" />
+      <source>Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5117" />
+      <source>&amp;Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5123" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5106" />
+      <location filename="../Project/Project.py" line="5125" />
       <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="5135" />
-      <source>&amp;Project</source>
-      <translation>&amp;Projeto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5136" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Abrir Projetos &amp;Recentes</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5137" />
-      <source>Session</source>
-      <translation>Sessão</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5138" />
-      <source>Debugger</source>
-      <translation>Depurador</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5139" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5141" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5142" />
-      <source>&amp;Version Control</source>
-      <translation>Contro&amp;l de Versão</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5146" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Verificar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5148" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5150" />
-      <source>Sho&amp;w</source>
-      <translation>&amp;Mostrar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagramas</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Pac&amp;kagers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5153" />
-      <source>Source &amp;Documentation</source>
-      <translation>&amp;Documentação Fonte</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5155" />
-      <source>Make</source>
-      <translation type="unfinished" />
+      <source>&amp;Project</source>
+      <translation>&amp;Projeto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5156" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Abrir Projetos &amp;Recentes</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5157" />
+      <source>Session</source>
+      <translation>Sessão</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5158" />
+      <source>Debugger</source>
+      <translation>Depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5159" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5161" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5162" />
+      <source>&amp;Version Control</source>
+      <translation>Contro&amp;l de Versão</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5166" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Verificar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5168" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5170" />
+      <source>Sho&amp;w</source>
+      <translation>&amp;Mostrar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5171" />
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagramas</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Pac&amp;kagers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
+      <source>Source &amp;Documentation</source>
+      <translation>&amp;Documentação Fonte</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5175" />
+      <source>Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5176" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5317" />
-      <location filename="../Project/Project.py" line="5314" />
+      <location filename="../Project/Project.py" line="5337" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>Project</source>
       <translation>Projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5378" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Clear</source>
       <translation>&amp;Limpar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5557" />
       <source>Search New Files</source>
       <translation>Procurar Ficheiros Novos</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5558" />
       <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="5687" />
-      <location filename="../Project/Project.py" line="5674" />
+      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5694" />
       <source>Version Control System</source>
       <translation>Sistema de Control de Versão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5695" />
       <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="5688" />
+      <location filename="../Project/Project.py" line="5708" />
       <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="5836" />
+      <location filename="../Project/Project.py" line="5856" />
       <source>Coverage Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5882" />
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5902" />
+      <location filename="../Project/Project.py" line="5857" />
       <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="5849" />
+      <location filename="../Project/Project.py" line="5869" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5850" />
+      <location filename="../Project/Project.py" line="5870" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5915" />
       <source>Please select a profile file</source>
       <translation>Escolha um ficheiro de perfil por favor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5947" />
+      <location filename="../Project/Project.py" line="5967" />
       <source>Include module names?</source>
       <translation>Incluir nomes de módulos?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6081" />
+      <location filename="../Project/Project.py" line="6101" />
       <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="6132" />
+      <location filename="../Project/Project.py" line="6152" />
       <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="6421" />
-      <location filename="../Project/Project.py" line="6379" />
-      <location filename="../Project/Project.py" line="6333" />
-      <location filename="../Project/Project.py" line="6322" />
-      <location filename="../Project/Project.py" line="6304" />
-      <location filename="../Project/Project.py" line="6271" />
-      <location filename="../Project/Project.py" line="6241" />
-      <location filename="../Project/Project.py" line="6213" />
-      <location filename="../Project/Project.py" line="6183" />
-      <location filename="../Project/Project.py" line="6169" />
-      <location filename="../Project/Project.py" line="6152" />
+      <location filename="../Project/Project.py" line="6441" />
+      <location filename="../Project/Project.py" line="6399" />
+      <location filename="../Project/Project.py" line="6353" />
+      <location filename="../Project/Project.py" line="6342" />
+      <location filename="../Project/Project.py" line="6324" />
+      <location filename="../Project/Project.py" line="6291" />
+      <location filename="../Project/Project.py" line="6261" />
+      <location filename="../Project/Project.py" line="6233" />
+      <location filename="../Project/Project.py" line="6203" />
+      <location filename="../Project/Project.py" line="6189" />
+      <location filename="../Project/Project.py" line="6172" />
       <source>Create Plugin Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6153" />
+      <location filename="../Project/Project.py" line="6173" />
       <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="6170" />
+      <location filename="../Project/Project.py" line="6190" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6184" />
+      <location filename="../Project/Project.py" line="6204" />
       <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="6192" />
+      <location filename="../Project/Project.py" line="6212" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6193" />
+      <location filename="../Project/Project.py" line="6213" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6196" />
+      <location filename="../Project/Project.py" line="6216" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6214" />
+      <location filename="../Project/Project.py" line="6234" />
       <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="6242" />
+      <location filename="../Project/Project.py" line="6262" />
       <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="6272" />
+      <location filename="../Project/Project.py" line="6292" />
       <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="6305" />
+      <location filename="../Project/Project.py" line="6325" />
       <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="6323" />
+      <location filename="../Project/Project.py" line="6343" />
       <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="6334" />
+      <location filename="../Project/Project.py" line="6354" />
       <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="6380" />
+      <location filename="../Project/Project.py" line="6400" />
       <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="6422" />
+      <location filename="../Project/Project.py" line="6442" />
       <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="6544" />
+      <location filename="../Project/Project.py" line="6564" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6593" />
+      <location filename="../Project/Project.py" line="6613" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6601" />
+      <location filename="../Project/Project.py" line="6621" />
       <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="6606" />
+      <location filename="../Project/Project.py" line="6626" />
       <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="6622" />
+      <location filename="../Project/Project.py" line="6642" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -57989,22 +58010,22 @@
   <context>
     <name>ProjectFile</name>
     <message>
-      <location filename="../Project/ProjectFile.py" line="109" />
+      <location filename="../Project/ProjectFile.py" line="108" />
       <source>Save Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFile.py" line="110" />
+      <location filename="../Project/ProjectFile.py" line="109" />
       <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectFile.py" line="134" />
+      <source>Read Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectFile.py" line="135" />
-      <source>Read Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectFile.py" line="136" />
       <source>&lt;p&gt;The project 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>
@@ -59868,265 +59889,265 @@
   <context>
     <name>ProjectTranslationsBrowser</name>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="99" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="76" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="74" />
       <source>Translations</source>
       <translation>Traduções</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="79" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="77" />
       <source>&lt;b&gt;Project Translations Browser&lt;/b&gt;&lt;p&gt;This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="95" />
       <source>Translation Files ({0})</source>
       <translation type="unfinished">Ficheiros de Tradução ({0})</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="98" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="96" />
       <source>Translation Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="109" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="107" />
       <source>Translations Browser</source>
       <translation type="unfinished">Navegador de Traduções</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="239" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="183" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="237" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="181" />
       <source>Generate translation</source>
       <translation>Gerar tradução</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="249" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="247" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation (with obsolete)</source>
       <translation>Gerar tradução (com obsoleto)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="538" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="360" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="258" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="194" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="536" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="507" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="330" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="256" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="192" />
       <source>Generate all translations</source>
       <translation>Gerar traduções todas</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="513" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="369" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="267" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="198" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="545" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="511" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="367" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="196" />
       <source>Generate all translations (with obsolete)</source>
       <translation>Gerar traduções todas (com obsoleto)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="419" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="417" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
       <source>Open in Qt-Linguist</source>
       <translation>Abrir em Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="423" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="279" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="206" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="471" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="421" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="277" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="204" />
       <source>Open in Editor</source>
       <translation>Abrir no Editor</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="286" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="284" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
       <source>Release translation</source>
       <translation>Liberar tradução</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="518" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="377" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="341" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="295" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="553" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="516" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="375" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="339" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="293" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="214" />
       <source>Release all translations</source>
       <translation>Liberar traduções todas</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="220" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
       <source>Preview translation</source>
       <translation>Pré visualizar tradução</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="346" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="344" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Preview all translations</source>
       <translation>Previsualizar traduções todas</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="441" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="352" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="527" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
       <source>Extract messages</source>
       <translation>Extrair mensagens</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="469" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="275" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="273" />
       <source>Open</source>
       <translation>Abrir</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="488" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="302" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="486" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="300" />
       <source>Remove from project</source>
       <translation>Tirar do projeto</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="561" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="491" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="305" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="559" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="489" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
       <source>Delete</source>
       <translation>Apagar</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="384" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="309" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="307" />
       <source>Add translation...</source>
       <translation>Adicionar tradução...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="568" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="566" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="385" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
       <source>Add translation files...</source>
       <translation>Adicionar ficheiros de tradução...</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="569" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="313" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Copiar Rota à Área de Transferência</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="492" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="388" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="315" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Copiar Rota à Área de Transferência</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="573" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="390" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="448" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
       <source>Generate translations</source>
       <translation>Gerar traduções</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="460" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="458" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="410" />
       <source>Generate translations (with obsolete)</source>
       <translation>Gerar traduções (com obsoleto)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="480" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="478" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="426" />
       <source>Release translations</source>
       <translation>Liberar traduções</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="432" />
       <source>Preview translations</source>
       <translation>Antever traduções</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="835" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="833" />
       <source>Delete translation files</source>
       <translation>Apagar ficheiros de tradução</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="836" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="834" />
       <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="1504" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1001" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="961" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1502" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="999" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="959" />
       <source>Write temporary project file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1505" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1241" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="962" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1239" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="960" />
       <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="1002" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1000" />
       <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="1240" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1123" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1111" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1238" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1121" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1109" />
       <source>Translation file generation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1112" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1110" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1118" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1116" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1122" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1534" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1532" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1292" />
       <source>Process Generation Error</source>
       <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1337" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1295" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1335" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1293" />
       <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="1427" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1425" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1405" />
       <source>Translation file release</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1406" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1426" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1535" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1533" />
       <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>
@@ -83099,2216 +83120,2228 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="574" />
+      <location filename="../UI/UserInterface.py" line="573" />
       <source>Initializing Tools...</source>
       <translation>A iniciar Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="585" />
+      <location filename="../UI/UserInterface.py" line="584" />
       <source>Registering Objects...</source>
       <translation>A registar Objetos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="619" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Initializing Actions...</source>
       <translation>A iniciar Ações...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="621" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Initializing Menus...</source>
       <translation>A iniciar Menús...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="623" />
+      <location filename="../UI/UserInterface.py" line="622" />
       <source>Initializing Toolbars...</source>
       <translation>A iniciar Barras de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="625" />
+      <location filename="../UI/UserInterface.py" line="624" />
       <source>Initializing Statusbar...</source>
       <translation>A iniciar Barra de Estado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Single Application Server...</source>
       <translation>A iniciar Servidor de Aplicação Única...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="658" />
+      <location filename="../UI/UserInterface.py" line="657" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="661" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Activating Plugins...</source>
       <translation>A ativar Complementos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="663" />
+      <location filename="../UI/UserInterface.py" line="662" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="666" />
+      <location filename="../UI/UserInterface.py" line="665" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="673" />
+      <location filename="../UI/UserInterface.py" line="672" />
       <source>Restoring Toolbarmanager...</source>
       <translation>A restaurar Gestor da Barra de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="680" />
       <source>Setting View Profile...</source>
       <translation>A definir Perfil de Vista...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="693" />
       <source>Reading Tasks...</source>
       <translation>A Ler Tarefas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="699" />
+      <location filename="../UI/UserInterface.py" line="698" />
       <source>Reading Templates...</source>
       <translation>A ler Modelos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="703" />
       <source>Starting Debugger...</source>
       <translation>A iniciar Depurador...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
-      <location filename="../UI/UserInterface.py" line="1066" />
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1065" />
       <source>Left Toolbox</source>
       <translation>Caixa de Ferramentas Esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2224" />
-      <location filename="../UI/UserInterface.py" line="1076" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1075" />
       <source>Horizontal Toolbox</source>
       <translation>Caixa de Ferramentas Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2201" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1085" />
       <source>Right Toolbox</source>
       <translation>Caixa de Ferramentas Direita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2020" />
-      <location filename="../UI/UserInterface.py" line="1279" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2019" />
+      <location filename="../UI/UserInterface.py" line="1278" />
+      <location filename="../UI/UserInterface.py" line="1095" />
       <source>Multiproject-Viewer</source>
       <translation>Visor de Multiprojeto</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1997" />
+      <location filename="../UI/UserInterface.py" line="1284" />
+      <location filename="../UI/UserInterface.py" line="1101" />
+      <source>Project-Viewer</source>
+      <translation>Visor de Projeto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2559" />
+      <location filename="../UI/UserInterface.py" line="2558" />
+      <location filename="../UI/UserInterface.py" line="1291" />
+      <location filename="../UI/UserInterface.py" line="1108" />
+      <source>Find/Replace In Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1298" />
+      <location filename="../UI/UserInterface.py" line="1115" />
+      <source>Find File</source>
+      <translation type="unfinished">Encontrar Ficheiro</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1304" />
+      <location filename="../UI/UserInterface.py" line="1121" />
+      <source>VCS Status</source>
+      <translation type="unfinished">Estado VCS</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1311" />
+      <location filename="../UI/UserInterface.py" line="1128" />
+      <source>Template-Viewer</source>
+      <translation>Visor de Modelos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2085" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1135" />
+      <source>File-Browser</source>
+      <translation>Navegador de Ficheiros</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1325" />
+      <location filename="../UI/UserInterface.py" line="1142" />
+      <source>Symbols</source>
+      <translation>Símbolos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2041" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Debug-Viewer</source>
+      <translation>Visor de Depuração</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2412" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1159" />
+      <source>Code Documentation Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2628" />
+      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="1361" />
+      <location filename="../UI/UserInterface.py" line="1166" />
+      <source>Help Viewer</source>
+      <translation type="unfinished">Visor de Ajuda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1367" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>Plugin Repository</source>
+      <translation>Repositório de Complementos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1373" />
+      <location filename="../UI/UserInterface.py" line="1178" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2440" />
+      <location filename="../UI/UserInterface.py" line="2439" />
+      <location filename="../UI/UserInterface.py" line="1378" />
+      <location filename="../UI/UserInterface.py" line="1183" />
+      <source>PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="2461" />
+      <location filename="../UI/UserInterface.py" line="1385" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Conda</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1392" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Cooperation</source>
+      <translation>Colaboração</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2340" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
+      <source>IRC</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="2483" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>MicroPython</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2063" />
+      <location filename="../UI/UserInterface.py" line="1410" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Shell</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2129" />
+      <location filename="../UI/UserInterface.py" line="1416" />
+      <location filename="../UI/UserInterface.py" line="1219" />
+      <source>Task-Viewer</source>
+      <translation>Visor de Tarefas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2107" />
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1223" />
+      <source>Log-Viewer</source>
+      <translation>Visor de Registos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1429" />
+      <location filename="../UI/UserInterface.py" line="1230" />
+      <source>Numbers</source>
+      <translation>Números</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1815" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} - Modo Passivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1822" />
+      <location filename="../UI/UserInterface.py" line="1818" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} - {1} - Modo Passivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1826" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} - {1} - {2} - Modo Passivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1850" />
+      <source>Quit</source>
+      <translation>Sair</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1852" />
+      <source>&amp;Quit</source>
+      <translation>Sai&amp;r</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1853" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1858" />
+      <source>Quit the IDE</source>
+      <translation>Sair do IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1860" />
+      <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="1874" />
+      <location filename="../UI/UserInterface.py" line="1872" />
+      <source>Restart</source>
+      <translation type="unfinished">Reiniciar</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1880" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
+      <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="1900" />
+      <location filename="../UI/UserInterface.py" line="1893" />
+      <source>Save session</source>
+      <translation>Guargar sessão</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1894" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1902" />
+      <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="7649" />
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Load session</source>
+      <translation type="unfinished">Carregar sessão</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1913" />
+      <source>Load session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1921" />
+      <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="1931" />
+      <source>New Window</source>
+      <translation>Nova Janela</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1933" />
+      <source>New &amp;Window</source>
+      <translation>Nova &amp;Janela</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1934" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1941" />
+      <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="1955" />
+      <location filename="../UI/UserInterface.py" line="1953" />
+      <source>Edit Profile</source>
+      <translation>Perfil de Edição</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
+      <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="1964" />
+      <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="1977" />
+      <location filename="../UI/UserInterface.py" line="1975" />
+      <source>Debug Profile</source>
+      <translation>Perfil de Depuração</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1984" />
+      <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="1986" />
+      <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="1998" />
-      <location filename="../UI/UserInterface.py" line="1285" />
-      <location filename="../UI/UserInterface.py" line="1102" />
-      <source>Project-Viewer</source>
-      <translation>Visor de Projeto</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2560" />
-      <location filename="../UI/UserInterface.py" line="2559" />
-      <location filename="../UI/UserInterface.py" line="1292" />
-      <location filename="../UI/UserInterface.py" line="1109" />
-      <source>Find/Replace In Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
-      <location filename="../UI/UserInterface.py" line="2582" />
-      <location filename="../UI/UserInterface.py" line="1299" />
-      <location filename="../UI/UserInterface.py" line="1116" />
-      <source>Find File</source>
-      <translation type="unfinished">Encontrar Ficheiro</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1305" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>VCS Status</source>
-      <translation type="unfinished">Estado VCS</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
-      <location filename="../UI/UserInterface.py" line="1312" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Template-Viewer</source>
-      <translation>Visor de Modelos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2086" />
-      <location filename="../UI/UserInterface.py" line="1319" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>File-Browser</source>
-      <translation>Navegador de Ficheiros</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Symbols</source>
-      <translation>Símbolos</translation>
+      <source>&amp;Project-Viewer</source>
+      <translation>Visor de &amp;Projeto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Alt+Shift+P</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2005" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2008" />
+      <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="2020" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>Visor de &amp;Multiprojeto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Alt+Shift+M</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2027" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2030" />
+      <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="2042" />
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1153" />
-      <source>Debug-Viewer</source>
-      <translation>Visor de Depuração</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2414" />
-      <location filename="../UI/UserInterface.py" line="2413" />
-      <location filename="../UI/UserInterface.py" line="1355" />
-      <location filename="../UI/UserInterface.py" line="1160" />
-      <source>Code Documentation Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2629" />
-      <location filename="../UI/UserInterface.py" line="2628" />
-      <location filename="../UI/UserInterface.py" line="1362" />
-      <location filename="../UI/UserInterface.py" line="1167" />
-      <source>Help Viewer</source>
-      <translation type="unfinished">Visor de Ajuda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <location filename="../UI/UserInterface.py" line="2509" />
-      <location filename="../UI/UserInterface.py" line="2508" />
-      <location filename="../UI/UserInterface.py" line="1368" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Plugin Repository</source>
-      <translation>Repositório de Complementos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
-      <location filename="../UI/UserInterface.py" line="2532" />
-      <location filename="../UI/UserInterface.py" line="1374" />
-      <location filename="../UI/UserInterface.py" line="1179" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2441" />
-      <location filename="../UI/UserInterface.py" line="2440" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1184" />
-      <source>PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2463" />
-      <location filename="../UI/UserInterface.py" line="2462" />
-      <location filename="../UI/UserInterface.py" line="1386" />
-      <location filename="../UI/UserInterface.py" line="1189" />
-      <source>Conda</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1393" />
-      <location filename="../UI/UserInterface.py" line="1196" />
-      <source>Cooperation</source>
-      <translation>Colaboração</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
-      <location filename="../UI/UserInterface.py" line="1397" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>IRC</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
-      <location filename="../UI/UserInterface.py" line="2484" />
-      <location filename="../UI/UserInterface.py" line="1403" />
-      <location filename="../UI/UserInterface.py" line="1208" />
-      <source>MicroPython</source>
+      <source>&amp;Debug-Viewer</source>
+      <translation>Visor de &amp;Depuração</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <source>Alt+Shift+D</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2049" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2052" />
+      <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="2064" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Shell</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2130" />
-      <location filename="../UI/UserInterface.py" line="1417" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>Task-Viewer</source>
-      <translation>Visor de Tarefas</translation>
+      <source>&amp;Shell</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2065" />
+      <source>Alt+Shift+S</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2071" />
+      <source>Switch the input focus to the Shell window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2074" />
+      <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="2086" />
+      <source>&amp;File-Browser</source>
+      <translation>Navegador de &amp;Ficheiros</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2087" />
+      <source>Alt+Shift+F</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2093" />
+      <source>Switch the input focus to the File-Browser window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2096" />
+      <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="2108" />
-      <location filename="../UI/UserInterface.py" line="1423" />
-      <location filename="../UI/UserInterface.py" line="1224" />
-      <source>Log-Viewer</source>
-      <translation>Visor de Registos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1430" />
-      <location filename="../UI/UserInterface.py" line="1231" />
-      <source>Numbers</source>
-      <translation>Números</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1816" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} - Modo Passivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1823" />
-      <location filename="../UI/UserInterface.py" line="1819" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} - {1} - Modo Passivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} - {1} - {2} - Modo Passivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1851" />
-      <source>Quit</source>
-      <translation>Sair</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <source>&amp;Quit</source>
-      <translation>Sai&amp;r</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1854" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>Quit the IDE</source>
-      <translation>Sair do IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1861" />
-      <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="1875" />
-      <location filename="../UI/UserInterface.py" line="1873" />
-      <source>Restart</source>
-      <translation type="unfinished">Reiniciar</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1881" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1883" />
-      <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="1901" />
-      <location filename="../UI/UserInterface.py" line="1894" />
-      <source>Save session</source>
-      <translation>Guargar sessão</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1903" />
-      <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="7650" />
-      <location filename="../UI/UserInterface.py" line="1920" />
-      <location filename="../UI/UserInterface.py" line="1913" />
-      <source>Load session</source>
-      <translation type="unfinished">Carregar sessão</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1914" />
-      <source>Load session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1922" />
-      <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="1932" />
-      <source>New Window</source>
-      <translation>Nova Janela</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1934" />
-      <source>New &amp;Window</source>
-      <translation>Nova &amp;Janela</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1940" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1942" />
-      <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="1956" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <source>Edit Profile</source>
-      <translation>Perfil de Edição</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1963" />
-      <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="1965" />
-      <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="1978" />
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>Debug Profile</source>
-      <translation>Perfil de Depuração</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1985" />
-      <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="1987" />
-      <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="1999" />
-      <source>&amp;Project-Viewer</source>
-      <translation>Visor de &amp;Projeto</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2000" />
-      <source>Alt+Shift+P</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2006" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2009" />
-      <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="2021" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>Visor de &amp;Multiprojeto</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Alt+Shift+M</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2028" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2031" />
-      <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="2043" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>Visor de &amp;Depuração</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Alt+Shift+D</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2050" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2053" />
-      <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="2065" />
-      <source>&amp;Shell</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
-      <source>Alt+Shift+S</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2072" />
-      <source>Switch the input focus to the Shell window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2075" />
-      <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="2087" />
-      <source>&amp;File-Browser</source>
-      <translation>Navegador de &amp;Ficheiros</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
-      <source>Alt+Shift+F</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2094" />
-      <source>Switch the input focus to the File-Browser window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2097" />
-      <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" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation>Visor de Re&amp;gistos</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2109" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation>Visor de Re&amp;gistos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+G</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2116" />
+      <location filename="../UI/UserInterface.py" line="2115" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2119" />
+      <location filename="../UI/UserInterface.py" line="2118" />
       <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="2130" />
+      <source>&amp;Task-Viewer</source>
+      <translation>Visor de &amp;Tarefas</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&amp;Task-Viewer</source>
-      <translation>Visor de &amp;Tarefas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+T</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2138" />
+      <location filename="../UI/UserInterface.py" line="2137" />
       <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="2141" />
+      <location filename="../UI/UserInterface.py" line="2140" />
       <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="2153" />
+      <source>Templ&amp;ate-Viewer</source>
+      <translation>Visor de Mod&amp;elos</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2154" />
-      <source>Templ&amp;ate-Viewer</source>
-      <translation>Visor de Mod&amp;elos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
       <source>Alt+Shift+A</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2161" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <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="2164" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <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="2179" />
+      <location filename="../UI/UserInterface.py" line="2178" />
       <source>&amp;Left Toolbox</source>
       <translation>Caixa de Ferramentas &amp;Esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2186" />
+      <location filename="../UI/UserInterface.py" line="2185" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2187" />
       <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="2202" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Right Toolbox</source>
       <translation>Caixa de Ferramentas Di&amp;reita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2209" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2211" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <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="2225" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Caixa de Ferramentas &amp;Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2232" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <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="2234" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <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="2246" />
+      <source>Left Sidebar</source>
+      <translation>Barra Esquerda</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2247" />
-      <source>Left Sidebar</source>
-      <translation>Barra Esquerda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
       <source>&amp;Left Sidebar</source>
       <translation>Barra Lateral &amp;Esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2255" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the left sidebar window</source>
       <translation>Alternar a janela da barra lateral esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2257" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2269" />
+      <source>Right Sidebar</source>
+      <translation>Barra Direita</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2270" />
-      <source>Right Sidebar</source>
-      <translation>Barra Direita</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2271" />
       <source>&amp;Right Sidebar</source>
       <translation>Barra Lateral Di&amp;reita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2278" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2280" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2292" />
+      <source>Bottom Sidebar</source>
+      <translation>Barra Inferior</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2293" />
-      <source>Bottom Sidebar</source>
-      <translation>Barra Inferior</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2294" />
       <source>&amp;Bottom Sidebar</source>
       <translation>Barra Lateral &amp;Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2301" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Alternar janela da barra lateral inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2303" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <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="2315" />
+      <source>Cooperation-Viewer</source>
+      <translation>Visor de Colaboração</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2316" />
-      <source>Cooperation-Viewer</source>
-      <translation>Visor de Colaboração</translation>
+      <source>Co&amp;operation-Viewer</source>
+      <translation>Visor de C&amp;olaboração</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2317" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation>Visor de C&amp;olaboração</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
       <source>Alt+Shift+O</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2324" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2326" />
       <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="2341" />
+      <source>&amp;IRC</source>
+      <translation />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2342" />
-      <source>&amp;IRC</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2349" />
+      <location filename="../UI/UserInterface.py" line="2348" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2352" />
+      <location filename="../UI/UserInterface.py" line="2351" />
       <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="2362" />
+      <source>Symbols-Viewer</source>
+      <translation>Visor de Símbolos</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2363" />
-      <source>Symbols-Viewer</source>
-      <translation>Visor de Símbolos</translation>
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>V&amp;isor de Símbolos</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2364" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>V&amp;isor de Símbolos</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Alt+Shift+Y</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2371" />
+      <location filename="../UI/UserInterface.py" line="2370" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2374" />
+      <location filename="../UI/UserInterface.py" line="2373" />
       <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="2387" />
+      <source>Numbers-Viewer</source>
+      <translation>Visor de Números</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2388" />
-      <source>Numbers-Viewer</source>
-      <translation>Visor de Números</translation>
+      <source>Num&amp;bers-Viewer</source>
+      <translation>Visor de Nú&amp;meros</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2389" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>Visor de Nú&amp;meros</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
       <source>Alt+Shift+B</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2396" />
+      <location filename="../UI/UserInterface.py" line="2395" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2399" />
+      <location filename="../UI/UserInterface.py" line="2398" />
       <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="2415" />
+      <location filename="../UI/UserInterface.py" line="2414" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2421" />
+      <location filename="../UI/UserInterface.py" line="2420" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2426" />
+      <location filename="../UI/UserInterface.py" line="2425" />
       <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="2442" />
+      <location filename="../UI/UserInterface.py" line="2441" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
+      <location filename="../UI/UserInterface.py" line="2447" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2451" />
+      <location filename="../UI/UserInterface.py" line="2450" />
       <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="2464" />
+      <location filename="../UI/UserInterface.py" line="2463" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2470" />
+      <location filename="../UI/UserInterface.py" line="2469" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2473" />
+      <location filename="../UI/UserInterface.py" line="2472" />
       <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="2486" />
+      <location filename="../UI/UserInterface.py" line="2485" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2492" />
+      <location filename="../UI/UserInterface.py" line="2491" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2495" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <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="2510" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2516" />
+      <location filename="../UI/UserInterface.py" line="2515" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2534" />
+      <location filename="../UI/UserInterface.py" line="2533" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2540" />
+      <location filename="../UI/UserInterface.py" line="2539" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
       <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="2561" />
+      <location filename="../UI/UserInterface.py" line="2560" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
+      <location filename="../UI/UserInterface.py" line="2566" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2570" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <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="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2590" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2593" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <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="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <source>VCS Status List</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
-      <location filename="../UI/UserInterface.py" line="2606" />
-      <source>VCS Status List</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2614" />
+      <location filename="../UI/UserInterface.py" line="2613" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <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="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2636" />
+      <location filename="../UI/UserInterface.py" line="2635" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2639" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <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="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
       <source>What's This?</source>
       <translation>O que é Isto?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <source>&amp;What's This?</source>
+      <translation>O &amp;que é Isto?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2654" />
-      <source>&amp;What's This?</source>
-      <translation>O &amp;que é Isto?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
       <source>Shift+F1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2660" />
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Context sensitive help</source>
       <translation type="unfinished">Ajuda sensível ao contexto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2662" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <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="2675" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>Helpviewer</source>
       <translation>Visor de Ajuda</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2676" />
+      <source>&amp;Helpviewer...</source>
+      <translation>Visor de &amp;Ajuda...</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
-      <source>&amp;Helpviewer...</source>
-      <translation>Visor de &amp;Ajuda...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2678" />
       <source>F1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2683" />
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Open the helpviewer window</source>
       <translation>Abrir a janela do visor de ajuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2685" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <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="2704" />
+      <source>Show Versions</source>
+      <translation>Mostrar Versões</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2705" />
-      <source>Show Versions</source>
-      <translation>Mostrar Versões</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Show &amp;Versions</source>
       <translation>Mostrar &amp;Versões</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2711" />
       <source>Display version information</source>
       <translation>Mostrar a informação da versão</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2714" />
+      <location filename="../UI/UserInterface.py" line="2713" />
       <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="2729" />
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>Show Error Log</source>
       <translation>Mostrar Registo de Erros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2722" />
       <source>Show Error &amp;Log...</source>
       <translation>Mostrar &amp;Registo de Erros...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2730" />
       <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="2739" />
+      <source>Show Install Info</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2740" />
-      <source>Show Install Info</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2747" />
+      <location filename="../UI/UserInterface.py" line="2746" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2749" />
+      <location filename="../UI/UserInterface.py" line="2748" />
       <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="4633" />
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="4632" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report Bug</source>
       <translation>Reportar Falho</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report &amp;Bug...</source>
       <translation>Reportar &amp;Falho...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
+      <location filename="../UI/UserInterface.py" line="2760" />
       <source>Report a bug</source>
       <translation>Reportar um falho</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <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="2770" />
+      <source>Request Feature</source>
+      <translation>Solicitar Característica</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2771" />
-      <source>Request Feature</source>
-      <translation>Solicitar Característica</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2772" />
       <source>Request &amp;Feature...</source>
       <translation>Solicitar Ca&amp;racterística...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2777" />
       <source>Send a feature request</source>
       <translation>Enviar uma solicitude de característica</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2780" />
+      <location filename="../UI/UserInterface.py" line="2779" />
       <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="4091" />
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2792" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
+      <location filename="../UI/UserInterface.py" line="2798" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2801" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <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="2812" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2820" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2821" />
       <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="2832" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2833" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2844" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <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="2854" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
+      <location filename="../UI/UserInterface.py" line="2855" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>Run tests of the current script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2864" />
+      <location filename="../UI/UserInterface.py" line="2863" />
       <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="2873" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2881" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <source>Run tests of the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <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="2905" />
+      <location filename="../UI/UserInterface.py" line="2904" />
       <source>Qt-Designer</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2907" />
+      <location filename="../UI/UserInterface.py" line="2906" />
       <source>Qt-&amp;Designer...</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2912" />
       <source>Start Qt-Designer</source>
       <translation>Iniciar Qt-Designer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2915" />
+      <location filename="../UI/UserInterface.py" line="2914" />
       <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="2935" />
+      <location filename="../UI/UserInterface.py" line="2934" />
       <source>Qt-Linguist</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2937" />
+      <location filename="../UI/UserInterface.py" line="2936" />
       <source>Qt-&amp;Linguist...</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2943" />
+      <location filename="../UI/UserInterface.py" line="2942" />
       <source>Start Qt-Linguist</source>
       <translation>Iniciar Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2945" />
+      <location filename="../UI/UserInterface.py" line="2944" />
       <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="2953" />
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>UI Previewer</source>
       <translation>Antevisor de UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
+      <location filename="../UI/UserInterface.py" line="2954" />
       <source>&amp;UI Previewer...</source>
       <translation>Antevisor &amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2961" />
+      <location filename="../UI/UserInterface.py" line="2960" />
       <source>Start the UI Previewer</source>
       <translation>Iniciar Antevisor de UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2962" />
       <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="2969" />
+      <location filename="../UI/UserInterface.py" line="2968" />
       <source>Translations Previewer</source>
       <translation>Antevisor de Traduções</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2971" />
+      <location filename="../UI/UserInterface.py" line="2970" />
       <source>&amp;Translations Previewer...</source>
       <translation>Antevisor de &amp;Traduções...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="2976" />
       <source>Start the Translations Previewer</source>
       <translation>Iniciar Antevisor de Traduções</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2979" />
+      <location filename="../UI/UserInterface.py" line="2978" />
       <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="2988" />
+      <location filename="../UI/UserInterface.py" line="2987" />
       <source>Compare Files</source>
       <translation>Comparar Ficheiros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2990" />
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Comparar Ficheiros...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="2995" />
       <source>Compare two files</source>
       <translation>Comparar dois ficheiros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2998" />
+      <location filename="../UI/UserInterface.py" line="2997" />
       <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="3007" />
+      <location filename="../UI/UserInterface.py" line="3006" />
       <source>Compare Files side by side</source>
       <translation>Comparar Ficheiros lado-a-lado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3009" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare &amp;Files side by side...</source>
       <translation>Comparar &amp;Ficheiros lado-a-lado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3017" />
+      <location filename="../UI/UserInterface.py" line="3016" />
       <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="3027" />
+      <location filename="../UI/UserInterface.py" line="3026" />
       <source>SQL Browser</source>
       <translation>Navegador SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3028" />
       <source>SQL &amp;Browser...</source>
       <translation>Navegador S&amp;QL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3035" />
+      <location filename="../UI/UserInterface.py" line="3034" />
       <source>Browse a SQL database</source>
       <translation>Navegar numa base de dados SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3037" />
+      <location filename="../UI/UserInterface.py" line="3036" />
       <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="3051" />
-      <location filename="../UI/UserInterface.py" line="3043" />
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <location filename="../UI/UserInterface.py" line="3042" />
       <source>Mini Editor</source>
       <translation>Mini Editor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3045" />
+      <location filename="../UI/UserInterface.py" line="3044" />
       <source>Mini &amp;Editor...</source>
       <translation>Mini &amp;Editor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3053" />
+      <location filename="../UI/UserInterface.py" line="3052" />
       <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="3062" />
+      <location filename="../UI/UserInterface.py" line="3061" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3064" />
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
+      <location filename="../UI/UserInterface.py" line="3069" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3072" />
+      <location filename="../UI/UserInterface.py" line="3071" />
       <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="3082" />
+      <location filename="../UI/UserInterface.py" line="3081" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3084" />
+      <location filename="../UI/UserInterface.py" line="3083" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3089" />
       <source>Start the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3092" />
+      <location filename="../UI/UserInterface.py" line="3091" />
       <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="3101" />
+      <location filename="../UI/UserInterface.py" line="3100" />
       <source>Icon Editor</source>
       <translation>Editor de Ícones</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3103" />
+      <location filename="../UI/UserInterface.py" line="3102" />
       <source>&amp;Icon Editor...</source>
       <translation>Editor de &amp;Ícones...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3109" />
+      <location filename="../UI/UserInterface.py" line="3108" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
+      <location filename="../UI/UserInterface.py" line="3110" />
       <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="3120" />
+      <location filename="../UI/UserInterface.py" line="3119" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3122" />
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3128" />
+      <location filename="../UI/UserInterface.py" line="3127" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3129" />
       <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="3140" />
+      <location filename="../UI/UserInterface.py" line="3139" />
       <source>Preferences</source>
       <translation>Preferências</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3142" />
+      <location filename="../UI/UserInterface.py" line="3141" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Preferências...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3147" />
       <source>Set the prefered configuration</source>
       <translation>Definir a configuração desejada</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3149" />
       <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="3161" />
+      <location filename="../UI/UserInterface.py" line="3160" />
       <source>Export Preferences</source>
       <translation>Exportar Preferências</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3163" />
+      <location filename="../UI/UserInterface.py" line="3162" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;xportar Preferências...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3169" />
+      <location filename="../UI/UserInterface.py" line="3168" />
       <source>Export the current configuration</source>
       <translation>Exportar a configuração atual</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="3170" />
       <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="3180" />
+      <location filename="../UI/UserInterface.py" line="3179" />
       <source>Import Preferences</source>
       <translation>Importar Preferências</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3182" />
+      <location filename="../UI/UserInterface.py" line="3181" />
       <source>I&amp;mport Preferences...</source>
       <translation>&amp;Importar Preferências...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3188" />
       <source>Import a previously exported configuration</source>
       <translation>Importar uma configuração exportada antes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3192" />
+      <location filename="../UI/UserInterface.py" line="3191" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3200" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3203" />
+      <location filename="../UI/UserInterface.py" line="3202" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3209" />
+      <location filename="../UI/UserInterface.py" line="3208" />
       <source>Export the current theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
+      <location filename="../UI/UserInterface.py" line="3210" />
       <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="3220" />
+      <location filename="../UI/UserInterface.py" line="3219" />
       <source>Import Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3222" />
+      <location filename="../UI/UserInterface.py" line="3221" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3228" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
+      <location filename="../UI/UserInterface.py" line="3229" />
       <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="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload APIs</source>
       <translation>Recarregar APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload &amp;APIs</source>
       <translation>Recarregar &amp;APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3241" />
+      <location filename="../UI/UserInterface.py" line="3240" />
       <source>Reload the API information</source>
       <translation>Recarregar a informação de API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3243" />
+      <location filename="../UI/UserInterface.py" line="3242" />
       <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="3257" />
-      <location filename="../UI/UserInterface.py" line="3249" />
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <location filename="../UI/UserInterface.py" line="3248" />
       <source>Show external tools</source>
       <translation>Mostrar ferramentas externas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
+      <location filename="../UI/UserInterface.py" line="3250" />
       <source>Show external &amp;tools</source>
       <translation>Mostrar &amp;ferramentas externas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3258" />
       <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="3269" />
+      <location filename="../UI/UserInterface.py" line="3268" />
       <source>View Profiles</source>
       <translation>Perfiles de Vista</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
+      <location filename="../UI/UserInterface.py" line="3270" />
       <source>&amp;View Profiles...</source>
       <translation>Perfiles de &amp;Vista...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3277" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Configure view profiles</source>
       <translation>Configurar perfiles de vista</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
+      <location filename="../UI/UserInterface.py" line="3278" />
       <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="3290" />
+      <location filename="../UI/UserInterface.py" line="3289" />
       <source>Toolbars</source>
       <translation>Barras de Ferramentas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3292" />
+      <location filename="../UI/UserInterface.py" line="3291" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Barras de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
+      <location filename="../UI/UserInterface.py" line="3297" />
       <source>Configure toolbars</source>
       <translation>Configurar as barras de ferramentas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3299" />
       <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="3311" />
+      <location filename="../UI/UserInterface.py" line="3310" />
       <source>Keyboard Shortcuts</source>
       <translation>Atalhos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3313" />
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Atalho&amp;s de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3319" />
+      <location filename="../UI/UserInterface.py" line="3318" />
       <source>Set the keyboard shortcuts</source>
       <translation>Definir os atalhos de teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
+      <location filename="../UI/UserInterface.py" line="3320" />
       <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="7335" />
-      <location filename="../UI/UserInterface.py" line="7316" />
-      <location filename="../UI/UserInterface.py" line="3331" />
+      <location filename="../UI/UserInterface.py" line="7334" />
+      <location filename="../UI/UserInterface.py" line="7315" />
+      <location filename="../UI/UserInterface.py" line="3330" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportar Atalhos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3333" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Exportar Atalhos de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
+      <location filename="../UI/UserInterface.py" line="3338" />
       <source>Export the keyboard shortcuts</source>
       <translation>Exportar os Atalhos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3341" />
+      <location filename="../UI/UserInterface.py" line="3340" />
       <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="7354" />
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="7353" />
+      <location filename="../UI/UserInterface.py" line="3349" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importar Atalhos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3352" />
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Importar Atalhos de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="3357" />
       <source>Import the keyboard shortcuts</source>
       <translation>Importar os atalhos de teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3359" />
       <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="3370" />
+      <location filename="../UI/UserInterface.py" line="3369" />
       <source>Manage SSL Certificates</source>
       <translation>Gestionar Certificados SSL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3372" />
+      <location filename="../UI/UserInterface.py" line="3371" />
       <source>Manage SSL Certificates...</source>
       <translation>Gestionar Certificados SSL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3378" />
       <source>Manage the saved SSL certificates</source>
       <translation>Gestionar certificados SSL gravados</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3382" />
+      <location filename="../UI/UserInterface.py" line="3381" />
       <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="3392" />
+      <location filename="../UI/UserInterface.py" line="3391" />
       <source>Edit Message Filters</source>
       <translation>Editar Filtros de Mensagens</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3394" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Edit Message Filters...</source>
       <translation>Editar Filtros de Mensagens...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="3400" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3404" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <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="3423" />
-      <location filename="../UI/UserInterface.py" line="3417" />
-      <location filename="../UI/UserInterface.py" line="3415" />
+      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Clear private data</source>
       <translation type="unfinished">Limpar dados privados</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3425" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <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="3435" />
+      <location filename="../UI/UserInterface.py" line="3434" />
+      <source>Activate current editor</source>
+      <translation>Ativar o editor atual</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3436" />
-      <location filename="../UI/UserInterface.py" line="3435" />
-      <source>Activate current editor</source>
-      <translation>Ativar o editor atual</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Alt+Shift+E</source>
       <translation />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3447" />
+      <location filename="../UI/UserInterface.py" line="3446" />
+      <source>Show next</source>
+      <translation>Mostrar próximo</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3448" />
-      <location filename="../UI/UserInterface.py" line="3447" />
-      <source>Show next</source>
-      <translation>Mostrar próximo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
       <source>Ctrl+Alt+Tab</source>
       <translation />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3458" />
+      <source>Show previous</source>
+      <translation>Mostrar anterior</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3460" />
-      <location filename="../UI/UserInterface.py" line="3459" />
-      <source>Show previous</source>
-      <translation>Mostrar anterior</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3461" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Switch between tabs</source>
+      <translation>Mudar entre separadores</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3472" />
-      <location filename="../UI/UserInterface.py" line="3471" />
-      <source>Switch between tabs</source>
-      <translation>Mudar entre separadores</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Ctrl+1</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
       <source>Plugin Infos</source>
       <translation>Informação dos Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3485" />
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>&amp;Plugin Infos...</source>
       <translation>Informação dos &amp;Complementos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
+      <location filename="../UI/UserInterface.py" line="3490" />
       <source>Show Plugin Infos</source>
       <translation>Mostrar Informação dos Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
+      <location filename="../UI/UserInterface.py" line="3492" />
       <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="3511" />
-      <location filename="../UI/UserInterface.py" line="3503" />
+      <location filename="../UI/UserInterface.py" line="3510" />
+      <location filename="../UI/UserInterface.py" line="3502" />
       <source>Install Plugins</source>
       <translation>Instalar Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3504" />
       <source>&amp;Install Plugins...</source>
       <translation>&amp;Instalar Complementos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
+      <location filename="../UI/UserInterface.py" line="3512" />
       <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="3530" />
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Uninstall Plugin</source>
       <translation>Desinstalar Complemento</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3524" />
+      <location filename="../UI/UserInterface.py" line="3523" />
       <source>&amp;Uninstall Plugin...</source>
       <translation>&amp;Desinstalar Complemento...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <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="3543" />
+      <location filename="../UI/UserInterface.py" line="3542" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Repositório de Complementos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <source>Show Plugins available for download</source>
       <translation>Mostrar Complementos disponíveis para descarregar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3551" />
+      <location filename="../UI/UserInterface.py" line="3550" />
       <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="3578" />
       <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="3576" />
       <source>Qt5 Documentation</source>
       <translation>Documentação de Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3584" />
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Open Qt5 Documentation</source>
       <translation>Abrir a Documentação de Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3599" />
       <location filename="../UI/UserInterface.py" line="3598" />
+      <location filename="../UI/UserInterface.py" line="3597" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Documentação de Qt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3605" />
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">Abrir a Documentação de Qt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3606" />
       <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="3620" />
       <location filename="../UI/UserInterface.py" line="3619" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>PyQt5 Documentation</source>
       <translation>Documentação do PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3626" />
+      <location filename="../UI/UserInterface.py" line="3625" />
       <source>Open PyQt5 Documentation</source>
       <translation>Abrir a Documentação de PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3627" />
       <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="3641" />
       <location filename="../UI/UserInterface.py" line="3640" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">Documentação do PyQt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3647" />
+      <location filename="../UI/UserInterface.py" line="3646" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">Abrir a Documentação de PyQt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3648" />
       <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="3667" />
       <location filename="../UI/UserInterface.py" line="3666" />
+      <location filename="../UI/UserInterface.py" line="3665" />
       <source>Python 3 Documentation</source>
       <translation>Documentação de Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3673" />
+      <location filename="../UI/UserInterface.py" line="3672" />
       <source>Open Python 3 Documentation</source>
       <translation>Abrir a Documentação de Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <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="3694" />
       <location filename="../UI/UserInterface.py" line="3693" />
+      <location filename="../UI/UserInterface.py" line="3692" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3700" />
+      <location filename="../UI/UserInterface.py" line="3699" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
       <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="3720" />
       <location filename="../UI/UserInterface.py" line="3719" />
+      <location filename="../UI/UserInterface.py" line="3718" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3726" />
+      <location filename="../UI/UserInterface.py" line="3725" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
       <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="3746" />
       <location filename="../UI/UserInterface.py" line="3745" />
+      <location filename="../UI/UserInterface.py" line="3744" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3752" />
+      <location filename="../UI/UserInterface.py" line="3751" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <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="3854" />
+      <location filename="../UI/UserInterface.py" line="3853" />
       <source>E&amp;xtras</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
+      <location filename="../UI/UserInterface.py" line="3863" />
       <source>Wi&amp;zards</source>
       <translation>A&amp;ssistentes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3882" />
+      <location filename="../UI/UserInterface.py" line="3881" />
       <source>P&amp;lugins</source>
       <translation>Comp&amp;lementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3891" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3900" />
+      <location filename="../UI/UserInterface.py" line="3899" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3917" />
+      <location filename="../UI/UserInterface.py" line="3916" />
       <source>Select Tool Group</source>
       <translation>Selecionar Grupo de Ferramentas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Se&amp;ttings</source>
       <translation>Definiçõe&amp;s</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3961" />
+      <location filename="../UI/UserInterface.py" line="3960" />
       <source>&amp;Window</source>
       <translation>&amp;Janela</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3970" />
+      <location filename="../UI/UserInterface.py" line="3969" />
       <source>&amp;Windows</source>
       <translation>&amp;Janelas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3974" />
+      <location filename="../UI/UserInterface.py" line="3973" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3978" />
+      <location filename="../UI/UserInterface.py" line="3977" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3997" />
+      <location filename="../UI/UserInterface.py" line="3996" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4016" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4024" />
+      <location filename="../UI/UserInterface.py" line="4023" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4030" />
+      <location filename="../UI/UserInterface.py" line="4029" />
       <source>&amp;Toolbars</source>
       <translation>Barras de Ferramen&amp;tas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4043" />
+      <location filename="../UI/UserInterface.py" line="4042" />
       <source>&amp;Help</source>
       <translation>&amp;Ajuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="4112" />
+      <location filename="../UI/UserInterface.py" line="4089" />
       <source>Tools</source>
       <translation>Ferramentas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4115" />
-      <location filename="../UI/UserInterface.py" line="4094" />
+      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4093" />
       <source>Settings</source>
       <translation>Definições</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6148" />
+      <location filename="../UI/UserInterface.py" line="6147" />
+      <location filename="../UI/UserInterface.py" line="4115" />
+      <location filename="../UI/UserInterface.py" line="4094" />
+      <source>Help</source>
+      <translation>Ajuda</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4116" />
       <location filename="../UI/UserInterface.py" line="4095" />
-      <source>Help</source>
-      <translation>Ajuda</translation>
+      <source>Profiles</source>
+      <translation>Perfiles</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="4117" />
       <location filename="../UI/UserInterface.py" line="4096" />
-      <source>Profiles</source>
-      <translation>Perfiles</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4118" />
-      <location filename="../UI/UserInterface.py" line="4097" />
       <source>Plugins</source>
       <translation>Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4113" />
       <source>Unittest</source>
       <translation>Teste Unitário</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4286" />
+      <location filename="../UI/UserInterface.py" line="4285" />
       <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="4295" />
+      <location filename="../UI/UserInterface.py" line="4294" />
       <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="4304" />
+      <location filename="../UI/UserInterface.py" line="4303" />
       <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="4313" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4322" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4331" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4345" />
+      <location filename="../UI/UserInterface.py" line="4344" />
       <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="4416" />
-      <location filename="../UI/UserInterface.py" line="4375" />
+      <location filename="../UI/UserInterface.py" line="4415" />
+      <location filename="../UI/UserInterface.py" line="4374" />
       <source>External Tools/{0}</source>
       <translation>Ferramentas Externas/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4524" />
+      <location filename="../UI/UserInterface.py" line="4523" />
       <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="4573" />
+      <location filename="../UI/UserInterface.py" line="4572" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4590" />
+      <location filename="../UI/UserInterface.py" line="4589" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4593" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4597" />
+      <location filename="../UI/UserInterface.py" line="4596" />
       <source>&lt;/table&gt;</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4633" />
       <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="4948" />
+      <source>Restart application</source>
+      <translation>Reiniciar a aplicação</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4949" />
-      <source>Restart application</source>
-      <translation>Reiniciar a aplicação</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4950" />
       <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="4973" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4974" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4975" />
       <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="5024" />
+      <location filename="../UI/UserInterface.py" line="4998" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="4999" />
+      <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="5025" />
-      <location filename="../UI/UserInterface.py" line="4999" />
-      <source>Upgrade Eric</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5000" />
-      <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="5026" />
       <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="5084" />
+      <location filename="../UI/UserInterface.py" line="5083" />
       <source>&amp;Builtin Tools</source>
       <translation>Ferramentas &amp;Internas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5101" />
+      <location filename="../UI/UserInterface.py" line="5100" />
       <source>&amp;Plugin Tools</source>
       <translation>Ferramentas dos &amp;Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5103" />
       <source>&amp;User Tools</source>
       <translation>Ferramentas de &amp;Utilizador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5130" />
+      <location filename="../UI/UserInterface.py" line="5129" />
       <source>Configure Tool Groups ...</source>
       <translation>Configurar Grupos de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5134" />
+      <location filename="../UI/UserInterface.py" line="5133" />
       <source>Configure current Tool Group ...</source>
       <translation>Configurar o atual Grupo de Ferramentas ...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5173" />
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5172" />
+      <location filename="../UI/UserInterface.py" line="5152" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5247" />
+      <location filename="../UI/UserInterface.py" line="5246" />
       <source>&amp;Show all</source>
       <translation>&amp;Mostrar tudo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5249" />
+      <location filename="../UI/UserInterface.py" line="5248" />
       <source>&amp;Hide all</source>
       <translation>&amp;Esconder tudo</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6282" />
+      <location filename="../UI/UserInterface.py" line="6271" />
+      <location filename="../UI/UserInterface.py" line="6223" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6049" />
+      <location filename="../UI/UserInterface.py" line="6039" />
+      <location filename="../UI/UserInterface.py" line="5982" />
+      <location filename="../UI/UserInterface.py" line="5972" />
+      <source>Problem</source>
+      <translation>Problema</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6283" />
       <location filename="../UI/UserInterface.py" line="6272" />
       <location filename="../UI/UserInterface.py" line="6224" />
@@ -85317,311 +85350,299 @@
       <location filename="../UI/UserInterface.py" line="6040" />
       <location filename="../UI/UserInterface.py" line="5983" />
       <location filename="../UI/UserInterface.py" line="5973" />
-      <source>Problem</source>
-      <translation>Problema</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6273" />
-      <location filename="../UI/UserInterface.py" line="6225" />
-      <location filename="../UI/UserInterface.py" line="6215" />
-      <location filename="../UI/UserInterface.py" line="6051" />
-      <location filename="../UI/UserInterface.py" line="6041" />
-      <location filename="../UI/UserInterface.py" line="5984" />
-      <location filename="../UI/UserInterface.py" line="5974" />
       <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="6496" />
-      <location filename="../UI/UserInterface.py" line="6409" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6296" />
-      <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6164" />
-      <location filename="../UI/UserInterface.py" line="6124" />
-      <location filename="../UI/UserInterface.py" line="6115" />
-      <location filename="../UI/UserInterface.py" line="6081" />
-      <location filename="../UI/UserInterface.py" line="6072" />
-      <location filename="../UI/UserInterface.py" line="6014" />
-      <location filename="../UI/UserInterface.py" line="6005" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6408" />
+      <location filename="../UI/UserInterface.py" line="6318" />
+      <location filename="../UI/UserInterface.py" line="6295" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6163" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
+      <location filename="../UI/UserInterface.py" line="6080" />
+      <location filename="../UI/UserInterface.py" line="6071" />
+      <location filename="../UI/UserInterface.py" line="6013" />
+      <location filename="../UI/UserInterface.py" line="6004" />
       <source>Process Generation Error</source>
       <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6006" />
+      <location filename="../UI/UserInterface.py" line="6005" />
       <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="6015" />
+      <location filename="../UI/UserInterface.py" line="6014" />
       <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="6073" />
+      <location filename="../UI/UserInterface.py" line="6072" />
       <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="6082" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <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="6116" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <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="6125" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <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="6149" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <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="6165" />
+      <location filename="../UI/UserInterface.py" line="6164" />
       <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="6186" />
+      <location filename="../UI/UserInterface.py" line="6185" />
       <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="6238" />
+      <location filename="../UI/UserInterface.py" line="6237" />
       <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="6297" />
+      <location filename="../UI/UserInterface.py" line="6296" />
       <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="6320" />
+      <location filename="../UI/UserInterface.py" line="6319" />
       <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="6410" />
+      <location filename="../UI/UserInterface.py" line="6409" />
       <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="6442" />
+      <location filename="../UI/UserInterface.py" line="6432" />
+      <source>External Tools</source>
+      <translation>Ferramentas Externas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <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="6443" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <source>External Tools</source>
-      <translation>Ferramentas Externas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6434" />
-      <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="6444" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6479" />
+      <location filename="../UI/UserInterface.py" line="6478" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>A iniciar processo '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6497" />
+      <location filename="../UI/UserInterface.py" line="6496" />
       <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="6573" />
+      <location filename="../UI/UserInterface.py" line="6572" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Processo '{0}' saiu.</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6857" />
+      <location filename="../UI/UserInterface.py" line="6795" />
+      <location filename="../UI/UserInterface.py" line="6751" />
+      <location filename="../UI/UserInterface.py" line="6679" />
+      <location filename="../UI/UserInterface.py" line="6615" />
+      <source>Documentation Missing</source>
+      <translation>Falta a Documentação</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6858" />
       <location filename="../UI/UserInterface.py" line="6796" />
       <location filename="../UI/UserInterface.py" line="6752" />
       <location filename="../UI/UserInterface.py" line="6680" />
       <location filename="../UI/UserInterface.py" line="6616" />
-      <source>Documentation Missing</source>
-      <translation>Falta a Documentação</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6859" />
-      <location filename="../UI/UserInterface.py" line="6797" />
-      <location filename="../UI/UserInterface.py" line="6753" />
-      <location filename="../UI/UserInterface.py" line="6681" />
-      <location filename="../UI/UserInterface.py" line="6617" />
       <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="6839" />
+      <location filename="../UI/UserInterface.py" line="6723" />
+      <source>Documentation</source>
+      <translation>Documentação</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6724" />
+      <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="6840" />
-      <location filename="../UI/UserInterface.py" line="6724" />
-      <source>Documentation</source>
-      <translation>Documentação</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6725" />
-      <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="6841" />
       <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="7020" />
+      <location filename="../UI/UserInterface.py" line="6955" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6956" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7021" />
-      <location filename="../UI/UserInterface.py" line="6956" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6957" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7022" />
       <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="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Open Browser</source>
       <translation>Abrir Navegador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <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="7318" />
+      <location filename="../UI/UserInterface.py" line="7317" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7336" />
+      <location filename="../UI/UserInterface.py" line="7335" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7538" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7539" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7540" />
       <source>&lt;p&gt;The tasks 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="7583" />
+      <location filename="../UI/UserInterface.py" line="7582" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7611" />
-      <location filename="../UI/UserInterface.py" line="7584" />
-      <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="7610" />
+      <location filename="../UI/UserInterface.py" line="7583" />
+      <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="7609" />
       <source>Read session</source>
       <translation>Sessão de leitura</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7627" />
+      <location filename="../UI/UserInterface.py" line="7626" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7629" />
+      <location filename="../UI/UserInterface.py" line="7628" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7652" />
+      <location filename="../UI/UserInterface.py" line="7651" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7697" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7698" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7699" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8058" />
+      <source>Drop Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8059" />
-      <source>Drop Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8060" />
       <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="8233" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8234" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8235" />
       <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;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8285" />
+      <location filename="../UI/UserInterface.py" line="8272" />
+      <source>First time usage</source>
+      <translation>Usado a primeira vez</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8273" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8286" />
-      <location filename="../UI/UserInterface.py" line="8273" />
-      <source>First time usage</source>
-      <translation>Usado a primeira vez</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8274" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8287" />
       <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="8310" />
+      <location filename="../UI/UserInterface.py" line="8309" />
       <source>Select Workspace Directory</source>
       <translation>Selecionar o Diretório de Trabalho</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8490" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8491" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8492" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -85706,7 +85727,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1616" />
+      <location filename="../Utilities/__init__.py" line="1615" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Pode usar códigos % como espaços reservados dentro da string. Os códigos suportados são:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;coluna do cursor do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directório do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nome do ficheiro do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;diretório home do usuário atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;linha do cursor do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;rota do projeto atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;texto selecionado do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;nome de usuário do usuário atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;sinal de percentagem&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_ru.ts	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/i18n/eric7_ru.ts	Fri Nov 25 11:51:51 2022 +0100
@@ -5544,7 +5544,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="206" />
+      <location filename="../Utilities/__init__.py" line="205" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>Кодировка '{0}' не подходит для выбранного текста.</translation>
     </message>
@@ -8910,88 +8910,89 @@
       <translation>Состояние</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="221" />
+      <location filename="../Debugger/DebugViewer.py" line="149" />
+      <source>Source</source>
+      <translation>Исходный текст</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Don't Show</source>
       <translation>Не показывать</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Show Only</source>
       <translation>Только показывать</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="233" />
-      <location filename="../Debugger/DebugViewer.py" line="162" />
+      <location filename="../Debugger/DebugViewer.py" line="248" />
+      <location filename="../Debugger/DebugViewer.py" line="176" />
       <source>Enter regular expression patterns separated by ';' to define variable filters. </source>
       <translation>Задайте для фильтров переменных маски регулярных выражений, разделённые ';'. </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="239" />
-      <location filename="../Debugger/DebugViewer.py" line="168" />
-      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
-      <translation>Задайте для фильтров переменных регулярные выражения, разделённые ';'. Все переменные и атрибуты классов, совпавшие с одним из этих выражений, не показываются в списке выше.</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="246" />
-      <location filename="../Debugger/DebugViewer.py" line="176" />
-      <source>Set</source>
-      <translation>Установить</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="184" />
-      <source>Shows the list of global variables and their values.</source>
-      <translation>Отображение списка глобальных переменных и их значений.</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="206" />
-      <source>Source</source>
-      <translation>Исходный текст</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugViewer.py" line="254" />
+      <location filename="../Debugger/DebugViewer.py" line="182" />
+      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
+      <translation>Задайте для фильтров переменных регулярные выражения, разделённые ';'. Все переменные и атрибуты классов, совпавшие с одним из этих выражений, не показываются в списке выше.</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="261" />
+      <location filename="../Debugger/DebugViewer.py" line="190" />
+      <source>Set</source>
+      <translation>Установить</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="198" />
+      <source>Shows the list of global variables and their values.</source>
+      <translation>Отображение списка глобальных переменных и их значений.</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="269" />
       <source>Shows the list of local variables and their values.</source>
       <translation>Отображение списка глобальных переменных и их значений.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="271" />
+      <location filename="../Debugger/DebugViewer.py" line="295" />
       <source>Shows the current call stack.</source>
       <translation>Отображение текущего стека вызовов.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="281" />
+      <location filename="../Debugger/DebugViewer.py" line="305" />
       <source>Shows a trace of the program flow.</source>
       <translation>Отображение трека выполнения программы.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="292" />
+      <location filename="../Debugger/DebugViewer.py" line="316" />
       <source>Shows a list of defined breakpoints.</source>
       <translation>Отображение списка определенных точек останова.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="303" />
+      <location filename="../Debugger/DebugViewer.py" line="327" />
       <source>Shows a list of defined watchpoints.</source>
       <translation>Отображение списка определенных точек наблюдения.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="312" />
+      <location filename="../Debugger/DebugViewer.py" line="336" />
       <source>Shows a list of raised exceptions.</source>
       <translation>Отображение списка возникших исключений.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="323" />
+      <location filename="../Debugger/DebugViewer.py" line="347" />
       <source>Shows a code disassembly in case of an exception.</source>
       <translation>Отображение дизассемблированного кода в случае исключения.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="749" />
+      <location filename="../Debugger/DebugViewer.py" line="790" />
       <source>&lt;p&gt;Debugger with ID &lt;b&gt;{0}&lt;/b&gt; has been connected.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Подключен отладчик с ID &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="992" />
-      <location filename="../Debugger/DebugViewer.py" line="864" />
+      <location filename="../Debugger/DebugViewer.py" line="1033" />
+      <location filename="../Debugger/DebugViewer.py" line="905" />
       <source>unknown state ({0})</source>
       <translation>неизвестное состояние ({0})</translation>
     </message>
@@ -9476,26 +9477,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
       <source>Add allowed host</source>
       <translation>Добавить допустимый хост</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="343" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="307" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Задайте IP-адрес допустимого хоста</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="357" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="320" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Введённый адрес &lt;b&gt;{0}&lt;/b&gt; не является верным IP v4 или IP v6 адресом. Прервано...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
       <source>Edit allowed host</source>
       <translation>Редактировать допустимый хост</translation>
     </message>
@@ -20896,7 +20897,7 @@
       <translation>Добавить/Изменить</translation>
     </message>
     <message>
-      <location filename="../Project/FiletypeAssociationDialog.py" line="56" />
+      <location filename="../Project/FiletypeAssociationDialog.py" line="58" />
       <location filename="../Project/FiletypeAssociationDialog.py" line="45" />
       <source>Ignore</source>
       <translation>Пропустить</translation>
@@ -46845,7 +46846,7 @@
       <translation>Pygments</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="462" />
+      <location filename="../Preferences/__init__.py" line="461" />
       <location filename="../QScintilla/Lexers/__init__.py" line="386" />
       <source>Python Files (*.py *.py3)</source>
       <translation>Файлы Python (*.py *.py3)</translation>
@@ -47098,7 +47099,7 @@
       <translation>Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="465" />
+      <location filename="../Preferences/__init__.py" line="464" />
       <location filename="../QScintilla/Lexers/__init__.py" line="479" />
       <source>Python3 Files (*.py)</source>
       <translation>Файлы Python3 (*.py)</translation>
@@ -55688,18 +55689,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1608" />
+      <location filename="../Preferences/__init__.py" line="1653" />
       <source>Export Preferences</source>
       <translation>Экспорт Preferences</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1637" />
-      <location filename="../Preferences/__init__.py" line="1610" />
+      <location filename="../Preferences/__init__.py" line="1682" />
+      <location filename="../Preferences/__init__.py" line="1655" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Файлы Preferences (*.ini);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1635" />
+      <location filename="../Preferences/__init__.py" line="1680" />
       <source>Import Preferences</source>
       <translation>Импорт Preferences</translation>
     </message>
@@ -55720,7 +55721,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="472" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
       <source>Variable Name</source>
       <translation>Имя переменной</translation>
     </message>
@@ -56565,7 +56566,7 @@
       <translation>Переименовать файл</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3311" />
+      <location filename="../Project/Project.py" line="3313" />
       <location filename="../Project/Project.py" line="2130" />
       <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>
@@ -56596,154 +56597,154 @@
       <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="2517" />
+      <location filename="../Project/Project.py" line="2518" />
       <source>Create project directory</source>
       <translation>Создать директорию проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2518" />
+      <location filename="../Project/Project.py" line="2519" />
       <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="3115" />
-      <location filename="../Project/Project.py" line="2579" />
-      <source>Create project management directory</source>
-      <translation>Создать служебную директорию проекта</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3116" />
       <location filename="../Project/Project.py" line="2580" />
+      <source>Create project management directory</source>
+      <translation>Создать служебную директорию проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3117" />
+      <location filename="../Project/Project.py" line="2581" />
       <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="2600" />
-      <source>Create main script</source>
-      <translation>Создать главный сценарий</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2601" />
+      <source>Create main script</source>
+      <translation>Создать главный сценарий</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2602" />
       <source>&lt;p&gt;The mainscript &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="2922" />
-      <location filename="../Project/Project.py" line="2625" />
-      <source>Create Makefile</source>
-      <translation>Создать Makefile</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2923" />
       <location filename="../Project/Project.py" line="2626" />
+      <source>Create Makefile</source>
+      <translation>Создать Makefile</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2924" />
+      <location filename="../Project/Project.py" line="2627" />
       <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="3144" />
-      <location filename="../Project/Project.py" line="2764" />
-      <location filename="../Project/Project.py" line="2735" />
-      <location filename="../Project/Project.py" line="2691" />
-      <location filename="../Project/Project.py" line="2666" />
-      <location filename="../Project/Project.py" line="2636" />
-      <source>New Project</source>
-      <translation>Новый проект</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2637" />
-      <source>Add existing files to the project?</source>
-      <translation>Добавить существующие файлы в проект?</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3145" />
+      <location filename="../Project/Project.py" line="2765" />
+      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2692" />
       <location filename="../Project/Project.py" line="2667" />
+      <location filename="../Project/Project.py" line="2637" />
+      <source>New Project</source>
+      <translation>Новый проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2638" />
+      <source>Add existing files to the project?</source>
+      <translation>Добавить существующие файлы в проект?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3146" />
+      <location filename="../Project/Project.py" line="2668" />
       <source>Select Version Control System</source>
       <translation>Выберите систему контроля версий (VCS)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2765" />
-      <location filename="../Project/Project.py" line="2692" />
+      <location filename="../Project/Project.py" line="2766" />
+      <location filename="../Project/Project.py" line="2693" />
       <source>Would you like to edit the VCS command options?</source>
       <translation>Вы хотите редактировать параметры команд VCS?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4082" />
-      <location filename="../Project/Project.py" line="2707" />
+      <location filename="../Project/Project.py" line="4085" />
+      <location filename="../Project/Project.py" line="2708" />
       <source>New project</source>
       <translation>Новый проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2708" />
+      <location filename="../Project/Project.py" line="2709" />
       <source>Shall the project file be added to the repository?</source>
       <translation>Должен ли файл проекта быть добавлен в репозиторий?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2741" />
-      <location filename="../Project/Project.py" line="2729" />
+      <location filename="../Project/Project.py" line="2742" />
+      <location filename="../Project/Project.py" line="2730" />
       <source>None</source>
       <translation>None</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2737" />
       <source>Select version control system for the project</source>
       <translation>Выберите систему контроля версий для проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2848" />
-      <source>Translation Pattern</source>
-      <translation>Шаблон перевода</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2849" />
+      <source>Translation Pattern</source>
+      <translation>Шаблон перевода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2850" />
       <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="4102" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="4105" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Open project</source>
       <translation>Открыть проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3096" />
+      <location filename="../Project/Project.py" line="3097" />
       <source>Project Files (*.epj);;XML Project Files (*.e4p)</source>
       <translation>Файлы проекта (*.epj);;XML-файлы проекта (*.e4p)</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="3298" />
+      <location filename="../Project/Project.py" line="3288" />
+      <source>Project Files (*.epj)</source>
+      <translation>Файлы проекта (*.epj)</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="3296" />
-      <location filename="../Project/Project.py" line="3286" />
-      <source>Project Files (*.epj)</source>
-      <translation>Файлы проекта (*.epj)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3294" />
       <source>Save Project</source>
       <translation>Сохранить проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3310" />
+      <location filename="../Project/Project.py" line="3312" />
       <source>Save File</source>
       <translation>Сохранить файл</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3349" />
+      <location filename="../Project/Project.py" line="3351" />
       <source>Close Project</source>
       <translation>Закрыть проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3350" />
+      <location filename="../Project/Project.py" line="3352" />
       <source>The current project has unsaved changes.</source>
       <translation>Изменения в текущем проекте не сохранены.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3538" />
-      <location filename="../Project/Project.py" line="3504" />
+      <location filename="../Project/Project.py" line="3541" />
+      <location filename="../Project/Project.py" line="3507" />
       <source>Syntax errors detected</source>
       <translation>Найдены синтаксические ошибки</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="3539" />
-      <location filename="../Project/Project.py" line="3505" />
+      <location filename="../Project/Project.py" line="3542" />
+      <location filename="../Project/Project.py" line="3508" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Проект содержит %n файл с синтаксической ошибкой.</numerusform>
@@ -56752,394 +56753,414 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4084" />
+      <location filename="../Project/Project.py" line="4087" />
       <source>&amp;New...</source>
       <translation>&amp;Новый...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4090" />
+      <location filename="../Project/Project.py" line="4093" />
       <source>Generate a new project</source>
       <translation>Создать новый проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4092" />
+      <location filename="../Project/Project.py" line="4095" />
       <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="4104" />
+      <location filename="../Project/Project.py" line="4107" />
       <source>&amp;Open...</source>
       <translation>&amp;Открыть...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4110" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>Open an existing project</source>
       <translation>Открыть существующий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4115" />
       <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="4118" />
+      <location filename="../Project/Project.py" line="4121" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4123" />
+      <source>&amp;Reload</source>
+      <translation type="unfinished">П&amp;ерезагрузить</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4129" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4131" />
+      <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="4137" />
       <source>Close project</source>
       <translation>Закрыть проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4120" />
+      <location filename="../Project/Project.py" line="4139" />
       <source>&amp;Close</source>
       <translation>&amp;Закрыть</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4126" />
+      <location filename="../Project/Project.py" line="4145" />
       <source>Close the current project</source>
       <translation>Закрыть текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4128" />
+      <location filename="../Project/Project.py" line="4147" />
       <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="4134" />
+      <location filename="../Project/Project.py" line="4153" />
       <source>Save project</source>
       <translation>Сохранить проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4410" />
-      <location filename="../Project/Project.py" line="4136" />
+      <location filename="../Project/Project.py" line="4429" />
+      <location filename="../Project/Project.py" line="4155" />
       <source>&amp;Save</source>
       <translation>&amp;Сохранить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4142" />
+      <location filename="../Project/Project.py" line="4161" />
       <source>Save the current project</source>
       <translation>Сохранить текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4144" />
+      <location filename="../Project/Project.py" line="4163" />
       <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="4150" />
+      <location filename="../Project/Project.py" line="4169" />
       <source>Save project as</source>
       <translation>Сохранить проект как</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4152" />
+      <location filename="../Project/Project.py" line="4171" />
       <source>Save &amp;as...</source>
       <translation>Сохранить &amp;как...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4158" />
-      <source>Save the current project to a new file</source>
-      <translation>Сохранить текущий проект в новый файл</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4160" />
-      <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="4175" />
-      <source>Add files to project</source>
-      <translation>Добавить файлы в проект</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4177" />
-      <source>Add &amp;files...</source>
-      <translation>Добавить &amp;файлы...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4183" />
-      <source>Add files to the current project</source>
-      <translation>Добавить файлы в текущий проект</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4185" />
-      <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>
+      <source>Save the current project to a new file</source>
+      <translation>Сохранить текущий проект в новый файл</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4179" />
+      <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="4194" />
+      <source>Add files to project</source>
+      <translation>Добавить файлы в проект</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4196" />
+      <source>Add &amp;files...</source>
+      <translation>Добавить &amp;файлы...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4202" />
+      <source>Add files to the current project</source>
+      <translation>Добавить файлы в текущий проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4204" />
+      <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="4215" />
       <source>Add directory to project</source>
       <translation>Добавить директорию в проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4198" />
+      <location filename="../Project/Project.py" line="4217" />
       <source>Add directory...</source>
       <translation>Добавить директорию...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4205" />
+      <location filename="../Project/Project.py" line="4224" />
       <source>Add a directory to the current project</source>
       <translation>Добавить директорию в текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4208" />
+      <location filename="../Project/Project.py" line="4227" />
       <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="4218" />
+      <location filename="../Project/Project.py" line="4237" />
       <source>Add translation to project</source>
       <translation>Добавить перевод в проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4220" />
+      <location filename="../Project/Project.py" line="4239" />
       <source>Add &amp;translation...</source>
       <translation>Добавить &amp;перевод...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4227" />
+      <location filename="../Project/Project.py" line="4246" />
       <source>Add a translation to the current project</source>
       <translation>Добавить перевод в текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4230" />
-      <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="4240" />
-      <source>Search new files</source>
-      <translation>Поиск новых файлов</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4241" />
-      <source>Searc&amp;h new files...</source>
-      <translation>Поис&amp;к новых файлов...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4247" />
-      <source>Search new files in the project directory.</source>
-      <translation>Поиск новых файлов в директории проекта.</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4249" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Поиск новых файлов...&lt;/b&gt;&lt;p&gt; Поиск новых файлов (источники, * .ui, * .idl, * .proto) в директории проекта и зарегистрированных поддиректориях..&lt;/p&gt;</translation>
+      <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="4259" />
+      <source>Search new files</source>
+      <translation>Поиск новых файлов</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4260" />
+      <source>Searc&amp;h new files...</source>
+      <translation>Поис&amp;к новых файлов...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4266" />
+      <source>Search new files in the project directory.</source>
+      <translation>Поиск новых файлов в директории проекта.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4268" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Поиск новых файлов...&lt;/b&gt;&lt;p&gt; Поиск новых файлов (источники, * .ui, * .idl, * .proto) в директории проекта и зарегистрированных поддиректориях..&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4279" />
       <source>Search Project File</source>
       <translation>Поиск файла проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4261" />
+      <location filename="../Project/Project.py" line="4280" />
       <source>Search Project File...</source>
       <translation>Поиск файла проекта...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4262" />
+      <location filename="../Project/Project.py" line="4281" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4267" />
+      <location filename="../Project/Project.py" line="4286" />
       <source>Search for a file in the project list of files.</source>
       <translation>Поиск файла в списке файлов проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4269" />
-      <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="4278" />
-      <source>Project properties</source>
-      <translation>Свойства проекта</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4280" />
-      <source>&amp;Properties...</source>
-      <translation>&amp;Свойства...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4286" />
-      <source>Show the project properties</source>
-      <translation>Показать свойства проекта</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4288" />
-      <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>
+      <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="4297" />
-      <source>User project properties</source>
-      <translation>Пользовательские настройки проекта</translation>
+      <source>Project properties</source>
+      <translation>Свойства проекта</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4299" />
+      <source>&amp;Properties...</source>
+      <translation>&amp;Свойства...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4305" />
+      <source>Show the project properties</source>
+      <translation>Показать свойства проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4307" />
+      <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="4316" />
+      <source>User project properties</source>
+      <translation>Пользовательские настройки проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4318" />
       <source>&amp;User Properties...</source>
       <translation>&amp;Пользовательские свойства...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4306" />
+      <location filename="../Project/Project.py" line="4325" />
       <source>Show the user specific project properties</source>
       <translation>Показать пользовательские свойства проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4309" />
+      <location filename="../Project/Project.py" line="4328" />
       <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="4319" />
+      <location filename="../Project/Project.py" line="4338" />
       <source>Filetype Associations</source>
       <translation>Ассоциации типа файлов</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4320" />
+      <location filename="../Project/Project.py" line="4339" />
       <source>Filetype Associations...</source>
       <translation>Ассоциации типа файлов...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4327" />
+      <location filename="../Project/Project.py" line="4346" />
       <source>Show the project file type associations</source>
       <translation>Показать ассоциации типов файлов для проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4330" />
+      <location filename="../Project/Project.py" line="4349" />
       <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="4343" />
+      <location filename="../Project/Project.py" line="4362" />
       <source>Lexer Associations</source>
       <translation>Ассоциации для лексеров</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4344" />
+      <location filename="../Project/Project.py" line="4363" />
       <source>Lexer Associations...</source>
       <translation>Ассоциации для лексеров...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4351" />
+      <location filename="../Project/Project.py" line="4370" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation>Показать ассоциации для лексеров проекта (переопределяющие по умолчанию)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4354" />
-      <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="4372" />
-      <source>Debugger Properties</source>
-      <translation>Свойства отладчика</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4373" />
-      <source>Debugger &amp;Properties...</source>
-      <translation>&amp;Свойства отладчика...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4379" />
-      <source>Show the debugger properties</source>
-      <translation>Показать свойства отладчика</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4381" />
-      <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>
+      <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="4391" />
-      <source>Load</source>
-      <translation>Загрузить</translation>
+      <source>Debugger Properties</source>
+      <translation>Свойства отладчика</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4392" />
-      <source>&amp;Load</source>
-      <translation>&amp;Загрузить</translation>
+      <source>Debugger &amp;Properties...</source>
+      <translation>&amp;Свойства отладчика...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4398" />
-      <source>Load the debugger properties</source>
-      <translation>Загрузить свойства отладчика</translation>
+      <source>Show the debugger properties</source>
+      <translation>Показать свойства отладчика</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4400" />
+      <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="4410" />
+      <source>Load</source>
+      <translation>Загрузить</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4411" />
+      <source>&amp;Load</source>
+      <translation>&amp;Загрузить</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4417" />
+      <source>Load the debugger properties</source>
+      <translation>Загрузить свойства отладчика</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4419" />
       <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="4409" />
+      <location filename="../Project/Project.py" line="4428" />
       <source>Save</source>
       <translation>Сохранить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4416" />
+      <location filename="../Project/Project.py" line="4435" />
       <source>Save the debugger properties</source>
       <translation>Сохранить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4418" />
+      <location filename="../Project/Project.py" line="4437" />
       <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="4427" />
-      <source>Delete</source>
-      <translation>Удалить</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4428" />
-      <source>&amp;Delete</source>
-      <translation>&amp;Удалить</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4434" />
-      <source>Delete the debugger properties</source>
-      <translation>Удалить свойства отладчика</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4436" />
-      <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="4446" />
-      <source>Reset</source>
-      <translation>Рестарт</translation>
+      <source>Delete</source>
+      <translation>Удалить</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4447" />
-      <source>&amp;Reset</source>
-      <translation>&amp;Рестарт</translation>
+      <source>&amp;Delete</source>
+      <translation>&amp;Удалить</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4453" />
-      <source>Reset the debugger properties</source>
-      <translation>Сбросить свойства отладчика</translation>
+      <source>Delete the debugger properties</source>
+      <translation>Удалить свойства отладчика</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4455" />
+      <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="4465" />
+      <source>Reset</source>
+      <translation>Рестарт</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4466" />
+      <source>&amp;Reset</source>
+      <translation>&amp;Рестарт</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4472" />
+      <source>Reset the debugger properties</source>
+      <translation>Сбросить свойства отладчика</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4474" />
       <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="4471" />
-      <location filename="../Project/Project.py" line="4470" />
+      <location filename="../Project/Project.py" line="4490" />
+      <location filename="../Project/Project.py" line="4489" />
       <source>Load session</source>
       <translation>Загрузить сессию</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4477" />
+      <location filename="../Project/Project.py" line="4496" />
       <source>Load the projects session file.</source>
       <translation>Загрузить файл с сессией проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4479" />
+      <location filename="../Project/Project.py" line="4498" />
       <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;
@@ -57151,18 +57172,18 @@
 &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4495" />
-      <location filename="../Project/Project.py" line="4494" />
+      <location filename="../Project/Project.py" line="4514" />
+      <location filename="../Project/Project.py" line="4513" />
       <source>Save session</source>
       <translation>Сохранить сессию</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4501" />
+      <location filename="../Project/Project.py" line="4520" />
       <source>Save the projects session file.</source>
       <translation>Сохранить файл с сессией проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4503" />
+      <location filename="../Project/Project.py" line="4522" />
       <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;
@@ -57174,747 +57195,747 @@
 &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4519" />
-      <location filename="../Project/Project.py" line="4518" />
+      <location filename="../Project/Project.py" line="4538" />
+      <location filename="../Project/Project.py" line="4537" />
       <source>Delete session</source>
       <translation>Удалить сессию</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4525" />
+      <location filename="../Project/Project.py" line="4544" />
       <source>Delete the projects session file.</source>
       <translation>Удалить файл с сессией проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4527" />
+      <location filename="../Project/Project.py" line="4546" />
       <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="4542" />
+      <location filename="../Project/Project.py" line="4561" />
       <source>Code Metrics</source>
       <translation>Метрики кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4543" />
+      <location filename="../Project/Project.py" line="4562" />
       <source>&amp;Code Metrics...</source>
       <translation>&amp;Метрики кода...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4550" />
+      <location filename="../Project/Project.py" line="4569" />
       <source>Show some code metrics for the project.</source>
       <translation>Отображение некоторых метрик кода проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4553" />
+      <location filename="../Project/Project.py" line="4572" />
       <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="4563" />
+      <location filename="../Project/Project.py" line="4582" />
       <source>Python Code Coverage</source>
       <translation>Покрытие кода Python</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4564" />
+      <location filename="../Project/Project.py" line="4583" />
       <source>Code Co&amp;verage...</source>
       <translation>&amp;Покрытие кода...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4571" />
+      <location filename="../Project/Project.py" line="4590" />
       <source>Show code coverage information for the project.</source>
       <translation>Показать информацию покрытия кода проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4574" />
+      <location filename="../Project/Project.py" line="4593" />
       <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="5894" />
-      <location filename="../Project/Project.py" line="5881" />
-      <location filename="../Project/Project.py" line="4584" />
+      <location filename="../Project/Project.py" line="5914" />
+      <location filename="../Project/Project.py" line="5901" />
+      <location filename="../Project/Project.py" line="4603" />
       <source>Profile Data</source>
       <translation>Данные профайлера</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4585" />
+      <location filename="../Project/Project.py" line="4604" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Данные профайлера...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4592" />
-      <source>Show profiling data for the project.</source>
-      <translation>Отображение результатов профилирования проекта.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4595" />
-      <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="5946" />
-      <location filename="../Project/Project.py" line="4610" />
-      <source>Application Diagram</source>
-      <translation>Диаграмма приложения</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4611" />
-      <source>&amp;Application Diagram...</source>
-      <translation>&amp;Диаграмма приложения...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4618" />
-      <source>Show a diagram of the project.</source>
-      <translation>Показать диаграмму проекта.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4621" />
-      <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>
+      <source>Show profiling data for the project.</source>
+      <translation>Отображение результатов профилирования проекта.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4614" />
+      <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="5966" />
+      <location filename="../Project/Project.py" line="4629" />
+      <source>Application Diagram</source>
+      <translation>Диаграмма приложения</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4630" />
-      <source>Load Diagram</source>
-      <translation>Загрузить диаграмму</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4631" />
-      <source>&amp;Load Diagram...</source>
-      <translation>&amp;Загрузить диаграмму...</translation>
+      <source>&amp;Application Diagram...</source>
+      <translation>&amp;Диаграмма приложения...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4637" />
-      <source>Load a diagram from file.</source>
-      <translation>Загрузить диаграмму из файла.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4639" />
-      <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="6131" />
-      <location filename="../Project/Project.py" line="6080" />
-      <location filename="../Project/Project.py" line="4654" />
-      <source>Create Package List</source>
-      <translation>Создать список пакета</translation>
+      <source>Show a diagram of the project.</source>
+      <translation>Показать диаграмму проекта.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4640" />
+      <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="4649" />
+      <source>Load Diagram</source>
+      <translation>Загрузить диаграмму</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4650" />
+      <source>&amp;Load Diagram...</source>
+      <translation>&amp;Загрузить диаграмму...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4656" />
+      <source>Load a diagram from file.</source>
+      <translation>Загрузить диаграмму из файла.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4658" />
+      <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="6151" />
+      <location filename="../Project/Project.py" line="6100" />
+      <location filename="../Project/Project.py" line="4673" />
+      <source>Create Package List</source>
+      <translation>Создать список пакета</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4675" />
       <source>Create &amp;Package List</source>
       <translation>&amp;Создать список пакета</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4663" />
+      <location filename="../Project/Project.py" line="4682" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation>Создать первичный файл PKGLIST для плагина eric.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4666" />
-      <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="6200" />
-      <location filename="../Project/Project.py" line="4677" />
-      <source>Create Plugin Archives</source>
-      <translation>Создать архивы плагина</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4679" />
-      <source>Create Plugin &amp;Archives</source>
-      <translation>Создать архивы &amp;плагина</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4685" />
+      <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="6220" />
+      <location filename="../Project/Project.py" line="4696" />
+      <source>Create Plugin Archives</source>
+      <translation>Создать архивы плагина</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4698" />
+      <source>Create Plugin &amp;Archives</source>
+      <translation>Создать архивы &amp;плагина</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4704" />
       <source>Create eric plugin archive files.</source>
       <translation>Создание архивных файлов плагина eric.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4687" />
+      <location filename="../Project/Project.py" line="4706" />
       <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="4699" />
+      <location filename="../Project/Project.py" line="4718" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation>Создать архивы плагина (Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4701" />
+      <location filename="../Project/Project.py" line="4720" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation>Создать архивы плагина (&amp;Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4708" />
+      <location filename="../Project/Project.py" line="4727" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation>Создание архивных файлов плагина eric (snapshot releases).</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4711" />
+      <location filename="../Project/Project.py" line="4730" />
       <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="6621" />
-      <location filename="../Project/Project.py" line="6592" />
-      <location filename="../Project/Project.py" line="6543" />
-      <location filename="../Project/Project.py" line="4730" />
+      <location filename="../Project/Project.py" line="6641" />
+      <location filename="../Project/Project.py" line="6612" />
+      <location filename="../Project/Project.py" line="6563" />
+      <location filename="../Project/Project.py" line="4749" />
       <source>Execute Make</source>
       <translation>Выполнить Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4731" />
-      <source>&amp;Execute Make</source>
-      <translation>&amp;Выполнить Make</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4737" />
-      <source>Perform a 'make' run.</source>
-      <translation>Выполнить прогон 'make'.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4739" />
-      <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="6598" />
-      <location filename="../Project/Project.py" line="4749" />
-      <source>Test for Changes</source>
-      <translation>Проверить изменения</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4750" />
+      <source>&amp;Execute Make</source>
+      <translation>&amp;Выполнить Make</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4756" />
+      <source>Perform a 'make' run.</source>
+      <translation>Выполнить прогон 'make'.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4758" />
+      <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="6618" />
+      <location filename="../Project/Project.py" line="4768" />
+      <source>Test for Changes</source>
+      <translation>Проверить изменения</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4769" />
       <source>&amp;Test for Changes</source>
       <translation>&amp;Проверить изменения</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4757" />
+      <location filename="../Project/Project.py" line="4776" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation>Запрос 'make', если необходима пересборка.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4760" />
-      <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="4778" />
-      <source>Create SBOM File</source>
-      <translation>Создать файл SBOM</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4779" />
+      <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="4797" />
+      <source>Create SBOM File</source>
+      <translation>Создать файл SBOM</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4798" />
       <source>Create &amp;SBOM File</source>
       <translation>Создать файл &amp;SBOM</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4786" />
+      <location filename="../Project/Project.py" line="4805" />
       <source>Create a SBOM file of the project dependencies.</source>
       <translation>Создайте SBOM файл зависимостей проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4789" />
+      <location filename="../Project/Project.py" line="4808" />
       <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="4806" />
+      <location filename="../Project/Project.py" line="4825" />
       <source>About Black</source>
       <translation>О Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4826" />
       <source>&amp;Black</source>
       <translation>&amp;Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4813" />
+      <location filename="../Project/Project.py" line="4832" />
       <source>Show some information about 'Black'.</source>
       <translation>Отображение некоторой информации о форматере 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4815" />
+      <location filename="../Project/Project.py" line="4834" />
       <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="4827" />
+      <location filename="../Project/Project.py" line="4846" />
       <source>Format Code</source>
       <translation>Форматировать код</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4847" />
       <source>&amp;Format Code</source>
       <translation>&amp;Форматировать код</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4835" />
+      <location filename="../Project/Project.py" line="4854" />
       <source>Format the project sources with 'Black'.</source>
       <translation>Форматирование исходников проекта с помощью 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4838" />
+      <location filename="../Project/Project.py" line="4857" />
       <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="4850" />
+      <location filename="../Project/Project.py" line="4869" />
       <source>Check Code Formatting</source>
       <translation>Проверить форматирование кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4851" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>&amp;Check Code Formatting</source>
       <translation>&amp;Проверить форматирование кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4858" />
-      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
-      <translation>Проверка возможности переформатирования исходников проекта с помощью 'Black'.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4863" />
-      <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="4876" />
-      <source>Code Formatting Diff</source>
-      <translation>Различия форматирования кода</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4877" />
+      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
+      <translation>Проверка возможности переформатирования исходников проекта с помощью 'Black'.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4882" />
+      <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="4895" />
+      <source>Code Formatting Diff</source>
+      <translation>Различия форматирования кода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
       <source>Code Formatting &amp;Diff</source>
       <translation>&amp;Различия форматирования кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4884" />
+      <location filename="../Project/Project.py" line="4903" />
       <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="4890" />
+      <location filename="../Project/Project.py" line="4909" />
       <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="5055" />
-      <location filename="../Project/Project.py" line="5005" />
-      <location filename="../Project/Project.py" line="5004" />
-      <location filename="../Project/Project.py" line="4904" />
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="5074" />
+      <location filename="../Project/Project.py" line="5024" />
+      <location filename="../Project/Project.py" line="5023" />
+      <location filename="../Project/Project.py" line="4923" />
+      <location filename="../Project/Project.py" line="4922" />
       <source>Configure</source>
       <translation>Конфигурация</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4930" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation>Задание параметров форматирования исходников проекта с помощью  'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4916" />
+      <location filename="../Project/Project.py" line="4935" />
       <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="4932" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>About isort</source>
       <translation>О isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4933" />
+      <location filename="../Project/Project.py" line="4952" />
       <source>&amp;isort</source>
       <translation>&amp;isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4939" />
+      <location filename="../Project/Project.py" line="4958" />
       <source>Show some information about 'isort'.</source>
       <translation>Отображение некоторой информации о утилите 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4960" />
       <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="4954" />
-      <location filename="../Project/Project.py" line="4953" />
+      <location filename="../Project/Project.py" line="4973" />
+      <location filename="../Project/Project.py" line="4972" />
       <source>Sort Imports</source>
       <translation>Сортировать импорт</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4961" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation>Сортировка операторов импорта исходников проекта с помощью 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4983" />
       <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="4978" />
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4997" />
+      <location filename="../Project/Project.py" line="4996" />
       <source>Imports Sorting Diff</source>
       <translation>Различия сортировки импорта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4985" />
+      <location filename="../Project/Project.py" line="5004" />
       <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="4991" />
+      <location filename="../Project/Project.py" line="5010" />
       <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="5012" />
+      <location filename="../Project/Project.py" line="5031" />
       <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="5018" />
+      <location filename="../Project/Project.py" line="5037" />
       <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="5034" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Install Project</source>
       <translation>Установить проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5035" />
+      <location filename="../Project/Project.py" line="5054" />
       <source>&amp;Install Project</source>
       <translation>&amp;Установить проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5042" />
+      <location filename="../Project/Project.py" line="5061" />
       <source>Install the project into the embedded environment.</source>
       <translation>Установка проекта во встроенную среду.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5045" />
+      <location filename="../Project/Project.py" line="5064" />
       <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="5056" />
+      <location filename="../Project/Project.py" line="5075" />
       <source>&amp;Configure</source>
       <translation>&amp;Настройки</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5063" />
+      <location filename="../Project/Project.py" line="5082" />
       <source>Configure the embedded environment.</source>
       <translation>Настройка встроенного виртуального окружения.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
-      <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="5076" />
-      <source>Upgrade</source>
-      <translation>Модернизировать</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5077" />
-      <source>&amp;Upgrade</source>
-      <translation>&amp;Модернизировать</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5083" />
-      <source>Upgrade the embedded environment.</source>
-      <translation>Модернизация встроенного виртуального окружения.</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5085" />
-      <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="5097" />
-      <source>Recreate</source>
-      <translation>Пересоздать</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5098" />
-      <source>&amp;Recreate</source>
-      <translation>&amp;Пересоздать</translation>
+      <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="5095" />
+      <source>Upgrade</source>
+      <translation>Модернизировать</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5096" />
+      <source>&amp;Upgrade</source>
+      <translation>&amp;Модернизировать</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5102" />
+      <source>Upgrade the embedded environment.</source>
+      <translation>Модернизация встроенного виртуального окружения.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5104" />
+      <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="5116" />
+      <source>Recreate</source>
+      <translation>Пересоздать</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5117" />
+      <source>&amp;Recreate</source>
+      <translation>&amp;Пересоздать</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5123" />
       <source>Recreate the embedded environment.</source>
       <translation>Пересоздание встроенного виртуального окружения.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5106" />
+      <location filename="../Project/Project.py" line="5125" />
       <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="5135" />
-      <source>&amp;Project</source>
-      <translation>&amp;Проект</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5136" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Открыть &amp;недавние проекты</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5137" />
-      <source>Session</source>
-      <translation>Сессия</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5138" />
-      <source>Debugger</source>
-      <translation>Отладка</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5139" />
-      <source>Embedded Environment</source>
-      <translation>Встроенная среда окружения</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5141" />
-      <source>Project-T&amp;ools</source>
-      <translation>&amp;Инструменты-проекта</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5142" />
-      <source>&amp;Version Control</source>
-      <translation>Контроль &amp;версий</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5146" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Проверить</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5148" />
-      <source>Code &amp;Formatting</source>
-      <translation>&amp;Форматирование кода</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5150" />
-      <source>Sho&amp;w</source>
-      <translation>По&amp;казать</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Диаграммы</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Pac&amp;kagers</source>
-      <translation>У&amp;паковщики</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5153" />
-      <source>Source &amp;Documentation</source>
-      <translation>&amp;Документация исходников</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5155" />
-      <source>Make</source>
-      <translation>Make</translation>
+      <source>&amp;Project</source>
+      <translation>&amp;Проект</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5156" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Открыть &amp;недавние проекты</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5157" />
+      <source>Session</source>
+      <translation>Сессия</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5158" />
+      <source>Debugger</source>
+      <translation>Отладка</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5159" />
+      <source>Embedded Environment</source>
+      <translation>Встроенная среда окружения</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5161" />
+      <source>Project-T&amp;ools</source>
+      <translation>&amp;Инструменты-проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5162" />
+      <source>&amp;Version Control</source>
+      <translation>Контроль &amp;версий</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5166" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Проверить</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5168" />
+      <source>Code &amp;Formatting</source>
+      <translation>&amp;Форматирование кода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5170" />
+      <source>Sho&amp;w</source>
+      <translation>По&amp;казать</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5171" />
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Диаграммы</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Pac&amp;kagers</source>
+      <translation>У&amp;паковщики</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
+      <source>Source &amp;Documentation</source>
+      <translation>&amp;Документация исходников</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5175" />
+      <source>Make</source>
+      <translation>Make</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5176" />
       <source>Other Tools</source>
       <translation>Другие инструменты</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5317" />
-      <location filename="../Project/Project.py" line="5314" />
+      <location filename="../Project/Project.py" line="5337" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>Project</source>
       <translation>Проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5378" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Clear</source>
       <translation>&amp;Очистить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5557" />
       <source>Search New Files</source>
       <translation>Поиск новых файлов</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5558" />
       <source>There were no new files found to be added.</source>
       <translation>Не найдено новых файлов для добавления.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5687" />
-      <location filename="../Project/Project.py" line="5674" />
+      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5694" />
       <source>Version Control System</source>
       <translation>Система контроля версий</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5695" />
       <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="5688" />
+      <location filename="../Project/Project.py" line="5708" />
       <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="5836" />
+      <location filename="../Project/Project.py" line="5856" />
       <source>Coverage Data</source>
       <translation>Данные покрытия</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5882" />
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5902" />
+      <location filename="../Project/Project.py" line="5857" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Для текущего проекта не определён главный сценарий. Отмена</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5849" />
+      <location filename="../Project/Project.py" line="5869" />
       <source>Code Coverage</source>
       <translation>Покрытие кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5850" />
+      <location filename="../Project/Project.py" line="5870" />
       <source>Please select a coverage file</source>
       <translation>Пожалуйста, выберите файл покрытия</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5915" />
       <source>Please select a profile file</source>
       <translation>Пожалуйста, выберите файл профиля</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5947" />
+      <location filename="../Project/Project.py" line="5967" />
       <source>Include module names?</source>
       <translation>Включать имена модулей?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6081" />
+      <location filename="../Project/Project.py" line="6101" />
       <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="6132" />
+      <location filename="../Project/Project.py" line="6152" />
       <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="6421" />
-      <location filename="../Project/Project.py" line="6379" />
-      <location filename="../Project/Project.py" line="6333" />
-      <location filename="../Project/Project.py" line="6322" />
-      <location filename="../Project/Project.py" line="6304" />
-      <location filename="../Project/Project.py" line="6271" />
-      <location filename="../Project/Project.py" line="6241" />
-      <location filename="../Project/Project.py" line="6213" />
-      <location filename="../Project/Project.py" line="6183" />
-      <location filename="../Project/Project.py" line="6169" />
-      <location filename="../Project/Project.py" line="6152" />
+      <location filename="../Project/Project.py" line="6441" />
+      <location filename="../Project/Project.py" line="6399" />
+      <location filename="../Project/Project.py" line="6353" />
+      <location filename="../Project/Project.py" line="6342" />
+      <location filename="../Project/Project.py" line="6324" />
+      <location filename="../Project/Project.py" line="6291" />
+      <location filename="../Project/Project.py" line="6261" />
+      <location filename="../Project/Project.py" line="6233" />
+      <location filename="../Project/Project.py" line="6203" />
+      <location filename="../Project/Project.py" line="6189" />
+      <location filename="../Project/Project.py" line="6172" />
       <source>Create Plugin Archive</source>
       <translation>Создать архив плагина</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6153" />
+      <location filename="../Project/Project.py" line="6173" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>Для текущего проекта не определён главный сценарий. Отмена...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6170" />
+      <location filename="../Project/Project.py" line="6190" />
       <source>Select package lists:</source>
       <translation>Выбор списков пакета:</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6184" />
+      <location filename="../Project/Project.py" line="6204" />
       <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="6192" />
+      <location filename="../Project/Project.py" line="6212" />
       <source>Creating plugin archives...</source>
       <translation>Создание архивов плагина...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6193" />
+      <location filename="../Project/Project.py" line="6213" />
       <source>Abort</source>
       <translation>Прервать</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6196" />
+      <location filename="../Project/Project.py" line="6216" />
       <source>%v/%m Archives</source>
       <translation>%v из %m архивов</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6214" />
+      <location filename="../Project/Project.py" line="6234" />
       <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="6242" />
+      <location filename="../Project/Project.py" line="6262" />
       <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="6272" />
+      <location filename="../Project/Project.py" line="6292" />
       <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="6305" />
+      <location filename="../Project/Project.py" line="6325" />
       <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="6323" />
+      <location filename="../Project/Project.py" line="6343" />
       <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="6334" />
+      <location filename="../Project/Project.py" line="6354" />
       <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="6380" />
+      <location filename="../Project/Project.py" line="6400" />
       <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="6422" />
+      <location filename="../Project/Project.py" line="6442" />
       <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="6544" />
+      <location filename="../Project/Project.py" line="6564" />
       <source>The make process did not start.</source>
       <translation>Make-процесс не был запущен.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6593" />
+      <location filename="../Project/Project.py" line="6613" />
       <source>The make process crashed.</source>
       <translation>Make-процесс разрушен.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6601" />
+      <location filename="../Project/Project.py" line="6621" />
       <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="6606" />
+      <location filename="../Project/Project.py" line="6626" />
       <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="6622" />
+      <location filename="../Project/Project.py" line="6642" />
       <source>The makefile contains errors.</source>
       <translation>Makefile содержит ошибки.</translation>
     </message>
@@ -58174,22 +58195,22 @@
   <context>
     <name>ProjectFile</name>
     <message>
-      <location filename="../Project/ProjectFile.py" line="109" />
+      <location filename="../Project/ProjectFile.py" line="108" />
       <source>Save Project File</source>
       <translation>Сохранить файл проекта</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectFile.py" line="110" />
+      <location filename="../Project/ProjectFile.py" line="109" />
       <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&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/ProjectFile.py" line="134" />
+      <source>Read Project File</source>
+      <translation>Прочитать файл проекта</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectFile.py" line="135" />
-      <source>Read Project File</source>
-      <translation>Прочитать файл проекта</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectFile.py" line="136" />
       <source>&lt;p&gt;The project 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>
@@ -60058,265 +60079,265 @@
   <context>
     <name>ProjectTranslationsBrowser</name>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="99" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="76" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="74" />
       <source>Translations</source>
       <translation>Переводы</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="79" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="77" />
       <source>&lt;b&gt;Project Translations Browser&lt;/b&gt;&lt;p&gt;This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Браузер переводов проекта&lt;/b&gt;&lt;p&gt;Позволяет легко просматривать файлы переводов, содержащиеся в текущем проекте. Посредством контекстного меню над ними могут быть выполнены различные действия.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="95" />
       <source>Translation Files ({0})</source>
       <translation type="unfinished">Файлы переводов ({0})</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="98" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="96" />
       <source>Translation Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="109" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="107" />
       <source>Translations Browser</source>
       <translation type="unfinished">Просмотр переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="239" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="183" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="237" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="181" />
       <source>Generate translation</source>
       <translation>Создать перевод</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="249" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="247" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation (with obsolete)</source>
       <translation>Создать перевод (включая устаревшие)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="538" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="360" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="258" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="194" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="536" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="507" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="330" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="256" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="192" />
       <source>Generate all translations</source>
       <translation>Создать все переводы</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="513" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="369" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="267" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="198" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="545" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="511" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="367" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="196" />
       <source>Generate all translations (with obsolete)</source>
       <translation>Создать все переводы (включая устаревшие)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="419" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="417" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
       <source>Open in Qt-Linguist</source>
       <translation>Открыть в Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="423" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="279" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="206" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="471" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="421" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="277" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="204" />
       <source>Open in Editor</source>
       <translation>Открыть в редакторе</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="286" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="284" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
       <source>Release translation</source>
       <translation>Релиз перевода</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="518" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="377" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="341" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="295" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="553" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="516" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="375" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="339" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="293" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="214" />
       <source>Release all translations</source>
       <translation>Создать релизы всех переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="220" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
       <source>Preview translation</source>
       <translation>Предпросмотр перевода</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="346" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="344" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Preview all translations</source>
       <translation>Предпросмотр всех переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="441" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="352" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="527" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
       <source>Extract messages</source>
       <translation>Извлечь сообщения</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="469" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="275" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="273" />
       <source>Open</source>
       <translation>Открыть</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="488" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="302" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="486" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="300" />
       <source>Remove from project</source>
       <translation>Удалить из проекта</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="561" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="491" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="305" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="559" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="489" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
       <source>Delete</source>
       <translation>Удалить</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="384" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="309" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="307" />
       <source>Add translation...</source>
       <translation>Добавить язык перевода...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="568" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="566" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="385" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
       <source>Add translation files...</source>
       <translation>Добавить файлы переводов...</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="569" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="313" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Копировать путь в буфер обмена</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="492" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="388" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="315" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Копировать путь в буфер обмена</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="573" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="390" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Configure...</source>
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="448" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
       <source>Generate translations</source>
       <translation>Создать переводы</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="460" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="458" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="410" />
       <source>Generate translations (with obsolete)</source>
       <translation>Создать переводы (включая устаревшие)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="480" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="478" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="426" />
       <source>Release translations</source>
       <translation>Релизы переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="432" />
       <source>Preview translations</source>
       <translation>Предпросмотр переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="835" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="833" />
       <source>Delete translation files</source>
       <translation>Удалить файлы переводов</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="836" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="834" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation>Вы действительно хотите удалить эти файлы переводов из проекта?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1504" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1001" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="961" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1502" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="999" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="959" />
       <source>Write temporary project file</source>
       <translation>Запись временного файла проекта</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1505" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1241" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="962" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1239" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="960" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Не выбраны файлы перевода (* .ts).</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1002" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1000" />
       <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="1240" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1123" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1111" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1238" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1121" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1109" />
       <source>Translation file generation</source>
       <translation>Создание файлов перевода</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1112" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1110" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation>Создание файлов перевода (*.ts) прошло успешно.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1118" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1116" />
       <source> The process has crashed.</source>
       <translation> Crash-завершение процесса.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1122" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation>Попытка создания файлов перевода (*.ts) завершилась неудачно. {0}</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1534" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1532" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1292" />
       <source>Process Generation Error</source>
       <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1337" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1295" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1335" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1293" />
       <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="1427" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1425" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1405" />
       <source>Translation file release</source>
       <translation>Релиз файлов перевода</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1406" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation>Релиз файлов перевода (*.qm) успешно создан.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1426" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation>Создание релиза файлов перевода (*.qm) не удалось.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1535" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1533" />
       <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>
@@ -83581,2158 +83602,2158 @@
       <translation>Настройка соединения сигнала/слота...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="574" />
+      <location filename="../UI/UserInterface.py" line="573" />
       <source>Initializing Tools...</source>
       <translation>Инициализация инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="585" />
+      <location filename="../UI/UserInterface.py" line="584" />
       <source>Registering Objects...</source>
       <translation>Регистрация объектов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="619" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Initializing Actions...</source>
       <translation>Инициализация действий...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="621" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Initializing Menus...</source>
       <translation>Инициализация меню...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="623" />
+      <location filename="../UI/UserInterface.py" line="622" />
       <source>Initializing Toolbars...</source>
       <translation>Инициализация панелей инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="625" />
+      <location filename="../UI/UserInterface.py" line="624" />
       <source>Initializing Statusbar...</source>
       <translation>Инициализация строки состояния...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Single Application Server...</source>
       <translation>Инициализация сервера уникального приложения...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="658" />
+      <location filename="../UI/UserInterface.py" line="657" />
       <source>Initializing Plugins...</source>
       <translation>Инициализация плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="661" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Activating Plugins...</source>
       <translation>Активация плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="663" />
+      <location filename="../UI/UserInterface.py" line="662" />
       <source>Generating Plugins Toolbars...</source>
       <translation>Генерация панели инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="666" />
+      <location filename="../UI/UserInterface.py" line="665" />
       <source>Cleaning Plugins Download Area...</source>
       <translation>Очистка области загрузки плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="673" />
+      <location filename="../UI/UserInterface.py" line="672" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Восстановление менеджера панелей инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="680" />
       <source>Setting View Profile...</source>
       <translation>Установка профилей...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="693" />
       <source>Reading Tasks...</source>
       <translation>Чтение задач...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="699" />
+      <location filename="../UI/UserInterface.py" line="698" />
       <source>Reading Templates...</source>
       <translation>Чтение шаблонов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="703" />
       <source>Starting Debugger...</source>
       <translation>Запуск отладчика...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
-      <location filename="../UI/UserInterface.py" line="1066" />
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1065" />
       <source>Left Toolbox</source>
       <translation>Левая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2224" />
-      <location filename="../UI/UserInterface.py" line="1076" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1075" />
       <source>Horizontal Toolbox</source>
       <translation>Горизонтальная панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2201" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1085" />
       <source>Right Toolbox</source>
       <translation>Правая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2020" />
-      <location filename="../UI/UserInterface.py" line="1279" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2019" />
+      <location filename="../UI/UserInterface.py" line="1278" />
+      <location filename="../UI/UserInterface.py" line="1095" />
       <source>Multiproject-Viewer</source>
       <translation>Просмотр мультипроекта</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1997" />
+      <location filename="../UI/UserInterface.py" line="1284" />
+      <location filename="../UI/UserInterface.py" line="1101" />
+      <source>Project-Viewer</source>
+      <translation>Просмотр проекта</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2559" />
+      <location filename="../UI/UserInterface.py" line="2558" />
+      <location filename="../UI/UserInterface.py" line="1291" />
+      <location filename="../UI/UserInterface.py" line="1108" />
+      <source>Find/Replace In Files</source>
+      <translation>Найти/Заменить в файлах</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1298" />
+      <location filename="../UI/UserInterface.py" line="1115" />
+      <source>Find File</source>
+      <translation>Найти файл</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1304" />
+      <location filename="../UI/UserInterface.py" line="1121" />
+      <source>VCS Status</source>
+      <translation>Статус VCS</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1311" />
+      <location filename="../UI/UserInterface.py" line="1128" />
+      <source>Template-Viewer</source>
+      <translation>Просмотр шаблонов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2085" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1135" />
+      <source>File-Browser</source>
+      <translation>Браузер файлов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1325" />
+      <location filename="../UI/UserInterface.py" line="1142" />
+      <source>Symbols</source>
+      <translation>Символы</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2041" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Debug-Viewer</source>
+      <translation>Просмотр отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2412" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1159" />
+      <source>Code Documentation Viewer</source>
+      <translation>Просмотр документации кода</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2628" />
+      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="1361" />
+      <location filename="../UI/UserInterface.py" line="1166" />
+      <source>Help Viewer</source>
+      <translation>Просмотрщик справки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1367" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>Plugin Repository</source>
+      <translation>Репозиторий плагинов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1373" />
+      <location filename="../UI/UserInterface.py" line="1178" />
+      <source>Virtual Environments</source>
+      <translation>Виртуальные окружения</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2440" />
+      <location filename="../UI/UserInterface.py" line="2439" />
+      <location filename="../UI/UserInterface.py" line="1378" />
+      <location filename="../UI/UserInterface.py" line="1183" />
+      <source>PyPI</source>
+      <translation>PyPI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="2461" />
+      <location filename="../UI/UserInterface.py" line="1385" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Conda</source>
+      <translation>Conda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1392" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Cooperation</source>
+      <translation>Кооперация</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2340" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
+      <source>IRC</source>
+      <translation>IRC</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="2483" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>MicroPython</source>
+      <translation>MicroPython</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2063" />
+      <location filename="../UI/UserInterface.py" line="1410" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Shell</source>
+      <translation>Оболочка</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2129" />
+      <location filename="../UI/UserInterface.py" line="1416" />
+      <location filename="../UI/UserInterface.py" line="1219" />
+      <source>Task-Viewer</source>
+      <translation>Просмотр задач</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2107" />
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1223" />
+      <source>Log-Viewer</source>
+      <translation>Просмотр журналов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1429" />
+      <location filename="../UI/UserInterface.py" line="1230" />
+      <source>Numbers</source>
+      <translation>Представление чисел</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1815" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} - пассивный режим</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1822" />
+      <location filename="../UI/UserInterface.py" line="1818" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} - {1} - пассивный режим</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1826" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} - {1} - {2} - пассивный режим</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1850" />
+      <source>Quit</source>
+      <translation>Выйти</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1852" />
+      <source>&amp;Quit</source>
+      <translation>&amp;Выйти</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1853" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1858" />
+      <source>Quit the IDE</source>
+      <translation>Выход из IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1860" />
+      <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="1874" />
+      <location filename="../UI/UserInterface.py" line="1872" />
+      <source>Restart</source>
+      <translation>Рестарт</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Shift+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1880" />
+      <source>Restart the IDE</source>
+      <translation>Перезапуск IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
+      <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="1900" />
+      <location filename="../UI/UserInterface.py" line="1893" />
+      <source>Save session</source>
+      <translation>Сохранить сессию</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1894" />
+      <source>Save session...</source>
+      <translation>Сохранить сессию...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1902" />
+      <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="7649" />
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Load session</source>
+      <translation>Загрузить сессию</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1913" />
+      <source>Load session...</source>
+      <translation>Загрузить сессию...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1921" />
+      <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="1931" />
+      <source>New Window</source>
+      <translation>Новое окно</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1933" />
+      <source>New &amp;Window</source>
+      <translation>&amp;Новое окно</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1934" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>Open a new eric instance</source>
+      <translation>Запустить ещё один экземпляр eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1941" />
+      <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="1955" />
+      <location filename="../UI/UserInterface.py" line="1953" />
+      <source>Edit Profile</source>
+      <translation>Профиль редактирования</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
+      <source>Activate the edit view profile</source>
+      <translation>Активизировать профиль редактирования</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1964" />
+      <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="1977" />
+      <location filename="../UI/UserInterface.py" line="1975" />
+      <source>Debug Profile</source>
+      <translation>Профиль отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1984" />
+      <source>Activate the debug view profile</source>
+      <translation>Активизировать профиль отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1986" />
+      <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="1998" />
-      <location filename="../UI/UserInterface.py" line="1285" />
-      <location filename="../UI/UserInterface.py" line="1102" />
-      <source>Project-Viewer</source>
-      <translation>Просмотр проекта</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2560" />
-      <location filename="../UI/UserInterface.py" line="2559" />
-      <location filename="../UI/UserInterface.py" line="1292" />
-      <location filename="../UI/UserInterface.py" line="1109" />
-      <source>Find/Replace In Files</source>
-      <translation>Найти/Заменить в файлах</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
-      <location filename="../UI/UserInterface.py" line="2582" />
-      <location filename="../UI/UserInterface.py" line="1299" />
-      <location filename="../UI/UserInterface.py" line="1116" />
-      <source>Find File</source>
-      <translation>Найти файл</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1305" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>VCS Status</source>
-      <translation>Статус VCS</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
-      <location filename="../UI/UserInterface.py" line="1312" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Template-Viewer</source>
-      <translation>Просмотр шаблонов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2086" />
-      <location filename="../UI/UserInterface.py" line="1319" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>File-Browser</source>
-      <translation>Браузер файлов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Symbols</source>
-      <translation>Символы</translation>
+      <source>&amp;Project-Viewer</source>
+      <translation>Просмотр &amp;проекта</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2005" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation>Переключить фокус ввода в окно просмотра проекта.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2008" />
+      <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="2020" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>Просмотр &amp;мультипроекта</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2027" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation>Переключить фокус ввода в окно просмотра мультипроекта.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2030" />
+      <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="2042" />
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1153" />
-      <source>Debug-Viewer</source>
-      <translation>Просмотр отладки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2414" />
-      <location filename="../UI/UserInterface.py" line="2413" />
-      <location filename="../UI/UserInterface.py" line="1355" />
-      <location filename="../UI/UserInterface.py" line="1160" />
-      <source>Code Documentation Viewer</source>
-      <translation>Просмотр документации кода</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2629" />
-      <location filename="../UI/UserInterface.py" line="2628" />
-      <location filename="../UI/UserInterface.py" line="1362" />
-      <location filename="../UI/UserInterface.py" line="1167" />
-      <source>Help Viewer</source>
-      <translation>Просмотрщик справки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <location filename="../UI/UserInterface.py" line="2509" />
-      <location filename="../UI/UserInterface.py" line="2508" />
-      <location filename="../UI/UserInterface.py" line="1368" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Plugin Repository</source>
-      <translation>Репозиторий плагинов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
-      <location filename="../UI/UserInterface.py" line="2532" />
-      <location filename="../UI/UserInterface.py" line="1374" />
-      <location filename="../UI/UserInterface.py" line="1179" />
-      <source>Virtual Environments</source>
-      <translation>Виртуальные окружения</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2441" />
-      <location filename="../UI/UserInterface.py" line="2440" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1184" />
-      <source>PyPI</source>
-      <translation>PyPI</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2463" />
-      <location filename="../UI/UserInterface.py" line="2462" />
-      <location filename="../UI/UserInterface.py" line="1386" />
-      <location filename="../UI/UserInterface.py" line="1189" />
-      <source>Conda</source>
-      <translation>Conda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1393" />
-      <location filename="../UI/UserInterface.py" line="1196" />
-      <source>Cooperation</source>
-      <translation>Кооперация</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
-      <location filename="../UI/UserInterface.py" line="1397" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>IRC</source>
-      <translation>IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
-      <location filename="../UI/UserInterface.py" line="2484" />
-      <location filename="../UI/UserInterface.py" line="1403" />
-      <location filename="../UI/UserInterface.py" line="1208" />
-      <source>MicroPython</source>
-      <translation>MicroPython</translation>
+      <source>&amp;Debug-Viewer</source>
+      <translation>Просмотр &amp;отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2049" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation>Переключить фокус ввода в окно просмотра отладки.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2052" />
+      <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="2064" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Shell</source>
-      <translation>Оболочка</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2130" />
-      <location filename="../UI/UserInterface.py" line="1417" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>Task-Viewer</source>
-      <translation>Просмотр задач</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2108" />
-      <location filename="../UI/UserInterface.py" line="1423" />
-      <location filename="../UI/UserInterface.py" line="1224" />
-      <source>Log-Viewer</source>
-      <translation>Просмотр журналов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1430" />
-      <location filename="../UI/UserInterface.py" line="1231" />
-      <source>Numbers</source>
-      <translation>Представление чисел</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1816" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} - пассивный режим</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1823" />
-      <location filename="../UI/UserInterface.py" line="1819" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} - {1} - пассивный режим</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} - {1} - {2} - пассивный режим</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1851" />
-      <source>Quit</source>
-      <translation>Выйти</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <source>&amp;Quit</source>
-      <translation>&amp;Выйти</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1854" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>Quit the IDE</source>
-      <translation>Выход из IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1861" />
-      <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="1875" />
-      <location filename="../UI/UserInterface.py" line="1873" />
-      <source>Restart</source>
-      <translation>Рестарт</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Shift+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1881" />
-      <source>Restart the IDE</source>
-      <translation>Перезапуск IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1883" />
-      <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="1901" />
-      <location filename="../UI/UserInterface.py" line="1894" />
-      <source>Save session</source>
-      <translation>Сохранить сессию</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>Save session...</source>
-      <translation>Сохранить сессию...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1903" />
-      <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="7650" />
-      <location filename="../UI/UserInterface.py" line="1920" />
-      <location filename="../UI/UserInterface.py" line="1913" />
-      <source>Load session</source>
-      <translation>Загрузить сессию</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1914" />
-      <source>Load session...</source>
-      <translation>Загрузить сессию...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1922" />
-      <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="1932" />
-      <source>New Window</source>
-      <translation>Новое окно</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1934" />
-      <source>New &amp;Window</source>
-      <translation>&amp;Новое окно</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1940" />
-      <source>Open a new eric instance</source>
-      <translation>Запустить ещё один экземпляр eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1942" />
-      <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="1956" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <source>Edit Profile</source>
-      <translation>Профиль редактирования</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1963" />
-      <source>Activate the edit view profile</source>
-      <translation>Активизировать профиль редактирования</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1965" />
-      <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="1978" />
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>Debug Profile</source>
-      <translation>Профиль отладки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1985" />
-      <source>Activate the debug view profile</source>
-      <translation>Активизировать профиль отладки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1987" />
-      <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="1999" />
-      <source>&amp;Project-Viewer</source>
-      <translation>Просмотр &amp;проекта</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2000" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2006" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation>Переключить фокус ввода в окно просмотра проекта.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2009" />
-      <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="2021" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>Просмотр &amp;мультипроекта</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2028" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation>Переключить фокус ввода в окно просмотра мультипроекта.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2031" />
-      <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="2043" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>Просмотр &amp;отладки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2050" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation>Переключить фокус ввода в окно просмотра отладки.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2053" />
-      <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>
+      <source>&amp;Shell</source>
+      <translation>&amp;Оболочка</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&amp;Shell</source>
-      <translation>&amp;Оболочка</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2072" />
+      <location filename="../UI/UserInterface.py" line="2071" />
       <source>Switch the input focus to the Shell window.</source>
       <translation>Переключить фокус ввода в окно оболочки.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2075" />
+      <location filename="../UI/UserInterface.py" line="2074" />
       <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="2086" />
+      <source>&amp;File-Browser</source>
+      <translation>&amp;Браузер файлов</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&amp;File-Browser</source>
-      <translation>&amp;Браузер файлов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2094" />
+      <location filename="../UI/UserInterface.py" line="2093" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation>Переключить фокус ввода в окно браузера файлов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2097" />
+      <location filename="../UI/UserInterface.py" line="2096" />
       <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="2108" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation>Просмотр &amp;журнала</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2109" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation>Просмотр &amp;журнала</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2116" />
+      <location filename="../UI/UserInterface.py" line="2115" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра журналов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2119" />
+      <location filename="../UI/UserInterface.py" line="2118" />
       <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="2130" />
+      <source>&amp;Task-Viewer</source>
+      <translation>Просмотр &amp;задач</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&amp;Task-Viewer</source>
-      <translation>Просмотр &amp;задач</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2138" />
+      <location filename="../UI/UserInterface.py" line="2137" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра задач.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2141" />
+      <location filename="../UI/UserInterface.py" line="2140" />
       <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="2153" />
+      <source>Templ&amp;ate-Viewer</source>
+      <translation>Просмотр &amp;шаблонов</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2154" />
-      <source>Templ&amp;ate-Viewer</source>
-      <translation>Просмотр &amp;шаблонов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2161" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра шаблонов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <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="2179" />
+      <location filename="../UI/UserInterface.py" line="2178" />
       <source>&amp;Left Toolbox</source>
       <translation>&amp;Левая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2186" />
+      <location filename="../UI/UserInterface.py" line="2185" />
       <source>Toggle the Left Toolbox window</source>
       <translation>Показать/Скрыть левую панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2187" />
       <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="2202" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Right Toolbox</source>
       <translation>&amp;Правая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2209" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Right Toolbox window</source>
       <translation>Показать/Скрыть правую панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2211" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <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="2225" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>&amp;Горизонтальная панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2232" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation>Включить/Выключить горизонтальную панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2234" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <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="2246" />
+      <source>Left Sidebar</source>
+      <translation>Левая док-панель</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2247" />
-      <source>Left Sidebar</source>
-      <translation>Левая док-панель</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
       <source>&amp;Left Sidebar</source>
       <translation>&amp;Левая док-панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2255" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the left sidebar window</source>
       <translation>Показать/Скрыть левую док-панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2257" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2269" />
+      <source>Right Sidebar</source>
+      <translation>Правая боковая панель</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2270" />
-      <source>Right Sidebar</source>
-      <translation>Правая боковая панель</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2271" />
       <source>&amp;Right Sidebar</source>
       <translation>&amp;Правая боковая панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2278" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the right sidebar window</source>
       <translation>Показать/Скрыть окно правой боковой панели</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2280" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2292" />
+      <source>Bottom Sidebar</source>
+      <translation>Нижняя док-панель</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2293" />
-      <source>Bottom Sidebar</source>
-      <translation>Нижняя док-панель</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2294" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Нижняя док-панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2301" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Показать/Скрыть нижнюю док-панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2303" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <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="2315" />
+      <source>Cooperation-Viewer</source>
+      <translation>Просмотр кооперации</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2316" />
-      <source>Cooperation-Viewer</source>
-      <translation>Просмотр кооперации</translation>
+      <source>Co&amp;operation-Viewer</source>
+      <translation>Просмотр ко&amp;операции</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2317" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation>Просмотр ко&amp;операции</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2324" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра кооперации.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2326" />
       <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="2341" />
+      <source>&amp;IRC</source>
+      <translation>&amp;IRC</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2342" />
-      <source>&amp;IRC</source>
-      <translation>&amp;IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2349" />
+      <location filename="../UI/UserInterface.py" line="2348" />
       <source>Switch the input focus to the IRC window.</source>
       <translation>Переключить фокус ввода в окно IRC.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2352" />
+      <location filename="../UI/UserInterface.py" line="2351" />
       <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="2362" />
+      <source>Symbols-Viewer</source>
+      <translation>Просмотр символов</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2363" />
-      <source>Symbols-Viewer</source>
-      <translation>Просмотр символов</translation>
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>Просмотр с&amp;имволов</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2364" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>Просмотр с&amp;имволов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2371" />
+      <location filename="../UI/UserInterface.py" line="2370" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра символов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2374" />
+      <location filename="../UI/UserInterface.py" line="2373" />
       <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="2387" />
+      <source>Numbers-Viewer</source>
+      <translation>Представление чисел</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2388" />
-      <source>Numbers-Viewer</source>
-      <translation>Представление чисел</translation>
+      <source>Num&amp;bers-Viewer</source>
+      <translation>Представление &amp;чисел</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2389" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>Представление &amp;чисел</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2396" />
+      <location filename="../UI/UserInterface.py" line="2395" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра чисел.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2399" />
+      <location filename="../UI/UserInterface.py" line="2398" />
       <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="2415" />
+      <location filename="../UI/UserInterface.py" line="2414" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2421" />
+      <location filename="../UI/UserInterface.py" line="2420" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра документации кода.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2426" />
+      <location filename="../UI/UserInterface.py" line="2425" />
       <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="2442" />
+      <location filename="../UI/UserInterface.py" line="2441" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
+      <location filename="../UI/UserInterface.py" line="2447" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation>Переключить фокус ввода в окно PyPI.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2451" />
+      <location filename="../UI/UserInterface.py" line="2450" />
       <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="2464" />
+      <location filename="../UI/UserInterface.py" line="2463" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2470" />
+      <location filename="../UI/UserInterface.py" line="2469" />
       <source>Switch the input focus to the Conda window.</source>
       <translation>Переключить фокус ввода в окно Conda.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2473" />
+      <location filename="../UI/UserInterface.py" line="2472" />
       <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="2486" />
+      <location filename="../UI/UserInterface.py" line="2485" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2492" />
+      <location filename="../UI/UserInterface.py" line="2491" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation>Переключить фокус ввода в окно MicroPython.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2495" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <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="2510" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation>Ctrl+Alt+Shift+R</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2516" />
+      <location filename="../UI/UserInterface.py" line="2515" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation>Переключить фокус ввода в окно репозитория плагинов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2534" />
+      <location filename="../UI/UserInterface.py" line="2533" />
       <source>Ctrl+Alt+V</source>
       <translation>Ctrl+Alt+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2540" />
+      <location filename="../UI/UserInterface.py" line="2539" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation>Переключить фокус ввода в окно диспетчера виртуальных сред.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
       <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="2561" />
+      <location filename="../UI/UserInterface.py" line="2560" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation>Ctrl+Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
+      <location filename="../UI/UserInterface.py" line="2566" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation>Переключить фокус ввода в окно 'Найти/Заменить в файлах'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2570" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <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="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation>Ctrl+Alt+Shift+L</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2590" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find File window.</source>
       <translation>Переключить фокус ввода в окно 'Найти файл'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2593" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <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="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <source>VCS Status List</source>
+      <translation>Список статусов VCS</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
-      <location filename="../UI/UserInterface.py" line="2606" />
-      <source>VCS Status List</source>
-      <translation>Список статусов VCS</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Alt+Shift+V</source>
       <translation>Alt+Shift+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2614" />
+      <location filename="../UI/UserInterface.py" line="2613" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation>Переключить фокус ввода в окно 'Список статусов VCS'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <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="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>Alt+Shift+H</source>
       <translation>Alt+Shift+H</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2636" />
+      <location filename="../UI/UserInterface.py" line="2635" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation>Переключение фокуса ввода в окно встроенного просмотрщика справки.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2639" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <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="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
       <source>What's This?</source>
       <translation>Что это?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <source>&amp;What's This?</source>
+      <translation>&amp;Что это?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2654" />
-      <source>&amp;What's This?</source>
-      <translation>&amp;Что это?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2660" />
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Context sensitive help</source>
       <translation>Контекстнозависимая справка</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2662" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <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="2675" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>Helpviewer</source>
       <translation>Просмотр справки</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2676" />
+      <source>&amp;Helpviewer...</source>
+      <translation>Просмотр спр&amp;авки...</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
-      <source>&amp;Helpviewer...</source>
-      <translation>Просмотр спр&amp;авки...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2678" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2683" />
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Open the helpviewer window</source>
       <translation>Открыть окно просмотра справки</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2685" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <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="2704" />
+      <source>Show Versions</source>
+      <translation>Показать версии</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2705" />
-      <source>Show Versions</source>
-      <translation>Показать версии</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Show &amp;Versions</source>
       <translation>Показать &amp;версии</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2711" />
       <source>Display version information</source>
       <translation>Информация о версии</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2714" />
+      <location filename="../UI/UserInterface.py" line="2713" />
       <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="2729" />
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>Show Error Log</source>
       <translation>Показать журнал ошибок</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2722" />
       <source>Show Error &amp;Log...</source>
       <translation>&amp;Журнал ошибок...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2730" />
       <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="2739" />
+      <source>Show Install Info</source>
+      <translation>Показать информацию об установке</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2740" />
-      <source>Show Install Info</source>
-      <translation>Показать информацию об установке</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Install &amp;Info...</source>
       <translation>Показать информацию об &amp;установке...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2747" />
+      <location filename="../UI/UserInterface.py" line="2746" />
       <source>Show Installation Information</source>
       <translation>Показать информацию об установке</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2749" />
+      <location filename="../UI/UserInterface.py" line="2748" />
       <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="4633" />
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="4632" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report Bug</source>
       <translation>Сообщение об ошибке</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report &amp;Bug...</source>
       <translation>Сообщить об &amp;ошибке...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
+      <location filename="../UI/UserInterface.py" line="2760" />
       <source>Report a bug</source>
       <translation>Сообщить об ошибке</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <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="2770" />
+      <source>Request Feature</source>
+      <translation>Запросить функционал</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2771" />
-      <source>Request Feature</source>
-      <translation>Запросить функционал</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2772" />
       <source>Request &amp;Feature...</source>
       <translation>Запросить &amp;функционал...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2777" />
       <source>Send a feature request</source>
       <translation>Послать запрос</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2780" />
+      <location filename="../UI/UserInterface.py" line="2779" />
       <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="4091" />
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>Testing</source>
       <translation>Тестировать</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2792" />
       <source>&amp;Testing...</source>
       <translation>&amp;Тестировать...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
+      <location filename="../UI/UserInterface.py" line="2798" />
       <source>Start the testing dialog</source>
       <translation>Запуск диалогового окна тестирования</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2801" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <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="2812" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Restart Last Test</source>
       <translation>Перезапустить последний тест</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>&amp;Restart Last Test...</source>
       <translation>&amp;Перезапустить последний тест...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2820" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <source>Restarts the last test</source>
       <translation>Перезапуск последнего теста</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2821" />
       <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="2832" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>Rerun Failed Tests</source>
       <translation>Повторить неудачные тесты</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2833" />
       <source>Rerun Failed Tests...</source>
       <translation>Повторить неудачные тесты...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <source>Rerun failed tests of the last run</source>
       <translation>Повторить неудачные тесты последнего запуска</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2844" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <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="2854" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>Test Script</source>
       <translation>Тест на сценарии</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
+      <location filename="../UI/UserInterface.py" line="2855" />
       <source>Test &amp;Script...</source>
       <translation>Тест на &amp;сценарии...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>Run tests of the current script</source>
       <translation>Выполнить тесты на текущем сценарии</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2864" />
+      <location filename="../UI/UserInterface.py" line="2863" />
       <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="2873" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Test Project</source>
       <translation>Тест на проекте</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>Test &amp;Project...</source>
       <translation>Тест на &amp;проекте...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2881" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <source>Run tests of the current project</source>
       <translation>Выполнить тесты на текущем проекте</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <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="2905" />
+      <location filename="../UI/UserInterface.py" line="2904" />
       <source>Qt-Designer</source>
       <translation>Qt-Designer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2907" />
+      <location filename="../UI/UserInterface.py" line="2906" />
       <source>Qt-&amp;Designer...</source>
       <translation>Qt-&amp;Designer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2912" />
       <source>Start Qt-Designer</source>
       <translation>Запуск Qt-Designer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2915" />
+      <location filename="../UI/UserInterface.py" line="2914" />
       <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="2935" />
+      <location filename="../UI/UserInterface.py" line="2934" />
       <source>Qt-Linguist</source>
       <translation>Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2937" />
+      <location filename="../UI/UserInterface.py" line="2936" />
       <source>Qt-&amp;Linguist...</source>
       <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2943" />
+      <location filename="../UI/UserInterface.py" line="2942" />
       <source>Start Qt-Linguist</source>
       <translation>Запуск Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2945" />
+      <location filename="../UI/UserInterface.py" line="2944" />
       <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="2953" />
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>UI Previewer</source>
       <translation>Предпросмотр UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
+      <location filename="../UI/UserInterface.py" line="2954" />
       <source>&amp;UI Previewer...</source>
       <translation>Предпросмотр &amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2961" />
+      <location filename="../UI/UserInterface.py" line="2960" />
       <source>Start the UI Previewer</source>
       <translation>Запуск предпросмотра UI (пользовательского интерфейса)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2962" />
       <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="2969" />
+      <location filename="../UI/UserInterface.py" line="2968" />
       <source>Translations Previewer</source>
       <translation>Предпросмотр переводов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2971" />
+      <location filename="../UI/UserInterface.py" line="2970" />
       <source>&amp;Translations Previewer...</source>
       <translation>&amp;Предпросмотр переводов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="2976" />
       <source>Start the Translations Previewer</source>
       <translation>Запустить предпросмотр переводов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2979" />
+      <location filename="../UI/UserInterface.py" line="2978" />
       <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="2988" />
+      <location filename="../UI/UserInterface.py" line="2987" />
       <source>Compare Files</source>
       <translation>Сравнить файлы</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2990" />
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Сравнить файлы...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="2995" />
       <source>Compare two files</source>
       <translation>Сравнить два файла</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2998" />
+      <location filename="../UI/UserInterface.py" line="2997" />
       <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="3007" />
+      <location filename="../UI/UserInterface.py" line="3006" />
       <source>Compare Files side by side</source>
       <translation>Сравнение файлов построчно</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3009" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare &amp;Files side by side...</source>
       <translation>Сравнить &amp;файлы построчно...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3017" />
+      <location filename="../UI/UserInterface.py" line="3016" />
       <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="3027" />
+      <location filename="../UI/UserInterface.py" line="3026" />
       <source>SQL Browser</source>
       <translation>SQL браузер</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3028" />
       <source>SQL &amp;Browser...</source>
       <translation>&amp;SQL браузер...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3035" />
+      <location filename="../UI/UserInterface.py" line="3034" />
       <source>Browse a SQL database</source>
       <translation>Просмотреть SQL базу данных</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3037" />
+      <location filename="../UI/UserInterface.py" line="3036" />
       <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="3051" />
-      <location filename="../UI/UserInterface.py" line="3043" />
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <location filename="../UI/UserInterface.py" line="3042" />
       <source>Mini Editor</source>
       <translation>Миниредактор</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3045" />
+      <location filename="../UI/UserInterface.py" line="3044" />
       <source>Mini &amp;Editor...</source>
       <translation>Мини&amp;редактор...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3053" />
+      <location filename="../UI/UserInterface.py" line="3052" />
       <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="3062" />
+      <location filename="../UI/UserInterface.py" line="3061" />
       <source>Hex Editor</source>
       <translation>Hex-редактор</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3064" />
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&amp;Hex Editor...</source>
       <translation>&amp;Hex-редактор...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
+      <location filename="../UI/UserInterface.py" line="3069" />
       <source>Start the eric Hex Editor</source>
       <translation>Запуск eric Hex-редактора</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3072" />
+      <location filename="../UI/UserInterface.py" line="3071" />
       <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="3082" />
+      <location filename="../UI/UserInterface.py" line="3081" />
       <source>eric Web Browser</source>
       <translation>Eric web-браузер</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3084" />
+      <location filename="../UI/UserInterface.py" line="3083" />
       <source>eric &amp;Web Browser...</source>
       <translation>Eric &amp;web-браузер...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3089" />
       <source>Start the eric Web Browser</source>
       <translation>Запустить eric web-браузер</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3092" />
+      <location filename="../UI/UserInterface.py" line="3091" />
       <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="3101" />
+      <location filename="../UI/UserInterface.py" line="3100" />
       <source>Icon Editor</source>
       <translation>Редактор иконок</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3103" />
+      <location filename="../UI/UserInterface.py" line="3102" />
       <source>&amp;Icon Editor...</source>
       <translation>Редактор &amp;иконок...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3109" />
+      <location filename="../UI/UserInterface.py" line="3108" />
       <source>Start the eric Icon Editor</source>
       <translation>Запустить eric редактор иконок</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
+      <location filename="../UI/UserInterface.py" line="3110" />
       <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="3120" />
+      <location filename="../UI/UserInterface.py" line="3119" />
       <source>Snapshot</source>
       <translation>Снимки</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3122" />
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>&amp;Snapshot...</source>
       <translation>&amp;Снимки...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3128" />
+      <location filename="../UI/UserInterface.py" line="3127" />
       <source>Take snapshots of a screen region</source>
       <translation>Сделать снимок области экрана</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3129" />
       <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="3140" />
+      <location filename="../UI/UserInterface.py" line="3139" />
       <source>Preferences</source>
       <translation>Предпочтения</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3142" />
+      <location filename="../UI/UserInterface.py" line="3141" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Предпочтения...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3147" />
       <source>Set the prefered configuration</source>
       <translation>Установите предпочтительную конфигурацию</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3149" />
       <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="3161" />
+      <location filename="../UI/UserInterface.py" line="3160" />
       <source>Export Preferences</source>
       <translation>Экспорт предпочтений</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3163" />
+      <location filename="../UI/UserInterface.py" line="3162" />
       <source>E&amp;xport Preferences...</source>
       <translation>&amp;Экспорт предпочтений...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3169" />
+      <location filename="../UI/UserInterface.py" line="3168" />
       <source>Export the current configuration</source>
       <translation>Экспорт текущих настроек</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="3170" />
       <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="3180" />
+      <location filename="../UI/UserInterface.py" line="3179" />
       <source>Import Preferences</source>
       <translation>Импорт предпочтений</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3182" />
+      <location filename="../UI/UserInterface.py" line="3181" />
       <source>I&amp;mport Preferences...</source>
       <translation>&amp;Импорт предпочтений...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3188" />
       <source>Import a previously exported configuration</source>
       <translation>Импорт сохранённых ранее настроек</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3192" />
+      <location filename="../UI/UserInterface.py" line="3191" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3200" />
       <source>Export Theme</source>
       <translation>Экспорт темы</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3203" />
+      <location filename="../UI/UserInterface.py" line="3202" />
       <source>Export Theme...</source>
       <translation>Экспорт темы...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3209" />
+      <location filename="../UI/UserInterface.py" line="3208" />
       <source>Export the current theme</source>
       <translation>Экспорт текущей темы</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
+      <location filename="../UI/UserInterface.py" line="3210" />
       <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="3220" />
+      <location filename="../UI/UserInterface.py" line="3219" />
       <source>Import Theme</source>
       <translation>Импорт темы</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3222" />
+      <location filename="../UI/UserInterface.py" line="3221" />
       <source>Import Theme...</source>
       <translation>Импорт темы...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3228" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <source>Import a previously exported theme</source>
       <translation>Импорт ранее экспортированной темы</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
+      <location filename="../UI/UserInterface.py" line="3229" />
       <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="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload APIs</source>
       <translation>Перезагрузить API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload &amp;APIs</source>
       <translation>Перезагрузить &amp;API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3241" />
+      <location filename="../UI/UserInterface.py" line="3240" />
       <source>Reload the API information</source>
       <translation>Перезагрузить информацию об API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3243" />
+      <location filename="../UI/UserInterface.py" line="3242" />
       <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="3257" />
-      <location filename="../UI/UserInterface.py" line="3249" />
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <location filename="../UI/UserInterface.py" line="3248" />
       <source>Show external tools</source>
       <translation>Показать внешние инструменты</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
+      <location filename="../UI/UserInterface.py" line="3250" />
       <source>Show external &amp;tools</source>
       <translation>&amp;Внешние инструменты</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3258" />
       <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="3269" />
+      <location filename="../UI/UserInterface.py" line="3268" />
       <source>View Profiles</source>
       <translation>Профили</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
+      <location filename="../UI/UserInterface.py" line="3270" />
       <source>&amp;View Profiles...</source>
       <translation>&amp;Профили...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3277" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Configure view profiles</source>
       <translation>Конфигурация профилей</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
+      <location filename="../UI/UserInterface.py" line="3278" />
       <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="3290" />
+      <location filename="../UI/UserInterface.py" line="3289" />
       <source>Toolbars</source>
       <translation>Панели инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3292" />
+      <location filename="../UI/UserInterface.py" line="3291" />
       <source>Tool&amp;bars...</source>
       <translation>Панели &amp;инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
+      <location filename="../UI/UserInterface.py" line="3297" />
       <source>Configure toolbars</source>
       <translation>Настройка панелей инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3299" />
       <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="3311" />
+      <location filename="../UI/UserInterface.py" line="3310" />
       <source>Keyboard Shortcuts</source>
       <translation>Горячие клавиши</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3313" />
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Горячие &amp;клавиши...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3319" />
+      <location filename="../UI/UserInterface.py" line="3318" />
       <source>Set the keyboard shortcuts</source>
       <translation>Определение горячих клавиш</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
+      <location filename="../UI/UserInterface.py" line="3320" />
       <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="7335" />
-      <location filename="../UI/UserInterface.py" line="7316" />
-      <location filename="../UI/UserInterface.py" line="3331" />
+      <location filename="../UI/UserInterface.py" line="7334" />
+      <location filename="../UI/UserInterface.py" line="7315" />
+      <location filename="../UI/UserInterface.py" line="3330" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Экспорт горячих клавиш</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3333" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>&amp;Экспорт горячих клавиш...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
+      <location filename="../UI/UserInterface.py" line="3338" />
       <source>Export the keyboard shortcuts</source>
       <translation>Экспортировать горячие клавиши</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3341" />
+      <location filename="../UI/UserInterface.py" line="3340" />
       <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="7354" />
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="7353" />
+      <location filename="../UI/UserInterface.py" line="3349" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Импорт горячих клавиш</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3352" />
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Импорт горячих клавиш...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="3357" />
       <source>Import the keyboard shortcuts</source>
       <translation>Импортировать горячие клавиши</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3359" />
       <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="3370" />
+      <location filename="../UI/UserInterface.py" line="3369" />
       <source>Manage SSL Certificates</source>
       <translation>Менеджер SSL сертификатов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3372" />
+      <location filename="../UI/UserInterface.py" line="3371" />
       <source>Manage SSL Certificates...</source>
       <translation>Менеджер SSL сертификатов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3378" />
       <source>Manage the saved SSL certificates</source>
       <translation>Управление сохранёнными SSL сертификатами</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3382" />
+      <location filename="../UI/UserInterface.py" line="3381" />
       <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="3392" />
+      <location filename="../UI/UserInterface.py" line="3391" />
       <source>Edit Message Filters</source>
       <translation>Редактировать фильтры сообщений</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3394" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Edit Message Filters...</source>
       <translation>Редактировать фильтры сообщений...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="3400" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation>Редактировать фильтры нежелательных сообщений</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3404" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <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="3423" />
-      <location filename="../UI/UserInterface.py" line="3417" />
-      <location filename="../UI/UserInterface.py" line="3415" />
+      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Clear private data</source>
       <translation>Очистить приватные данные</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3425" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <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="3435" />
+      <location filename="../UI/UserInterface.py" line="3434" />
+      <source>Activate current editor</source>
+      <translation>Активировать текущий редактор</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3436" />
-      <location filename="../UI/UserInterface.py" line="3435" />
-      <source>Activate current editor</source>
-      <translation>Активировать текущий редактор</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3447" />
+      <location filename="../UI/UserInterface.py" line="3446" />
+      <source>Show next</source>
+      <translation>Показать следующую</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3448" />
-      <location filename="../UI/UserInterface.py" line="3447" />
-      <source>Show next</source>
-      <translation>Показать следующую</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3458" />
+      <source>Show previous</source>
+      <translation>Показать предыдущую</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3460" />
-      <location filename="../UI/UserInterface.py" line="3459" />
-      <source>Show previous</source>
-      <translation>Показать предыдущую</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3461" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Switch between tabs</source>
+      <translation>Переключение между вкладками</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3472" />
-      <location filename="../UI/UserInterface.py" line="3471" />
-      <source>Switch between tabs</source>
-      <translation>Переключение между вкладками</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
       <source>Plugin Infos</source>
       <translation>Информация о плагинах</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3485" />
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>&amp;Plugin Infos...</source>
       <translation>Ин&amp;формация о плагинах...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
+      <location filename="../UI/UserInterface.py" line="3490" />
       <source>Show Plugin Infos</source>
       <translation>Отображение информации о плагинах</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
+      <location filename="../UI/UserInterface.py" line="3492" />
       <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="3511" />
-      <location filename="../UI/UserInterface.py" line="3503" />
+      <location filename="../UI/UserInterface.py" line="3510" />
+      <location filename="../UI/UserInterface.py" line="3502" />
       <source>Install Plugins</source>
       <translation>Установить плагины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3504" />
       <source>&amp;Install Plugins...</source>
       <translation>&amp;Установить плагины...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
+      <location filename="../UI/UserInterface.py" line="3512" />
       <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="3530" />
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Uninstall Plugin</source>
       <translation>Удалить плагин</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3524" />
+      <location filename="../UI/UserInterface.py" line="3523" />
       <source>&amp;Uninstall Plugin...</source>
       <translation>Уда&amp;лить плагин...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <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="3543" />
+      <location filename="../UI/UserInterface.py" line="3542" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Репозиторий плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <source>Show Plugins available for download</source>
       <translation>Показать плагины, доступные для загрузки</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3551" />
+      <location filename="../UI/UserInterface.py" line="3550" />
       <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="3578" />
       <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="3576" />
       <source>Qt5 Documentation</source>
       <translation>Документация Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3584" />
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Open Qt5 Documentation</source>
       <translation>Открыть документацию Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3599" />
       <location filename="../UI/UserInterface.py" line="3598" />
+      <location filename="../UI/UserInterface.py" line="3597" />
       <source>Qt6 Documentation</source>
       <translation>Документация Qt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3605" />
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>Open Qt6 Documentation</source>
       <translation>Открыть документацию Qt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3606" />
       <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="3620" />
       <location filename="../UI/UserInterface.py" line="3619" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>PyQt5 Documentation</source>
       <translation>Документация PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3626" />
+      <location filename="../UI/UserInterface.py" line="3625" />
       <source>Open PyQt5 Documentation</source>
       <translation>Открыть документацию PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3627" />
       <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="3641" />
       <location filename="../UI/UserInterface.py" line="3640" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>PyQt6 Documentation</source>
       <translation>Документация PyQt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3647" />
+      <location filename="../UI/UserInterface.py" line="3646" />
       <source>Open PyQt6 Documentation</source>
       <translation>Открыть документацию PyQt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3648" />
       <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="3667" />
       <location filename="../UI/UserInterface.py" line="3666" />
+      <location filename="../UI/UserInterface.py" line="3665" />
       <source>Python 3 Documentation</source>
       <translation>Документация Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3673" />
+      <location filename="../UI/UserInterface.py" line="3672" />
       <source>Open Python 3 Documentation</source>
       <translation>Открыть документацию Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <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="3694" />
       <location filename="../UI/UserInterface.py" line="3693" />
+      <location filename="../UI/UserInterface.py" line="3692" />
       <source>eric API Documentation</source>
       <translation>Документация API Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3700" />
+      <location filename="../UI/UserInterface.py" line="3699" />
       <source>Open eric API Documentation</source>
       <translation>Открыть документацию API Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
       <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="3720" />
       <location filename="../UI/UserInterface.py" line="3719" />
+      <location filename="../UI/UserInterface.py" line="3718" />
       <source>PySide2 Documentation</source>
       <translation>Документация PySide2</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3726" />
+      <location filename="../UI/UserInterface.py" line="3725" />
       <source>Open PySide2 Documentation</source>
       <translation>Открыть документацию PySide2</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
       <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="3746" />
       <location filename="../UI/UserInterface.py" line="3745" />
+      <location filename="../UI/UserInterface.py" line="3744" />
       <source>PySide6 Documentation</source>
       <translation>Документация PySide6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3752" />
+      <location filename="../UI/UserInterface.py" line="3751" />
       <source>Open PySide6 Documentation</source>
       <translation>Открыть документацию PySide6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <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="3854" />
+      <location filename="../UI/UserInterface.py" line="3853" />
       <source>E&amp;xtras</source>
       <translation>&amp;Дополнительно</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
+      <location filename="../UI/UserInterface.py" line="3863" />
       <source>Wi&amp;zards</source>
       <translation>&amp;Мастера</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3882" />
+      <location filename="../UI/UserInterface.py" line="3881" />
       <source>P&amp;lugins</source>
       <translation>Пла&amp;гины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3891" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>Configure...</source>
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3900" />
+      <location filename="../UI/UserInterface.py" line="3899" />
       <source>&amp;Testing</source>
       <translation>&amp;Тестировать</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3917" />
+      <location filename="../UI/UserInterface.py" line="3916" />
       <source>Select Tool Group</source>
       <translation>Выберите группу инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Se&amp;ttings</source>
       <translation>&amp;Настройки</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3961" />
+      <location filename="../UI/UserInterface.py" line="3960" />
       <source>&amp;Window</source>
       <translation>&amp;Окно</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3970" />
+      <location filename="../UI/UserInterface.py" line="3969" />
       <source>&amp;Windows</source>
       <translation>&amp;Окна</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3974" />
+      <location filename="../UI/UserInterface.py" line="3973" />
       <source>Central Park</source>
       <translation>Центральное окно</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3978" />
+      <location filename="../UI/UserInterface.py" line="3977" />
       <source>Left Side</source>
       <translation>Левая панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3997" />
+      <location filename="../UI/UserInterface.py" line="3996" />
       <source>Right Side</source>
       <translation>Правая панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4016" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Bottom Side</source>
       <translation>Нижняя панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4024" />
+      <location filename="../UI/UserInterface.py" line="4023" />
       <source>Plug-ins</source>
       <translation>Плагины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4030" />
+      <location filename="../UI/UserInterface.py" line="4029" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Панели инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4043" />
+      <location filename="../UI/UserInterface.py" line="4042" />
       <source>&amp;Help</source>
       <translation>&amp;Справка</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="4112" />
+      <location filename="../UI/UserInterface.py" line="4089" />
       <source>Tools</source>
       <translation>Инструменты</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4093" />
+      <source>Settings</source>
+      <translation>Настройки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6147" />
       <location filename="../UI/UserInterface.py" line="4115" />
       <location filename="../UI/UserInterface.py" line="4094" />
-      <source>Settings</source>
-      <translation>Настройки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6148" />
+      <source>Help</source>
+      <translation>Справка</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4116" />
       <location filename="../UI/UserInterface.py" line="4095" />
-      <source>Help</source>
-      <translation>Справка</translation>
+      <source>Profiles</source>
+      <translation>Профили</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="4117" />
       <location filename="../UI/UserInterface.py" line="4096" />
-      <source>Profiles</source>
-      <translation>Профили</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4118" />
-      <location filename="../UI/UserInterface.py" line="4097" />
       <source>Plugins</source>
       <translation>Плагины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4113" />
       <source>Unittest</source>
       <translation>Юниттест</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4286" />
+      <location filename="../UI/UserInterface.py" line="4285" />
       <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="4295" />
+      <location filename="../UI/UserInterface.py" line="4294" />
       <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="4304" />
+      <location filename="../UI/UserInterface.py" line="4303" />
       <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="4313" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4322" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4331" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4345" />
+      <location filename="../UI/UserInterface.py" line="4344" />
       <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="4416" />
-      <location filename="../UI/UserInterface.py" line="4375" />
+      <location filename="../UI/UserInterface.py" line="4415" />
+      <location filename="../UI/UserInterface.py" line="4374" />
       <source>External Tools/{0}</source>
       <translation>Внешние инструменты/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4524" />
+      <location filename="../UI/UserInterface.py" line="4523" />
       <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="4573" />
+      <location filename="../UI/UserInterface.py" line="4572" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (безопасность)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4590" />
+      <location filename="../UI/UserInterface.py" line="4589" />
       <source>Desktop</source>
       <translation>Рабочий стол</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4593" />
       <source>Session Type</source>
       <translation>Тип сессии</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4597" />
+      <location filename="../UI/UserInterface.py" line="4596" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4633" />
       <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="4948" />
+      <source>Restart application</source>
+      <translation>Перезапустить приложение</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4949" />
-      <source>Restart application</source>
-      <translation>Перезапустить приложение</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4950" />
       <source>The application needs to be restarted. Do it now?</source>
       <translation>Необходимо перезапустить приложение. Сделать это сейчас?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="4973" />
+      <source>Upgrade PyQt</source>
+      <translation>Обновить PyQt</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4974" />
-      <source>Upgrade PyQt</source>
-      <translation>Обновить PyQt</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4975" />
       <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>
@@ -85741,13 +85762,13 @@
 Выполнить обновление сейчас?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5025" />
-      <location filename="../UI/UserInterface.py" line="4999" />
+      <location filename="../UI/UserInterface.py" line="5024" />
+      <location filename="../UI/UserInterface.py" line="4998" />
       <source>Upgrade Eric</source>
       <translation>Обновить Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5000" />
+      <location filename="../UI/UserInterface.py" line="4999" />
       <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>
@@ -85756,7 +85777,7 @@
 Выполнить обновление сейчас?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5026" />
+      <location filename="../UI/UserInterface.py" line="5025" />
       <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>
@@ -85765,47 +85786,59 @@
  Выполнить обновление сейчас?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5084" />
+      <location filename="../UI/UserInterface.py" line="5083" />
       <source>&amp;Builtin Tools</source>
       <translation>&amp;Встроенные инструменты</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5101" />
+      <location filename="../UI/UserInterface.py" line="5100" />
       <source>&amp;Plugin Tools</source>
       <translation>Инструменты - &amp;плагины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5103" />
       <source>&amp;User Tools</source>
       <translation>&amp;Инструменты пользователя</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5130" />
+      <location filename="../UI/UserInterface.py" line="5129" />
       <source>Configure Tool Groups ...</source>
       <translation>Настройка группы инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5134" />
+      <location filename="../UI/UserInterface.py" line="5133" />
       <source>Configure current Tool Group ...</source>
       <translation>Настроить текущую группу инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5173" />
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5172" />
+      <location filename="../UI/UserInterface.py" line="5152" />
       <source>No User Tools Configured</source>
       <translation>Инструменты пользователя не сконфигурированы</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5247" />
+      <location filename="../UI/UserInterface.py" line="5246" />
       <source>&amp;Show all</source>
       <translation>Показать &amp;всё</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5249" />
+      <location filename="../UI/UserInterface.py" line="5248" />
       <source>&amp;Hide all</source>
       <translation>Ск&amp;рыть всё</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6282" />
+      <location filename="../UI/UserInterface.py" line="6271" />
+      <location filename="../UI/UserInterface.py" line="6223" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6049" />
+      <location filename="../UI/UserInterface.py" line="6039" />
+      <location filename="../UI/UserInterface.py" line="5982" />
+      <location filename="../UI/UserInterface.py" line="5972" />
+      <source>Problem</source>
+      <translation>Проблема</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6283" />
       <location filename="../UI/UserInterface.py" line="6272" />
       <location filename="../UI/UserInterface.py" line="6224" />
@@ -85814,312 +85847,300 @@
       <location filename="../UI/UserInterface.py" line="6040" />
       <location filename="../UI/UserInterface.py" line="5983" />
       <location filename="../UI/UserInterface.py" line="5973" />
-      <source>Problem</source>
-      <translation>Проблема</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6273" />
-      <location filename="../UI/UserInterface.py" line="6225" />
-      <location filename="../UI/UserInterface.py" line="6215" />
-      <location filename="../UI/UserInterface.py" line="6051" />
-      <location filename="../UI/UserInterface.py" line="6041" />
-      <location filename="../UI/UserInterface.py" line="5984" />
-      <location filename="../UI/UserInterface.py" line="5974" />
       <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="6496" />
-      <location filename="../UI/UserInterface.py" line="6409" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6296" />
-      <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6164" />
-      <location filename="../UI/UserInterface.py" line="6124" />
-      <location filename="../UI/UserInterface.py" line="6115" />
-      <location filename="../UI/UserInterface.py" line="6081" />
-      <location filename="../UI/UserInterface.py" line="6072" />
-      <location filename="../UI/UserInterface.py" line="6014" />
-      <location filename="../UI/UserInterface.py" line="6005" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6408" />
+      <location filename="../UI/UserInterface.py" line="6318" />
+      <location filename="../UI/UserInterface.py" line="6295" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6163" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
+      <location filename="../UI/UserInterface.py" line="6080" />
+      <location filename="../UI/UserInterface.py" line="6071" />
+      <location filename="../UI/UserInterface.py" line="6013" />
+      <location filename="../UI/UserInterface.py" line="6004" />
       <source>Process Generation Error</source>
       <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6006" />
+      <location filename="../UI/UserInterface.py" line="6005" />
       <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="6015" />
+      <location filename="../UI/UserInterface.py" line="6014" />
       <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="6073" />
+      <location filename="../UI/UserInterface.py" line="6072" />
       <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="6082" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <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="6116" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <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="6125" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <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="6149" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <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="6165" />
+      <location filename="../UI/UserInterface.py" line="6164" />
       <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="6186" />
+      <location filename="../UI/UserInterface.py" line="6185" />
       <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="6238" />
+      <location filename="../UI/UserInterface.py" line="6237" />
       <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="6297" />
+      <location filename="../UI/UserInterface.py" line="6296" />
       <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="6320" />
+      <location filename="../UI/UserInterface.py" line="6319" />
       <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="6410" />
+      <location filename="../UI/UserInterface.py" line="6409" />
       <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="6442" />
+      <location filename="../UI/UserInterface.py" line="6432" />
+      <source>External Tools</source>
+      <translation>Внешние инструменты</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <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="6443" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <source>External Tools</source>
-      <translation>Внешние инструменты</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6434" />
-      <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="6444" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>Запись для группы инструментов '{0}' не найдена.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6479" />
+      <location filename="../UI/UserInterface.py" line="6478" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Запускается процесс '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6497" />
+      <location filename="../UI/UserInterface.py" line="6496" />
       <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="6573" />
+      <location filename="../UI/UserInterface.py" line="6572" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Процесс '{0}' завершен.
 </translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6857" />
+      <location filename="../UI/UserInterface.py" line="6795" />
+      <location filename="../UI/UserInterface.py" line="6751" />
+      <location filename="../UI/UserInterface.py" line="6679" />
+      <location filename="../UI/UserInterface.py" line="6615" />
+      <source>Documentation Missing</source>
+      <translation>Документация отсутствует</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6858" />
       <location filename="../UI/UserInterface.py" line="6796" />
       <location filename="../UI/UserInterface.py" line="6752" />
       <location filename="../UI/UserInterface.py" line="6680" />
       <location filename="../UI/UserInterface.py" line="6616" />
-      <source>Documentation Missing</source>
-      <translation>Документация отсутствует</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6859" />
-      <location filename="../UI/UserInterface.py" line="6797" />
-      <location filename="../UI/UserInterface.py" line="6753" />
-      <location filename="../UI/UserInterface.py" line="6681" />
-      <location filename="../UI/UserInterface.py" line="6617" />
       <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="6839" />
+      <location filename="../UI/UserInterface.py" line="6723" />
+      <source>Documentation</source>
+      <translation>Документация</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6724" />
+      <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="6840" />
-      <location filename="../UI/UserInterface.py" line="6724" />
-      <source>Documentation</source>
-      <translation>Документация</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6725" />
-      <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="6841" />
       <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="7020" />
+      <location filename="../UI/UserInterface.py" line="6955" />
+      <source>Start Web Browser</source>
+      <translation>Запуск web-браузера</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6956" />
+      <source>The eric web browser could not be started.</source>
+      <translation>Невозможно запустить eric web-браузер.</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7021" />
-      <location filename="../UI/UserInterface.py" line="6956" />
-      <source>Start Web Browser</source>
-      <translation>Запуск web-браузера</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6957" />
-      <source>The eric web browser could not be started.</source>
-      <translation>Невозможно запустить eric web-браузер.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7022" />
       <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="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Open Browser</source>
       <translation>Открыть браузер</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Could not start a web browser</source>
       <translation>Невозможно запустить web-браузер</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7318" />
+      <location filename="../UI/UserInterface.py" line="7317" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation>Файл горячих клавиш (*.ekj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7336" />
+      <location filename="../UI/UserInterface.py" line="7335" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation>Файл горячих клавиш (*.ekj);;XML-файл горячих клавиш (*.e4k)</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7538" />
+      <source>Read Tasks</source>
+      <translation>Прочитать задачи</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7539" />
-      <source>Read Tasks</source>
-      <translation>Прочитать задачи</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7540" />
       <source>&lt;p&gt;The tasks 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="7583" />
+      <location filename="../UI/UserInterface.py" line="7582" />
       <source>Read Session</source>
       <translation>Загрузить сессию</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7611" />
-      <location filename="../UI/UserInterface.py" line="7584" />
-      <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="7610" />
+      <location filename="../UI/UserInterface.py" line="7583" />
+      <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="7609" />
       <source>Read session</source>
       <translation>Загрузить сессию</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7627" />
+      <location filename="../UI/UserInterface.py" line="7626" />
       <source>Save Session</source>
       <translation>Сохранить сессию</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7629" />
+      <location filename="../UI/UserInterface.py" line="7628" />
       <source>eric Session Files (*.esj)</source>
       <translation>Файлы сессий eric (*.esj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7652" />
+      <location filename="../UI/UserInterface.py" line="7651" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation>Файлы сессии eric (*.esj);;XML-файл сессии eric (*.e5s)</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7697" />
+      <source>Crash Session found!</source>
+      <translation>Обнаружена crash-сессия!</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7698" />
-      <source>Crash Session found!</source>
-      <translation>Обнаружена crash-сессия!</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7699" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation>Найден файл crashed-сессии. Должна ли эта сессия быть восстановлена?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8058" />
+      <source>Drop Error</source>
+      <translation>Ошибка Drag&amp;&amp;Drop</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8059" />
-      <source>Drop Error</source>
-      <translation>Ошибка Drag&amp;&amp;Drop</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8060" />
       <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="8233" />
+      <source>Upgrade available</source>
+      <translation>Доступно обновление</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8234" />
-      <source>Upgrade available</source>
-      <translation>Доступно обновление</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8235" />
       <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;</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;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8285" />
+      <location filename="../UI/UserInterface.py" line="8272" />
+      <source>First time usage</source>
+      <translation>Первое использование</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8273" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation>Eric7 еще не настроен, но доступна конфигурация eric6. Импортировать ее?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8286" />
-      <location filename="../UI/UserInterface.py" line="8273" />
-      <source>First time usage</source>
-      <translation>Первое использование</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8274" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation>Eric7 еще не настроен, но доступна конфигурация eric6. Импортировать ее?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8287" />
       <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="8310" />
+      <location filename="../UI/UserInterface.py" line="8309" />
       <source>Select Workspace Directory</source>
       <translation>Выбор директории рабочей области</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8490" />
+      <source>Unsaved Data Detected</source>
+      <translation>Обнаружены несохраненные данные</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8491" />
-      <source>Unsaved Data Detected</source>
-      <translation>Обнаружены несохраненные данные</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8492" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation>Некоторые редакторы содержат несохраненные данные. Должны ли они быть сохранены?</translation>
     </message>
@@ -86199,7 +86220,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1616" />
+      <location filename="../Utilities/__init__.py" line="1615" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Вы можете использовать %-коды как заполнители в строке:
 &lt;table&gt;
--- a/src/eric7/i18n/eric7_tr.ts	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/i18n/eric7_tr.ts	Fri Nov 25 11:51:51 2022 +0100
@@ -5509,7 +5509,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="206" />
+      <location filename="../Utilities/__init__.py" line="205" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>Verilen metin için '{0}'nun kodlaması hatalı.</translation>
     </message>
@@ -8846,88 +8846,89 @@
       <translation>Durum</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="221" />
+      <location filename="../Debugger/DebugViewer.py" line="149" />
+      <source>Source</source>
+      <translation>Kaynak</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Don't Show</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Show Only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="233" />
-      <location filename="../Debugger/DebugViewer.py" line="162" />
+      <location filename="../Debugger/DebugViewer.py" line="248" />
+      <location filename="../Debugger/DebugViewer.py" line="176" />
       <source>Enter regular expression patterns separated by ';' to define variable filters. </source>
       <translation>Değişken filtreleri için düzenli ifadelerin şablonlarını ';' ile ayırarak giriniz.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="239" />
-      <location filename="../Debugger/DebugViewer.py" line="168" />
-      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
-      <translation>Değişken filtreleri için düzenli ifadelerin şablonlarını ';' ile ayırarak giriniz.Düzenli ifadelerdeki  tüm değişkenler ve sınıf nitelikleri listede gösterildiğinden farklı olmamalıdır.</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="246" />
-      <location filename="../Debugger/DebugViewer.py" line="176" />
-      <source>Set</source>
-      <translation>Ayarla</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="184" />
-      <source>Shows the list of global variables and their values.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="206" />
-      <source>Source</source>
-      <translation>Kaynak</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugViewer.py" line="254" />
+      <location filename="../Debugger/DebugViewer.py" line="182" />
+      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
+      <translation>Değişken filtreleri için düzenli ifadelerin şablonlarını ';' ile ayırarak giriniz.Düzenli ifadelerdeki  tüm değişkenler ve sınıf nitelikleri listede gösterildiğinden farklı olmamalıdır.</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="261" />
+      <location filename="../Debugger/DebugViewer.py" line="190" />
+      <source>Set</source>
+      <translation>Ayarla</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="198" />
+      <source>Shows the list of global variables and their values.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="269" />
       <source>Shows the list of local variables and their values.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="271" />
+      <location filename="../Debugger/DebugViewer.py" line="295" />
       <source>Shows the current call stack.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="281" />
+      <location filename="../Debugger/DebugViewer.py" line="305" />
       <source>Shows a trace of the program flow.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="292" />
+      <location filename="../Debugger/DebugViewer.py" line="316" />
       <source>Shows a list of defined breakpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="303" />
+      <location filename="../Debugger/DebugViewer.py" line="327" />
       <source>Shows a list of defined watchpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="312" />
+      <location filename="../Debugger/DebugViewer.py" line="336" />
       <source>Shows a list of raised exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="323" />
+      <location filename="../Debugger/DebugViewer.py" line="347" />
       <source>Shows a code disassembly in case of an exception.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="749" />
+      <location filename="../Debugger/DebugViewer.py" line="790" />
       <source>&lt;p&gt;Debugger with ID &lt;b&gt;{0}&lt;/b&gt; has been connected.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="992" />
-      <location filename="../Debugger/DebugViewer.py" line="864" />
+      <location filename="../Debugger/DebugViewer.py" line="1033" />
+      <location filename="../Debugger/DebugViewer.py" line="905" />
       <source>unknown state ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -9408,26 +9409,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
       <source>Add allowed host</source>
       <translation>İzin verilen hostlara ekle</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="343" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="307" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Enter the IP address of an allowed host</source>
       <translation>İzin verilen hosların IP numaralrını giriniz</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="357" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="320" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
       <source>Edit allowed host</source>
       <translation>İzin verilen Hostları düzenle</translation>
     </message>
@@ -20791,7 +20792,7 @@
       <translation>Ekle/Değiştir</translation>
     </message>
     <message>
-      <location filename="../Project/FiletypeAssociationDialog.py" line="56" />
+      <location filename="../Project/FiletypeAssociationDialog.py" line="58" />
       <location filename="../Project/FiletypeAssociationDialog.py" line="45" />
       <source>Ignore</source>
       <translation>Yoksay</translation>
@@ -46651,7 +46652,7 @@
       <translation>Pygments</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="462" />
+      <location filename="../Preferences/__init__.py" line="461" />
       <location filename="../QScintilla/Lexers/__init__.py" line="386" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished">Python Dosyaları (*.py *.py3)</translation>
@@ -46904,7 +46905,7 @@
       <translation>Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="465" />
+      <location filename="../Preferences/__init__.py" line="464" />
       <location filename="../QScintilla/Lexers/__init__.py" line="479" />
       <source>Python3 Files (*.py)</source>
       <translation>Python Dosyaları (*.py3)</translation>
@@ -55459,18 +55460,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1608" />
+      <location filename="../Preferences/__init__.py" line="1653" />
       <source>Export Preferences</source>
       <translation>Seçenekleri Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1637" />
-      <location filename="../Preferences/__init__.py" line="1610" />
+      <location filename="../Preferences/__init__.py" line="1682" />
+      <location filename="../Preferences/__init__.py" line="1655" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1635" />
+      <location filename="../Preferences/__init__.py" line="1680" />
       <source>Import Preferences</source>
       <translation>Seçenekleri İçe Aktar</translation>
     </message>
@@ -55491,7 +55492,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="472" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -56336,7 +56337,7 @@
       <translation>Dosya adını Değiştir</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3311" />
+      <location filename="../Project/Project.py" line="3313" />
       <location filename="../Project/Project.py" line="2130" />
       <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>
@@ -56367,154 +56368,154 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2517" />
+      <location filename="../Project/Project.py" line="2518" />
       <source>Create project directory</source>
       <translation>Proje dizinin oluştur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2518" />
+      <location filename="../Project/Project.py" line="2519" />
       <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="3115" />
-      <location filename="../Project/Project.py" line="2579" />
-      <source>Create project management directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3116" />
       <location filename="../Project/Project.py" line="2580" />
+      <source>Create project management directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3117" />
+      <location filename="../Project/Project.py" line="2581" />
       <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="2600" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2601" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2602" />
       <source>&lt;p&gt;The mainscript &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="2922" />
-      <location filename="../Project/Project.py" line="2625" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2923" />
       <location filename="../Project/Project.py" line="2626" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2924" />
+      <location filename="../Project/Project.py" line="2627" />
       <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="3144" />
-      <location filename="../Project/Project.py" line="2764" />
-      <location filename="../Project/Project.py" line="2735" />
-      <location filename="../Project/Project.py" line="2691" />
-      <location filename="../Project/Project.py" line="2666" />
-      <location filename="../Project/Project.py" line="2636" />
-      <source>New Project</source>
-      <translation>Yeni Proje</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2637" />
-      <source>Add existing files to the project?</source>
-      <translation>Var olan dosyalar projeye eklensin mi?</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3145" />
+      <location filename="../Project/Project.py" line="2765" />
+      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2692" />
       <location filename="../Project/Project.py" line="2667" />
+      <location filename="../Project/Project.py" line="2637" />
+      <source>New Project</source>
+      <translation>Yeni Proje</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2638" />
+      <source>Add existing files to the project?</source>
+      <translation>Var olan dosyalar projeye eklensin mi?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3146" />
+      <location filename="../Project/Project.py" line="2668" />
       <source>Select Version Control System</source>
       <translation>Sürüm Kontrol Sistemini Seç</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2765" />
-      <location filename="../Project/Project.py" line="2692" />
+      <location filename="../Project/Project.py" line="2766" />
+      <location filename="../Project/Project.py" line="2693" />
       <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="4082" />
-      <location filename="../Project/Project.py" line="2707" />
+      <location filename="../Project/Project.py" line="4085" />
+      <location filename="../Project/Project.py" line="2708" />
       <source>New project</source>
       <translation>Yeni Proje</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2708" />
+      <location filename="../Project/Project.py" line="2709" />
       <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="2741" />
-      <location filename="../Project/Project.py" line="2729" />
+      <location filename="../Project/Project.py" line="2742" />
+      <location filename="../Project/Project.py" line="2730" />
       <source>None</source>
       <translation>Yok</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2737" />
       <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="2848" />
-      <source>Translation Pattern</source>
-      <translation>Çeviri Kalıbı</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2849" />
+      <source>Translation Pattern</source>
+      <translation>Çeviri Kalıbı</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2850" />
       <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="4102" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="4105" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Open project</source>
       <translation>Projeyi aç</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3096" />
+      <location filename="../Project/Project.py" line="3097" />
       <source>Project Files (*.epj);;XML Project Files (*.e4p)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="3298" />
+      <location filename="../Project/Project.py" line="3288" />
+      <source>Project Files (*.epj)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="3296" />
-      <location filename="../Project/Project.py" line="3286" />
-      <source>Project Files (*.epj)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3294" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3310" />
+      <location filename="../Project/Project.py" line="3312" />
       <source>Save File</source>
       <translation>Dosyayı Kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3349" />
+      <location filename="../Project/Project.py" line="3351" />
       <source>Close Project</source>
       <translation>Projeyi Kapat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3350" />
+      <location filename="../Project/Project.py" line="3352" />
       <source>The current project has unsaved changes.</source>
       <translation>Geçerli projede kaydedilmemiş dosyalar var.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3538" />
-      <location filename="../Project/Project.py" line="3504" />
+      <location filename="../Project/Project.py" line="3541" />
+      <location filename="../Project/Project.py" line="3507" />
       <source>Syntax errors detected</source>
       <translation>Sözdizimi Hataları tespit edildi</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="3539" />
-      <location filename="../Project/Project.py" line="3505" />
+      <location filename="../Project/Project.py" line="3542" />
+      <location filename="../Project/Project.py" line="3508" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation type="unfinished">
         <numerusform />
@@ -56522,1151 +56523,1171 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4084" />
+      <location filename="../Project/Project.py" line="4087" />
       <source>&amp;New...</source>
       <translation>Ye&amp;ni...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4090" />
+      <location filename="../Project/Project.py" line="4093" />
       <source>Generate a new project</source>
       <translation>Yeni bir proje üret</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4092" />
+      <location filename="../Project/Project.py" line="4095" />
       <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="4104" />
+      <location filename="../Project/Project.py" line="4107" />
       <source>&amp;Open...</source>
       <translation>&amp;Aç...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4110" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>Open an existing project</source>
       <translation>Var olan bir projeyi aç</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4115" />
       <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="4118" />
+      <location filename="../Project/Project.py" line="4121" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4123" />
+      <source>&amp;Reload</source>
+      <translation type="unfinished">&amp;Yeniden Yükle</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4129" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4131" />
+      <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="4137" />
       <source>Close project</source>
       <translation>Projeyi kapat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4120" />
+      <location filename="../Project/Project.py" line="4139" />
       <source>&amp;Close</source>
       <translation>&amp;Kapat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4126" />
+      <location filename="../Project/Project.py" line="4145" />
       <source>Close the current project</source>
       <translation>Geçerli projeyi kapat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4128" />
+      <location filename="../Project/Project.py" line="4147" />
       <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="4134" />
+      <location filename="../Project/Project.py" line="4153" />
       <source>Save project</source>
       <translation>Projeyi kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4410" />
-      <location filename="../Project/Project.py" line="4136" />
+      <location filename="../Project/Project.py" line="4429" />
+      <location filename="../Project/Project.py" line="4155" />
       <source>&amp;Save</source>
       <translation>&amp;Kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4142" />
+      <location filename="../Project/Project.py" line="4161" />
       <source>Save the current project</source>
       <translation>Geçerli projeyi kapat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4144" />
+      <location filename="../Project/Project.py" line="4163" />
       <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="4150" />
+      <location filename="../Project/Project.py" line="4169" />
       <source>Save project as</source>
       <translation>projeyi farklı adda kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4152" />
+      <location filename="../Project/Project.py" line="4171" />
       <source>Save &amp;as...</source>
       <translation>Farklı k&amp;aydet...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4158" />
-      <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="4160" />
-      <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="4175" />
-      <source>Add files to project</source>
-      <translation>Projeye dosyalar ekle</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4177" />
-      <source>Add &amp;files...</source>
-      <translation>Dosyaları &amp;ekle...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4183" />
-      <source>Add files to the current project</source>
-      <translation>Geçerli projeye dosyalar ekle</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4185" />
-      <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>
+      <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="4179" />
+      <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="4194" />
+      <source>Add files to project</source>
+      <translation>Projeye dosyalar ekle</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4196" />
+      <source>Add &amp;files...</source>
+      <translation>Dosyaları &amp;ekle...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4202" />
+      <source>Add files to the current project</source>
+      <translation>Geçerli projeye dosyalar ekle</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4204" />
+      <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="4215" />
       <source>Add directory to project</source>
       <translation>Projeye dizin ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4198" />
+      <location filename="../Project/Project.py" line="4217" />
       <source>Add directory...</source>
       <translation>Dizin ekle...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4205" />
+      <location filename="../Project/Project.py" line="4224" />
       <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="4208" />
-      <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="4218" />
-      <source>Add translation to project</source>
-      <translation>Projeye çeviri ekle</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4220" />
-      <source>Add &amp;translation...</source>
-      <translation>Çeviri &amp;ekle...</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4227" />
+      <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="4237" />
+      <source>Add translation to project</source>
+      <translation>Projeye çeviri ekle</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4239" />
+      <source>Add &amp;translation...</source>
+      <translation>Çeviri &amp;ekle...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4246" />
       <source>Add a translation to the current project</source>
       <translation>Geçerli projeye çeviri ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4230" />
-      <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="4240" />
-      <source>Search new files</source>
-      <translation>Yeni dosyaları ara</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4241" />
-      <source>Searc&amp;h new files...</source>
-      <translation>Yeni dosyaları a&amp;ra...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4247" />
-      <source>Search new files in the project directory.</source>
-      <translation>Proje dizininde yeni dosyaları ara.</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4249" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
+      <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="4259" />
+      <source>Search new files</source>
+      <translation>Yeni dosyaları ara</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4260" />
+      <source>Searc&amp;h new files...</source>
+      <translation>Yeni dosyaları a&amp;ra...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4266" />
+      <source>Search new files in the project directory.</source>
+      <translation>Proje dizininde yeni dosyaları ara.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4268" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4279" />
       <source>Search Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4261" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4262" />
-      <source>Alt+Ctrl+P</source>
-      <comment>Project|Search Project File</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4267" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4269" />
-      <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="4278" />
-      <source>Project properties</source>
-      <translation>Proje özellikleri</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4280" />
-      <source>&amp;Properties...</source>
-      <translation>&amp;Özellikler...</translation>
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4281" />
+      <source>Alt+Ctrl+P</source>
+      <comment>Project|Search Project File</comment>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4286" />
-      <source>Show the project properties</source>
-      <translation>Proje özelliklerini göster</translation>
+      <source>Search for a file in the project list of files.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4288" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <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="4297" />
-      <source>User project properties</source>
-      <translation>Kullanıcı projesi özellikleri</translation>
+      <source>Project properties</source>
+      <translation>Proje özellikleri</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4299" />
+      <source>&amp;Properties...</source>
+      <translation>&amp;Özellikler...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4305" />
+      <source>Show the project properties</source>
+      <translation>Proje özelliklerini göster</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4307" />
+      <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="4316" />
+      <source>User project properties</source>
+      <translation>Kullanıcı projesi özellikleri</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4318" />
       <source>&amp;User Properties...</source>
       <translation>K&amp;ullanıcı Özellikleri...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4306" />
+      <location filename="../Project/Project.py" line="4325" />
       <source>Show the user specific project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4309" />
+      <location filename="../Project/Project.py" line="4328" />
       <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="4319" />
+      <location filename="../Project/Project.py" line="4338" />
       <source>Filetype Associations</source>
       <translation>Dosyatipi Birleştirme</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4320" />
+      <location filename="../Project/Project.py" line="4339" />
       <source>Filetype Associations...</source>
       <translation>Dosyatipi Birleştirme...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4327" />
+      <location filename="../Project/Project.py" line="4346" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4330" />
+      <location filename="../Project/Project.py" line="4349" />
       <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="4343" />
+      <location filename="../Project/Project.py" line="4362" />
       <source>Lexer Associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4344" />
+      <location filename="../Project/Project.py" line="4363" />
       <source>Lexer Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4351" />
+      <location filename="../Project/Project.py" line="4370" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4354" />
-      <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="4372" />
-      <source>Debugger Properties</source>
-      <translation>Hata Ayıklayıcı Özellikleri</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4373" />
-      <source>Debugger &amp;Properties...</source>
-      <translation>Hata Ayıklayıcı &amp;Özellikleri...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4379" />
-      <source>Show the debugger properties</source>
-      <translation>Hata ayıklayıcı özelliklerini göster</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4381" />
-      <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>
+      <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="4391" />
-      <source>Load</source>
-      <translation>Yükle</translation>
+      <source>Debugger Properties</source>
+      <translation>Hata Ayıklayıcı Özellikleri</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4392" />
-      <source>&amp;Load</source>
-      <translation>Yük&amp;le</translation>
+      <source>Debugger &amp;Properties...</source>
+      <translation>Hata Ayıklayıcı &amp;Özellikleri...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4398" />
-      <source>Load the debugger properties</source>
-      <translation>Hata ayıklayıcı özelliklerini yükle</translation>
+      <source>Show the debugger properties</source>
+      <translation>Hata ayıklayıcı özelliklerini göster</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4400" />
+      <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="4410" />
+      <source>Load</source>
+      <translation>Yükle</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4411" />
+      <source>&amp;Load</source>
+      <translation>Yük&amp;le</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4417" />
+      <source>Load the debugger properties</source>
+      <translation>Hata ayıklayıcı özelliklerini yükle</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4419" />
       <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="4409" />
-      <source>Save</source>
-      <translation>Kaydet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4416" />
-      <source>Save the debugger properties</source>
-      <translation>Hata ayıklayıcı özelliklerini kaydet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4418" />
-      <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="4427" />
-      <source>Delete</source>
-      <translation>Sil</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4428" />
-      <source>&amp;Delete</source>
-      <translation>&amp;Sil</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4434" />
-      <source>Delete the debugger properties</source>
-      <translation>Hata ayıklayıcı özelliklerini sil</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4436" />
-      <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>
+      <source>Save</source>
+      <translation>Kaydet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4435" />
+      <source>Save the debugger properties</source>
+      <translation>Hata ayıklayıcı özelliklerini kaydet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4437" />
+      <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="4446" />
-      <source>Reset</source>
-      <translation>Başadön</translation>
+      <source>Delete</source>
+      <translation>Sil</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4447" />
-      <source>&amp;Reset</source>
-      <translation>Başad&amp;ön</translation>
+      <source>&amp;Delete</source>
+      <translation>&amp;Sil</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4453" />
-      <source>Reset the debugger properties</source>
-      <translation>Hata ayıklayıcı özelliklerini başa döndür</translation>
+      <source>Delete the debugger properties</source>
+      <translation>Hata ayıklayıcı özelliklerini sil</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4455" />
+      <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="4465" />
+      <source>Reset</source>
+      <translation>Başadön</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4466" />
+      <source>&amp;Reset</source>
+      <translation>Başad&amp;ön</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4472" />
+      <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="4474" />
       <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="4471" />
-      <location filename="../Project/Project.py" line="4470" />
+      <location filename="../Project/Project.py" line="4490" />
+      <location filename="../Project/Project.py" line="4489" />
       <source>Load session</source>
       <translation>Oturum yükleniyor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4477" />
+      <location filename="../Project/Project.py" line="4496" />
       <source>Load the projects session file.</source>
       <translation>Projelerin oturm dosyasını yükle.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4479" />
+      <location filename="../Project/Project.py" line="4498" />
       <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="4495" />
-      <location filename="../Project/Project.py" line="4494" />
+      <location filename="../Project/Project.py" line="4514" />
+      <location filename="../Project/Project.py" line="4513" />
       <source>Save session</source>
       <translation>Oturumu kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4501" />
+      <location filename="../Project/Project.py" line="4520" />
       <source>Save the projects session file.</source>
       <translation>Proje oturum dosyasını kaydet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4503" />
+      <location filename="../Project/Project.py" line="4522" />
       <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="4519" />
-      <location filename="../Project/Project.py" line="4518" />
+      <location filename="../Project/Project.py" line="4538" />
+      <location filename="../Project/Project.py" line="4537" />
       <source>Delete session</source>
       <translation>Oturumu sil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4525" />
+      <location filename="../Project/Project.py" line="4544" />
       <source>Delete the projects session file.</source>
       <translation>Proje oturum dosyasını sil.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4527" />
+      <location filename="../Project/Project.py" line="4546" />
       <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="4542" />
+      <location filename="../Project/Project.py" line="4561" />
       <source>Code Metrics</source>
       <translation>Metrik Kod</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4543" />
+      <location filename="../Project/Project.py" line="4562" />
       <source>&amp;Code Metrics...</source>
       <translation>Me&amp;trik Kod...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4550" />
+      <location filename="../Project/Project.py" line="4569" />
       <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="4553" />
+      <location filename="../Project/Project.py" line="4572" />
       <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="4563" />
+      <location filename="../Project/Project.py" line="4582" />
       <source>Python Code Coverage</source>
       <translation>Python Kod Koruyucu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4564" />
+      <location filename="../Project/Project.py" line="4583" />
       <source>Code Co&amp;verage...</source>
       <translation>Kod Koru&amp;yucu...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4571" />
+      <location filename="../Project/Project.py" line="4590" />
       <source>Show code coverage information for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4574" />
+      <location filename="../Project/Project.py" line="4593" />
       <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="5894" />
-      <location filename="../Project/Project.py" line="5881" />
-      <location filename="../Project/Project.py" line="4584" />
+      <location filename="../Project/Project.py" line="5914" />
+      <location filename="../Project/Project.py" line="5901" />
+      <location filename="../Project/Project.py" line="4603" />
       <source>Profile Data</source>
       <translation>Veri Kesiti</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4585" />
+      <location filename="../Project/Project.py" line="4604" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Veri kesiti...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4592" />
-      <source>Show profiling data for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4595" />
-      <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="5946" />
-      <location filename="../Project/Project.py" line="4610" />
-      <source>Application Diagram</source>
-      <translation>Uygulama Şeması</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4611" />
-      <source>&amp;Application Diagram...</source>
-      <translation>Uygulama Şem&amp;ası...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4618" />
-      <source>Show a diagram of the project.</source>
-      <translation>Projenin bir şemasını göster.</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4621" />
-      <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>
+      <source>Show profiling data for the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4614" />
+      <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="5966" />
+      <location filename="../Project/Project.py" line="4629" />
+      <source>Application Diagram</source>
+      <translation>Uygulama Şeması</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4630" />
-      <source>Load Diagram</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4631" />
-      <source>&amp;Load Diagram...</source>
-      <translation type="unfinished" />
+      <source>&amp;Application Diagram...</source>
+      <translation>Uygulama Şem&amp;ası...</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4637" />
-      <source>Load a diagram from file.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4639" />
-      <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="6131" />
-      <location filename="../Project/Project.py" line="6080" />
-      <location filename="../Project/Project.py" line="4654" />
-      <source>Create Package List</source>
-      <translation>Paket Listesini Oluştur</translation>
+      <source>Show a diagram of the project.</source>
+      <translation>Projenin bir şemasını göster.</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4640" />
+      <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="4649" />
+      <source>Load Diagram</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4650" />
+      <source>&amp;Load Diagram...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4656" />
+      <source>Load a diagram from file.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4658" />
+      <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="6151" />
+      <location filename="../Project/Project.py" line="6100" />
+      <location filename="../Project/Project.py" line="4673" />
+      <source>Create Package List</source>
+      <translation>Paket Listesini Oluştur</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4675" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished">Eklenti &amp;Arşivi Oluştur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4663" />
+      <location filename="../Project/Project.py" line="4682" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4666" />
-      <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="6200" />
-      <location filename="../Project/Project.py" line="4677" />
-      <source>Create Plugin Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4679" />
-      <source>Create Plugin &amp;Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4685" />
+      <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="6220" />
+      <location filename="../Project/Project.py" line="4696" />
+      <source>Create Plugin Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4698" />
+      <source>Create Plugin &amp;Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4704" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4687" />
+      <location filename="../Project/Project.py" line="4706" />
       <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="4699" />
+      <location filename="../Project/Project.py" line="4718" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4701" />
+      <location filename="../Project/Project.py" line="4720" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4708" />
+      <location filename="../Project/Project.py" line="4727" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4711" />
+      <location filename="../Project/Project.py" line="4730" />
       <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="6621" />
-      <location filename="../Project/Project.py" line="6592" />
-      <location filename="../Project/Project.py" line="6543" />
-      <location filename="../Project/Project.py" line="4730" />
+      <location filename="../Project/Project.py" line="6641" />
+      <location filename="../Project/Project.py" line="6612" />
+      <location filename="../Project/Project.py" line="6563" />
+      <location filename="../Project/Project.py" line="4749" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4731" />
-      <source>&amp;Execute Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4737" />
-      <source>Perform a 'make' run.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4739" />
-      <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="6598" />
-      <location filename="../Project/Project.py" line="4749" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4750" />
+      <source>&amp;Execute Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4756" />
+      <source>Perform a 'make' run.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4758" />
+      <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="6618" />
+      <location filename="../Project/Project.py" line="4768" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4769" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4757" />
+      <location filename="../Project/Project.py" line="4776" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4760" />
-      <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="4778" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4779" />
+      <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="4797" />
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4798" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4786" />
+      <location filename="../Project/Project.py" line="4805" />
       <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4789" />
+      <location filename="../Project/Project.py" line="4808" />
       <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="4806" />
+      <location filename="../Project/Project.py" line="4825" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4826" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4813" />
+      <location filename="../Project/Project.py" line="4832" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4815" />
+      <location filename="../Project/Project.py" line="4834" />
       <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="4827" />
+      <location filename="../Project/Project.py" line="4846" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4847" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4835" />
+      <location filename="../Project/Project.py" line="4854" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4838" />
+      <location filename="../Project/Project.py" line="4857" />
       <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="4850" />
+      <location filename="../Project/Project.py" line="4869" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4851" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4858" />
-      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4863" />
-      <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="4876" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4877" />
+      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4882" />
+      <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="4895" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4884" />
+      <location filename="../Project/Project.py" line="4903" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4890" />
+      <location filename="../Project/Project.py" line="4909" />
       <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="5055" />
-      <location filename="../Project/Project.py" line="5005" />
-      <location filename="../Project/Project.py" line="5004" />
-      <location filename="../Project/Project.py" line="4904" />
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="5074" />
+      <location filename="../Project/Project.py" line="5024" />
+      <location filename="../Project/Project.py" line="5023" />
+      <location filename="../Project/Project.py" line="4923" />
+      <location filename="../Project/Project.py" line="4922" />
       <source>Configure</source>
       <translation type="unfinished">Yapılandırma</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4930" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4916" />
+      <location filename="../Project/Project.py" line="4935" />
       <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="4932" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4933" />
+      <location filename="../Project/Project.py" line="4952" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4939" />
+      <location filename="../Project/Project.py" line="4958" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4960" />
       <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="4954" />
-      <location filename="../Project/Project.py" line="4953" />
+      <location filename="../Project/Project.py" line="4973" />
+      <location filename="../Project/Project.py" line="4972" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4961" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4983" />
       <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="4978" />
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4997" />
+      <location filename="../Project/Project.py" line="4996" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4985" />
+      <location filename="../Project/Project.py" line="5004" />
       <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="4991" />
+      <location filename="../Project/Project.py" line="5010" />
       <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="5012" />
+      <location filename="../Project/Project.py" line="5031" />
       <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="5018" />
+      <location filename="../Project/Project.py" line="5037" />
       <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="5034" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5035" />
+      <location filename="../Project/Project.py" line="5054" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5042" />
+      <location filename="../Project/Project.py" line="5061" />
       <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5045" />
+      <location filename="../Project/Project.py" line="5064" />
       <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="5056" />
+      <location filename="../Project/Project.py" line="5075" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5063" />
+      <location filename="../Project/Project.py" line="5082" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
-      <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="5076" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5077" />
-      <source>&amp;Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5083" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5085" />
-      <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="5097" />
-      <source>Recreate</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5098" />
-      <source>&amp;Recreate</source>
+      <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="5095" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5096" />
+      <source>&amp;Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5102" />
+      <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5104" />
+      <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="5116" />
+      <source>Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5117" />
+      <source>&amp;Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5123" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5106" />
+      <location filename="../Project/Project.py" line="5125" />
       <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="5135" />
-      <source>&amp;Project</source>
-      <translation>&amp;Proje</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5136" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Geçmiş P&amp;rojeleri Aç</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5137" />
-      <source>Session</source>
-      <translation>Oturum</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5138" />
-      <source>Debugger</source>
-      <translation>Hata Ayıklayıcı</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5139" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5141" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5142" />
-      <source>&amp;Version Control</source>
-      <translation>S&amp;ürüm Kontrol</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5146" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Kontrol</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5148" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5150" />
-      <source>Sho&amp;w</source>
-      <translation>G&amp;öster</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&amp;Diagrams</source>
-      <translation>Şemalar &amp;D</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Pac&amp;kagers</source>
-      <translation>Pa&amp;ketleyici</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5153" />
-      <source>Source &amp;Documentation</source>
-      <translation>Kaynak Belgeleme &amp;D</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5155" />
-      <source>Make</source>
-      <translation type="unfinished" />
+      <source>&amp;Project</source>
+      <translation>&amp;Proje</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5156" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>Geçmiş P&amp;rojeleri Aç</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5157" />
+      <source>Session</source>
+      <translation>Oturum</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5158" />
+      <source>Debugger</source>
+      <translation>Hata Ayıklayıcı</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5159" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5161" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5162" />
+      <source>&amp;Version Control</source>
+      <translation>S&amp;ürüm Kontrol</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5166" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Kontrol</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5168" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5170" />
+      <source>Sho&amp;w</source>
+      <translation>G&amp;öster</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5171" />
+      <source>&amp;Diagrams</source>
+      <translation>Şemalar &amp;D</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Pac&amp;kagers</source>
+      <translation>Pa&amp;ketleyici</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
+      <source>Source &amp;Documentation</source>
+      <translation>Kaynak Belgeleme &amp;D</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5175" />
+      <source>Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5176" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5317" />
-      <location filename="../Project/Project.py" line="5314" />
+      <location filename="../Project/Project.py" line="5337" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>Project</source>
       <translation>Proje</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5378" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Clear</source>
       <translation>T&amp;emizle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5557" />
       <source>Search New Files</source>
       <translation>Yeni Dosyaları Ara</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5558" />
       <source>There were no new files found to be added.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5687" />
-      <location filename="../Project/Project.py" line="5674" />
+      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5694" />
       <source>Version Control System</source>
       <translation>Sürüm Kontrol Sistemi</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5695" />
       <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="5688" />
+      <location filename="../Project/Project.py" line="5708" />
       <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="5836" />
+      <location filename="../Project/Project.py" line="5856" />
       <source>Coverage Data</source>
       <translation>Veri Kapsamı</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5882" />
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5902" />
+      <location filename="../Project/Project.py" line="5857" />
       <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="5849" />
+      <location filename="../Project/Project.py" line="5869" />
       <source>Code Coverage</source>
       <translation>Kod Koruyucu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5850" />
+      <location filename="../Project/Project.py" line="5870" />
       <source>Please select a coverage file</source>
       <translation>Lütfen bir koruyucu dosya seçiniz</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5915" />
       <source>Please select a profile file</source>
       <translation>Lütfen kesit dosyasını seçiniz</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5947" />
+      <location filename="../Project/Project.py" line="5967" />
       <source>Include module names?</source>
       <translation>Modül isimleri dahil edilsin mi?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6081" />
+      <location filename="../Project/Project.py" line="6101" />
       <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="6132" />
+      <location filename="../Project/Project.py" line="6152" />
       <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="6421" />
-      <location filename="../Project/Project.py" line="6379" />
-      <location filename="../Project/Project.py" line="6333" />
-      <location filename="../Project/Project.py" line="6322" />
-      <location filename="../Project/Project.py" line="6304" />
-      <location filename="../Project/Project.py" line="6271" />
-      <location filename="../Project/Project.py" line="6241" />
-      <location filename="../Project/Project.py" line="6213" />
-      <location filename="../Project/Project.py" line="6183" />
-      <location filename="../Project/Project.py" line="6169" />
-      <location filename="../Project/Project.py" line="6152" />
+      <location filename="../Project/Project.py" line="6441" />
+      <location filename="../Project/Project.py" line="6399" />
+      <location filename="../Project/Project.py" line="6353" />
+      <location filename="../Project/Project.py" line="6342" />
+      <location filename="../Project/Project.py" line="6324" />
+      <location filename="../Project/Project.py" line="6291" />
+      <location filename="../Project/Project.py" line="6261" />
+      <location filename="../Project/Project.py" line="6233" />
+      <location filename="../Project/Project.py" line="6203" />
+      <location filename="../Project/Project.py" line="6189" />
+      <location filename="../Project/Project.py" line="6172" />
       <source>Create Plugin Archive</source>
       <translation>Eklenti Arşivi Oluştur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6153" />
+      <location filename="../Project/Project.py" line="6173" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6170" />
+      <location filename="../Project/Project.py" line="6190" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6184" />
+      <location filename="../Project/Project.py" line="6204" />
       <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="6192" />
+      <location filename="../Project/Project.py" line="6212" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6193" />
+      <location filename="../Project/Project.py" line="6213" />
       <source>Abort</source>
       <translation type="unfinished">Vazgeç</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6196" />
+      <location filename="../Project/Project.py" line="6216" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6214" />
+      <location filename="../Project/Project.py" line="6234" />
       <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="6242" />
+      <location filename="../Project/Project.py" line="6262" />
       <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="6272" />
+      <location filename="../Project/Project.py" line="6292" />
       <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="6305" />
+      <location filename="../Project/Project.py" line="6325" />
       <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="6323" />
+      <location filename="../Project/Project.py" line="6343" />
       <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="6334" />
+      <location filename="../Project/Project.py" line="6354" />
       <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="6380" />
+      <location filename="../Project/Project.py" line="6400" />
       <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="6422" />
+      <location filename="../Project/Project.py" line="6442" />
       <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="6544" />
+      <location filename="../Project/Project.py" line="6564" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6593" />
+      <location filename="../Project/Project.py" line="6613" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6601" />
+      <location filename="../Project/Project.py" line="6621" />
       <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="6606" />
+      <location filename="../Project/Project.py" line="6626" />
       <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="6622" />
+      <location filename="../Project/Project.py" line="6642" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -57918,22 +57939,22 @@
   <context>
     <name>ProjectFile</name>
     <message>
-      <location filename="../Project/ProjectFile.py" line="109" />
+      <location filename="../Project/ProjectFile.py" line="108" />
       <source>Save Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFile.py" line="110" />
+      <location filename="../Project/ProjectFile.py" line="109" />
       <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectFile.py" line="134" />
+      <source>Read Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectFile.py" line="135" />
-      <source>Read Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectFile.py" line="136" />
       <source>&lt;p&gt;The project 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>
@@ -59809,265 +59830,265 @@
   <context>
     <name>ProjectTranslationsBrowser</name>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="99" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="76" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="74" />
       <source>Translations</source>
       <translation>Çeviriler</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="79" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="77" />
       <source>&lt;b&gt;Project Translations Browser&lt;/b&gt;&lt;p&gt;This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Proje Çevirileri Gözatıcısı&lt;/b&gt;&lt;p&gt;Bu geçerli projedeki tüm çevirileri kolayca bir arada görmek için biriktirir . Pekçok işlem için açılır menüyü kullanabilirsiniz.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="95" />
       <source>Translation Files ({0})</source>
       <translation type="unfinished">Çeviri Dosyaları ({0})</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="98" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="96" />
       <source>Translation Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="109" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="107" />
       <source>Translations Browser</source>
       <translation type="unfinished">Çevirilier Gözatıcısı</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="239" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="183" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="237" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="181" />
       <source>Generate translation</source>
       <translation>Çeviriyii üret</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="249" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="247" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation (with obsolete)</source>
       <translation>Çeviriyi üret (eskileri ile beraber)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="538" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="360" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="258" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="194" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="536" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="507" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="330" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="256" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="192" />
       <source>Generate all translations</source>
       <translation>Tüm çevirileri üret</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="513" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="369" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="267" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="198" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="545" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="511" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="367" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="196" />
       <source>Generate all translations (with obsolete)</source>
       <translation>Tüm çevirileri üret (eskileri ile beraber)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="419" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="417" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
       <source>Open in Qt-Linguist</source>
       <translation>Qt-Linguist'te Aç</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="423" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="279" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="206" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="471" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="421" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="277" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="204" />
       <source>Open in Editor</source>
       <translation>Düzenleyicide Aç</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="286" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="284" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
       <source>Release translation</source>
       <translation>Çeviriyi yayımla</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="518" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="377" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="341" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="295" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="553" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="516" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="375" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="339" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="293" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="214" />
       <source>Release all translations</source>
       <translation>Tüm çevirileri yayımla</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="220" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
       <source>Preview translation</source>
       <translation>Çeviri öngörünümü</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="346" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="344" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Preview all translations</source>
       <translation>Tüm çevirilerin öngörünümü</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="441" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="352" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="527" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
       <source>Extract messages</source>
       <translation>Masajı Genişlet</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="469" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="275" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="273" />
       <source>Open</source>
       <translation type="unfinished">Aç</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="488" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="302" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="486" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="300" />
       <source>Remove from project</source>
       <translation>Projeden çıkar</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="561" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="491" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="305" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="559" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="489" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
       <source>Delete</source>
       <translation>Sil</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="384" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="309" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="307" />
       <source>Add translation...</source>
       <translation>Çeviri ekle...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="568" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="566" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="385" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
       <source>Add translation files...</source>
       <translation>Çeviri dosyası ekle...</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="569" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="313" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Yolu Panoya kopyala</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="492" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="388" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="315" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Yolu Panoya kopyala</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="573" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="390" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Configure...</source>
       <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="448" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
       <source>Generate translations</source>
       <translation>Çevirileri üret</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="460" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="458" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="410" />
       <source>Generate translations (with obsolete)</source>
       <translation>Çevirileri üret (eskileri ile beraber)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="480" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="478" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="426" />
       <source>Release translations</source>
       <translation>Çevirileri yayımla</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="432" />
       <source>Preview translations</source>
       <translation>Çeviri öngörünümü</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="835" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="833" />
       <source>Delete translation files</source>
       <translation>Çeviri dosyalarını sil</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="836" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="834" />
       <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="1504" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1001" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="961" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1502" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="999" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="959" />
       <source>Write temporary project file</source>
       <translation>Geçici proje dosyasını yaz</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1505" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1241" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="962" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1239" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="960" />
       <source>No translation files (*.ts) selected.</source>
       <translation>Hiç çeviri dosyası (*.ts) seçilmedi.</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1002" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1000" />
       <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="1240" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1123" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1111" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1238" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1121" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1109" />
       <source>Translation file generation</source>
       <translation>Çeviri dosyası üreteci</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1112" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1110" />
       <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="1118" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1116" />
       <source> The process has crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1122" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1534" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1532" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1292" />
       <source>Process Generation Error</source>
       <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1337" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1295" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1335" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1293" />
       <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="1427" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1425" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1405" />
       <source>Translation file release</source>
       <translation>Yayımlanmış çeviri dosyası</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1406" />
       <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="1428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1426" />
       <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="1535" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1533" />
       <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>
@@ -83041,2216 +83062,2228 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="574" />
+      <location filename="../UI/UserInterface.py" line="573" />
       <source>Initializing Tools...</source>
       <translation>Araçlar Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="585" />
+      <location filename="../UI/UserInterface.py" line="584" />
       <source>Registering Objects...</source>
       <translation>Nesneler Kaydediliyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="619" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Initializing Actions...</source>
       <translation>İşlemler Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="621" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Initializing Menus...</source>
       <translation>Menüler Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="623" />
+      <location filename="../UI/UserInterface.py" line="622" />
       <source>Initializing Toolbars...</source>
       <translation>Araççubuğu Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="625" />
+      <location filename="../UI/UserInterface.py" line="624" />
       <source>Initializing Statusbar...</source>
       <translation>Durumçubuğu Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Single Application Server...</source>
       <translation>Tekli Uygulama Senveri Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="658" />
+      <location filename="../UI/UserInterface.py" line="657" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="661" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Activating Plugins...</source>
       <translation>Eklentiler Aktif oluyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="663" />
+      <location filename="../UI/UserInterface.py" line="662" />
       <source>Generating Plugins Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="666" />
+      <location filename="../UI/UserInterface.py" line="665" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="673" />
+      <location filename="../UI/UserInterface.py" line="672" />
       <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="681" />
+      <location filename="../UI/UserInterface.py" line="680" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="693" />
       <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="699" />
+      <location filename="../UI/UserInterface.py" line="698" />
       <source>Reading Templates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="703" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
-      <location filename="../UI/UserInterface.py" line="1066" />
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1065" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2224" />
-      <location filename="../UI/UserInterface.py" line="1076" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1075" />
       <source>Horizontal Toolbox</source>
       <translation>Yatay Araçkutusu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2201" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1085" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2019" />
+      <location filename="../UI/UserInterface.py" line="1278" />
+      <location filename="../UI/UserInterface.py" line="1095" />
+      <source>Multiproject-Viewer</source>
+      <translation>Çokluproje-Görüntüleyici</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1997" />
+      <location filename="../UI/UserInterface.py" line="1284" />
+      <location filename="../UI/UserInterface.py" line="1101" />
+      <source>Project-Viewer</source>
+      <translation>Proje-Görüntüleyici</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2559" />
+      <location filename="../UI/UserInterface.py" line="2558" />
+      <location filename="../UI/UserInterface.py" line="1291" />
+      <location filename="../UI/UserInterface.py" line="1108" />
+      <source>Find/Replace In Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1298" />
+      <location filename="../UI/UserInterface.py" line="1115" />
+      <source>Find File</source>
+      <translation type="unfinished">Dosya Bul</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1304" />
+      <location filename="../UI/UserInterface.py" line="1121" />
+      <source>VCS Status</source>
+      <translation type="unfinished">VCS Durumu</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1311" />
+      <location filename="../UI/UserInterface.py" line="1128" />
+      <source>Template-Viewer</source>
+      <translation>Şablon-Gösterici</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2085" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1135" />
+      <source>File-Browser</source>
+      <translation>Dosya-Gözatıcısı</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1325" />
+      <location filename="../UI/UserInterface.py" line="1142" />
+      <source>Symbols</source>
+      <translation>Semboller</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2041" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Debug-Viewer</source>
+      <translation>Hata Ayıklama Göstericisi</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2412" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1159" />
+      <source>Code Documentation Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2628" />
+      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="1361" />
+      <location filename="../UI/UserInterface.py" line="1166" />
+      <source>Help Viewer</source>
+      <translation type="unfinished">Yardım</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1367" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>Plugin Repository</source>
+      <translation>Eklenti Havuzu</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1373" />
+      <location filename="../UI/UserInterface.py" line="1178" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2440" />
+      <location filename="../UI/UserInterface.py" line="2439" />
+      <location filename="../UI/UserInterface.py" line="1378" />
+      <location filename="../UI/UserInterface.py" line="1183" />
+      <source>PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="2461" />
+      <location filename="../UI/UserInterface.py" line="1385" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Conda</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1392" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Cooperation</source>
+      <translation>İşbirliği</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2340" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
+      <source>IRC</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="2483" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>MicroPython</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2063" />
+      <location filename="../UI/UserInterface.py" line="1410" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Shell</source>
+      <translation>Kabuk</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2129" />
+      <location filename="../UI/UserInterface.py" line="1416" />
+      <location filename="../UI/UserInterface.py" line="1219" />
+      <source>Task-Viewer</source>
+      <translation>Görev-Gösterici</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2107" />
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1223" />
+      <source>Log-Viewer</source>
+      <translation>Kayıt-Gösterici</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1429" />
+      <location filename="../UI/UserInterface.py" line="1230" />
+      <source>Numbers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1815" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} - Pasif Mod</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1822" />
+      <location filename="../UI/UserInterface.py" line="1818" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} - {1} -Pasif Mod</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1826" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} - {1} - {2} - Pasif Mod</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1850" />
+      <source>Quit</source>
+      <translation>Çık</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1852" />
+      <source>&amp;Quit</source>
+      <translation>&amp;Çıkış</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1853" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1858" />
+      <source>Quit the IDE</source>
+      <translation>IDE den Çık</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1860" />
+      <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="1874" />
+      <location filename="../UI/UserInterface.py" line="1872" />
+      <source>Restart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1880" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
+      <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="1900" />
+      <location filename="../UI/UserInterface.py" line="1893" />
+      <source>Save session</source>
+      <translation>Oturumu kaydet</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1894" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1902" />
+      <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="7649" />
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Load session</source>
+      <translation type="unfinished">Oturum yükleniyor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1913" />
+      <source>Load session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1921" />
+      <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="1931" />
+      <source>New Window</source>
+      <translation type="unfinished">Yeni Pencere</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1933" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished">Yeni &amp;Pencere</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1934" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1941" />
+      <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="1955" />
+      <location filename="../UI/UserInterface.py" line="1953" />
+      <source>Edit Profile</source>
+      <translation>Düzenleme Kesiti</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
+      <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="1964" />
+      <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="1977" />
+      <location filename="../UI/UserInterface.py" line="1975" />
+      <source>Debug Profile</source>
+      <translation>Hata Ayıklama Kesiti</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1984" />
+      <source>Activate the debug view profile</source>
+      <translation>Debug görüntü kesitini aktif et</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1986" />
+      <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="1998" />
+      <source>&amp;Project-Viewer</source>
+      <translation>&amp;proje-Görüntüleyici</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2005" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2008" />
+      <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="2020" />
-      <location filename="../UI/UserInterface.py" line="1279" />
-      <location filename="../UI/UserInterface.py" line="1096" />
-      <source>Multiproject-Viewer</source>
-      <translation>Çokluproje-Görüntüleyici</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1998" />
-      <location filename="../UI/UserInterface.py" line="1285" />
-      <location filename="../UI/UserInterface.py" line="1102" />
-      <source>Project-Viewer</source>
-      <translation>Proje-Görüntüleyici</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2560" />
-      <location filename="../UI/UserInterface.py" line="2559" />
-      <location filename="../UI/UserInterface.py" line="1292" />
-      <location filename="../UI/UserInterface.py" line="1109" />
-      <source>Find/Replace In Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
-      <location filename="../UI/UserInterface.py" line="2582" />
-      <location filename="../UI/UserInterface.py" line="1299" />
-      <location filename="../UI/UserInterface.py" line="1116" />
-      <source>Find File</source>
-      <translation type="unfinished">Dosya Bul</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1305" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>VCS Status</source>
-      <translation type="unfinished">VCS Durumu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
-      <location filename="../UI/UserInterface.py" line="1312" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Template-Viewer</source>
-      <translation>Şablon-Gösterici</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2086" />
-      <location filename="../UI/UserInterface.py" line="1319" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>File-Browser</source>
-      <translation>Dosya-Gözatıcısı</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Symbols</source>
-      <translation>Semboller</translation>
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>Çokluproje-Görü&amp;ntüleyici</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2027" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2030" />
+      <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="2042" />
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1153" />
-      <source>Debug-Viewer</source>
-      <translation>Hata Ayıklama Göstericisi</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2414" />
-      <location filename="../UI/UserInterface.py" line="2413" />
-      <location filename="../UI/UserInterface.py" line="1355" />
-      <location filename="../UI/UserInterface.py" line="1160" />
-      <source>Code Documentation Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2629" />
-      <location filename="../UI/UserInterface.py" line="2628" />
-      <location filename="../UI/UserInterface.py" line="1362" />
-      <location filename="../UI/UserInterface.py" line="1167" />
-      <source>Help Viewer</source>
-      <translation type="unfinished">Yardım</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <location filename="../UI/UserInterface.py" line="2509" />
-      <location filename="../UI/UserInterface.py" line="2508" />
-      <location filename="../UI/UserInterface.py" line="1368" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Plugin Repository</source>
-      <translation>Eklenti Havuzu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
-      <location filename="../UI/UserInterface.py" line="2532" />
-      <location filename="../UI/UserInterface.py" line="1374" />
-      <location filename="../UI/UserInterface.py" line="1179" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2441" />
-      <location filename="../UI/UserInterface.py" line="2440" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1184" />
-      <source>PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2463" />
-      <location filename="../UI/UserInterface.py" line="2462" />
-      <location filename="../UI/UserInterface.py" line="1386" />
-      <location filename="../UI/UserInterface.py" line="1189" />
-      <source>Conda</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1393" />
-      <location filename="../UI/UserInterface.py" line="1196" />
-      <source>Cooperation</source>
-      <translation>İşbirliği</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
-      <location filename="../UI/UserInterface.py" line="1397" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>IRC</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
-      <location filename="../UI/UserInterface.py" line="2484" />
-      <location filename="../UI/UserInterface.py" line="1403" />
-      <location filename="../UI/UserInterface.py" line="1208" />
-      <source>MicroPython</source>
+      <source>&amp;Debug-Viewer</source>
+      <translation>Ha&amp;ta Ayıklama-Göstericisi</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2049" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2052" />
+      <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="2064" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Shell</source>
-      <translation>Kabuk</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2130" />
-      <location filename="../UI/UserInterface.py" line="1417" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>Task-Viewer</source>
-      <translation>Görev-Gösterici</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2108" />
-      <location filename="../UI/UserInterface.py" line="1423" />
-      <location filename="../UI/UserInterface.py" line="1224" />
-      <source>Log-Viewer</source>
-      <translation>Kayıt-Gösterici</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1430" />
-      <location filename="../UI/UserInterface.py" line="1231" />
-      <source>Numbers</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1816" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} - Pasif Mod</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1823" />
-      <location filename="../UI/UserInterface.py" line="1819" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} - {1} -Pasif Mod</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} - {1} - {2} - Pasif Mod</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1851" />
-      <source>Quit</source>
-      <translation>Çık</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <source>&amp;Quit</source>
-      <translation>&amp;Çıkış</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1854" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>Quit the IDE</source>
-      <translation>IDE den Çık</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1861" />
-      <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="1875" />
-      <location filename="../UI/UserInterface.py" line="1873" />
-      <source>Restart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1881" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1883" />
-      <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="1901" />
-      <location filename="../UI/UserInterface.py" line="1894" />
-      <source>Save session</source>
-      <translation>Oturumu kaydet</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1903" />
-      <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="7650" />
-      <location filename="../UI/UserInterface.py" line="1920" />
-      <location filename="../UI/UserInterface.py" line="1913" />
-      <source>Load session</source>
-      <translation type="unfinished">Oturum yükleniyor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1914" />
-      <source>Load session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1922" />
-      <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="1932" />
-      <source>New Window</source>
-      <translation type="unfinished">Yeni Pencere</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1934" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished">Yeni &amp;Pencere</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1940" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1942" />
-      <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="1956" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <source>Edit Profile</source>
-      <translation>Düzenleme Kesiti</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1963" />
-      <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="1965" />
-      <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="1978" />
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>Debug Profile</source>
-      <translation>Hata Ayıklama Kesiti</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1985" />
-      <source>Activate the debug view profile</source>
-      <translation>Debug görüntü kesitini aktif et</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1987" />
-      <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="1999" />
-      <source>&amp;Project-Viewer</source>
-      <translation>&amp;proje-Görüntüleyici</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2000" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2006" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2009" />
-      <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="2021" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>Çokluproje-Görü&amp;ntüleyici</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2028" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2031" />
-      <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="2043" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>Ha&amp;ta Ayıklama-Göstericisi</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2050" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2053" />
-      <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" />
+      <source>&amp;Shell</source>
+      <translation>&amp;Kabuk</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2065" />
-      <source>&amp;Shell</source>
-      <translation>&amp;Kabuk</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2072" />
+      <location filename="../UI/UserInterface.py" line="2071" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2075" />
+      <location filename="../UI/UserInterface.py" line="2074" />
       <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="2086" />
+      <source>&amp;File-Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2087" />
-      <source>&amp;File-Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2094" />
+      <location filename="../UI/UserInterface.py" line="2093" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2097" />
+      <location filename="../UI/UserInterface.py" line="2096" />
       <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="2108" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2109" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2116" />
+      <location filename="../UI/UserInterface.py" line="2115" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2119" />
+      <location filename="../UI/UserInterface.py" line="2118" />
       <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="2130" />
+      <source>&amp;Task-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&amp;Task-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2138" />
+      <location filename="../UI/UserInterface.py" line="2137" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2141" />
+      <location filename="../UI/UserInterface.py" line="2140" />
       <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="2153" />
+      <source>Templ&amp;ate-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2154" />
-      <source>Templ&amp;ate-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2161" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <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="2179" />
+      <location filename="../UI/UserInterface.py" line="2178" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2186" />
+      <location filename="../UI/UserInterface.py" line="2185" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2187" />
       <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="2202" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2209" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2211" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <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="2225" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Ya&amp;tay Araçkutusu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2232" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation>Yatay Araçkutusu penceresini açkapa</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2234" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <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="2246" />
+      <source>Left Sidebar</source>
+      <translation>Sol Durumçubuğu</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2247" />
-      <source>Left Sidebar</source>
-      <translation>Sol Durumçubuğu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
       <source>&amp;Left Sidebar</source>
       <translation>So&amp;l Durumçubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2255" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the left sidebar window</source>
       <translation>Sol Durum çubuğu penceresini açkapa</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2257" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2269" />
+      <source>Right Sidebar</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2270" />
-      <source>Right Sidebar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2271" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2278" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2280" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2292" />
+      <source>Bottom Sidebar</source>
+      <translation>Alt Durumçubuğu</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2293" />
-      <source>Bottom Sidebar</source>
-      <translation>Alt Durumçubuğu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2294" />
       <source>&amp;Bottom Sidebar</source>
       <translation>Alt Durumçu&amp;buğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2301" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Alt Durum çubuğu penceresini açkapa</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2303" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <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="2315" />
+      <source>Cooperation-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2316" />
-      <source>Cooperation-Viewer</source>
+      <source>Co&amp;operation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2317" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
       <source>Alt+Shift+O</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2324" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2326" />
       <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="2341" />
+      <source>&amp;IRC</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2342" />
-      <source>&amp;IRC</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2349" />
+      <location filename="../UI/UserInterface.py" line="2348" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2352" />
+      <location filename="../UI/UserInterface.py" line="2351" />
       <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="2362" />
+      <source>Symbols-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2363" />
-      <source>Symbols-Viewer</source>
+      <source>S&amp;ymbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2364" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2371" />
+      <location filename="../UI/UserInterface.py" line="2370" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2374" />
+      <location filename="../UI/UserInterface.py" line="2373" />
       <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="2387" />
+      <source>Numbers-Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2388" />
-      <source>Numbers-Viewer</source>
+      <source>Num&amp;bers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2389" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2396" />
+      <location filename="../UI/UserInterface.py" line="2395" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2399" />
+      <location filename="../UI/UserInterface.py" line="2398" />
       <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="2415" />
+      <location filename="../UI/UserInterface.py" line="2414" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2421" />
+      <location filename="../UI/UserInterface.py" line="2420" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2426" />
+      <location filename="../UI/UserInterface.py" line="2425" />
       <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="2442" />
+      <location filename="../UI/UserInterface.py" line="2441" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
+      <location filename="../UI/UserInterface.py" line="2447" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2451" />
+      <location filename="../UI/UserInterface.py" line="2450" />
       <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="2464" />
+      <location filename="../UI/UserInterface.py" line="2463" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2470" />
+      <location filename="../UI/UserInterface.py" line="2469" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2473" />
+      <location filename="../UI/UserInterface.py" line="2472" />
       <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="2486" />
+      <location filename="../UI/UserInterface.py" line="2485" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2492" />
+      <location filename="../UI/UserInterface.py" line="2491" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2495" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <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="2510" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2516" />
+      <location filename="../UI/UserInterface.py" line="2515" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2534" />
+      <location filename="../UI/UserInterface.py" line="2533" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2540" />
+      <location filename="../UI/UserInterface.py" line="2539" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
       <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="2561" />
+      <location filename="../UI/UserInterface.py" line="2560" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
+      <location filename="../UI/UserInterface.py" line="2566" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2570" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <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="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2590" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2593" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <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="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <source>VCS Status List</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
-      <location filename="../UI/UserInterface.py" line="2606" />
-      <source>VCS Status List</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2614" />
+      <location filename="../UI/UserInterface.py" line="2613" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <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="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2636" />
+      <location filename="../UI/UserInterface.py" line="2635" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2639" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <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="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
       <source>What's This?</source>
       <translation>Bu nedir?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <source>&amp;What's This?</source>
+      <translation>Bu &amp;Nedir?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2654" />
-      <source>&amp;What's This?</source>
-      <translation>Bu &amp;Nedir?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2660" />
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Context sensitive help</source>
       <translation>Duyarlı yardım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2662" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <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="2675" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>Helpviewer</source>
       <translation>Yardımgösterici</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2676" />
+      <source>&amp;Helpviewer...</source>
+      <translation>&amp;Yardım Gösterici...</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
-      <source>&amp;Helpviewer...</source>
-      <translation>&amp;Yardım Gösterici...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2678" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2683" />
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Open the helpviewer window</source>
       <translation>Yardımgösterici penceresini aç</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2685" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <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="2704" />
+      <source>Show Versions</source>
+      <translation>Sürümü Göster</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2705" />
-      <source>Show Versions</source>
-      <translation>Sürümü Göster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Show &amp;Versions</source>
       <translation>Sürümü G&amp;öster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2711" />
       <source>Display version information</source>
       <translation>Sürüm bilgisini görüntüle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2714" />
+      <location filename="../UI/UserInterface.py" line="2713" />
       <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="2729" />
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>Show Error Log</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2722" />
       <source>Show Error &amp;Log...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2730" />
       <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="2739" />
+      <source>Show Install Info</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2740" />
-      <source>Show Install Info</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2747" />
+      <location filename="../UI/UserInterface.py" line="2746" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2749" />
+      <location filename="../UI/UserInterface.py" line="2748" />
       <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="4633" />
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="4632" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report Bug</source>
       <translation>Hata Raporu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report &amp;Bug...</source>
       <translation>Hata &amp;Raporu...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
+      <location filename="../UI/UserInterface.py" line="2760" />
       <source>Report a bug</source>
       <translation>Bir hata rapor et</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <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="2770" />
+      <source>Request Feature</source>
+      <translation>İhtiyaç Duyulan Özellikler</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2771" />
-      <source>Request Feature</source>
-      <translation>İhtiyaç Duyulan Özellikler</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2772" />
       <source>Request &amp;Feature...</source>
       <translation>İhtiyaç Duyulan Özellikler &amp;F...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2777" />
       <source>Send a feature request</source>
       <translation>ihtiyaç duyuulan bir özelliği gönder</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2780" />
+      <location filename="../UI/UserInterface.py" line="2779" />
       <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="4091" />
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2792" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
+      <location filename="../UI/UserInterface.py" line="2798" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2801" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <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="2812" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2820" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2821" />
       <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="2832" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2833" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2844" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <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="2854" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
+      <location filename="../UI/UserInterface.py" line="2855" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>Run tests of the current script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2864" />
+      <location filename="../UI/UserInterface.py" line="2863" />
       <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="2873" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2881" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <source>Run tests of the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <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="2905" />
+      <location filename="../UI/UserInterface.py" line="2904" />
       <source>Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2907" />
+      <location filename="../UI/UserInterface.py" line="2906" />
       <source>Qt-&amp;Designer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2912" />
       <source>Start Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2915" />
+      <location filename="../UI/UserInterface.py" line="2914" />
       <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="2935" />
+      <location filename="../UI/UserInterface.py" line="2934" />
       <source>Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2937" />
+      <location filename="../UI/UserInterface.py" line="2936" />
       <source>Qt-&amp;Linguist...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2943" />
+      <location filename="../UI/UserInterface.py" line="2942" />
       <source>Start Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2945" />
+      <location filename="../UI/UserInterface.py" line="2944" />
       <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="2953" />
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>UI Previewer</source>
       <translation>UI Öngörünümü</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
+      <location filename="../UI/UserInterface.py" line="2954" />
       <source>&amp;UI Previewer...</source>
       <translation>&amp;UI Öngörünümü...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2961" />
+      <location filename="../UI/UserInterface.py" line="2960" />
       <source>Start the UI Previewer</source>
       <translation>UI Öngörünümünü Başlat</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2962" />
       <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="2969" />
+      <location filename="../UI/UserInterface.py" line="2968" />
       <source>Translations Previewer</source>
       <translation>Çevirilerin Öngörünümleri</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2971" />
+      <location filename="../UI/UserInterface.py" line="2970" />
       <source>&amp;Translations Previewer...</source>
       <translation>Çevirilerin &amp;Öngörünümleri...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="2976" />
       <source>Start the Translations Previewer</source>
       <translation>Çevirilerin Öngörünümlerini Başlat</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2979" />
+      <location filename="../UI/UserInterface.py" line="2978" />
       <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="2988" />
+      <location filename="../UI/UserInterface.py" line="2987" />
       <source>Compare Files</source>
       <translation>Dosyaları Karşılaştır</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2990" />
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&amp;Compare Files...</source>
       <translation>D&amp;osyaları Karşılaştır...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="2995" />
       <source>Compare two files</source>
       <translation>İki dosyayı karşılaştır</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2998" />
+      <location filename="../UI/UserInterface.py" line="2997" />
       <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="3007" />
+      <location filename="../UI/UserInterface.py" line="3006" />
       <source>Compare Files side by side</source>
       <translation>Dosyaları yan yana karşılaştır</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3009" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3017" />
+      <location filename="../UI/UserInterface.py" line="3016" />
       <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="3027" />
+      <location filename="../UI/UserInterface.py" line="3026" />
       <source>SQL Browser</source>
       <translation>SQL Gözatıcısı</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3028" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL &amp;Gözatıcısı...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3035" />
+      <location filename="../UI/UserInterface.py" line="3034" />
       <source>Browse a SQL database</source>
       <translation>Bir SQL veritabanına gözat</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3037" />
+      <location filename="../UI/UserInterface.py" line="3036" />
       <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="3051" />
-      <location filename="../UI/UserInterface.py" line="3043" />
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <location filename="../UI/UserInterface.py" line="3042" />
       <source>Mini Editor</source>
       <translation>Mini Düzenleyici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3045" />
+      <location filename="../UI/UserInterface.py" line="3044" />
       <source>Mini &amp;Editor...</source>
       <translation>Mini &amp;Düzenleyici...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3053" />
+      <location filename="../UI/UserInterface.py" line="3052" />
       <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="3062" />
+      <location filename="../UI/UserInterface.py" line="3061" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3064" />
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&amp;Hex Editor...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
+      <location filename="../UI/UserInterface.py" line="3069" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3072" />
+      <location filename="../UI/UserInterface.py" line="3071" />
       <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="3082" />
+      <location filename="../UI/UserInterface.py" line="3081" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3084" />
+      <location filename="../UI/UserInterface.py" line="3083" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3089" />
       <source>Start the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3092" />
+      <location filename="../UI/UserInterface.py" line="3091" />
       <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="3101" />
+      <location filename="../UI/UserInterface.py" line="3100" />
       <source>Icon Editor</source>
       <translation>İkon Düzenleyici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3103" />
+      <location filename="../UI/UserInterface.py" line="3102" />
       <source>&amp;Icon Editor...</source>
       <translation>&amp;İkon Düzenleyici...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3109" />
+      <location filename="../UI/UserInterface.py" line="3108" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
+      <location filename="../UI/UserInterface.py" line="3110" />
       <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="3120" />
+      <location filename="../UI/UserInterface.py" line="3119" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3122" />
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3128" />
+      <location filename="../UI/UserInterface.py" line="3127" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3129" />
       <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="3140" />
+      <location filename="../UI/UserInterface.py" line="3139" />
       <source>Preferences</source>
       <translation>Seçenekler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3142" />
+      <location filename="../UI/UserInterface.py" line="3141" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Seçenekler...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3147" />
       <source>Set the prefered configuration</source>
       <translation>tercih edilen ayarları yapınız</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3149" />
       <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="3161" />
+      <location filename="../UI/UserInterface.py" line="3160" />
       <source>Export Preferences</source>
       <translation>Seçenekleri Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3163" />
+      <location filename="../UI/UserInterface.py" line="3162" />
       <source>E&amp;xport Preferences...</source>
       <translation>Tercihleri Dı&amp;şa Aktar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3169" />
+      <location filename="../UI/UserInterface.py" line="3168" />
       <source>Export the current configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="3170" />
       <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="3180" />
+      <location filename="../UI/UserInterface.py" line="3179" />
       <source>Import Preferences</source>
       <translation>Seçenekleri İçe Aktar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3182" />
+      <location filename="../UI/UserInterface.py" line="3181" />
       <source>I&amp;mport Preferences...</source>
       <translation>Tercihleri İ&amp;çeri Aktar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3188" />
       <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="3192" />
+      <location filename="../UI/UserInterface.py" line="3191" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3200" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3203" />
+      <location filename="../UI/UserInterface.py" line="3202" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3209" />
+      <location filename="../UI/UserInterface.py" line="3208" />
       <source>Export the current theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
+      <location filename="../UI/UserInterface.py" line="3210" />
       <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="3220" />
+      <location filename="../UI/UserInterface.py" line="3219" />
       <source>Import Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3222" />
+      <location filename="../UI/UserInterface.py" line="3221" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3228" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
+      <location filename="../UI/UserInterface.py" line="3229" />
       <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="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload APIs</source>
       <translation>API'leri yeniden yükle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload &amp;APIs</source>
       <translation>&amp;API'leri yeniden yükle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3241" />
+      <location filename="../UI/UserInterface.py" line="3240" />
       <source>Reload the API information</source>
       <translation>API bilgisini yeniden yükle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3243" />
+      <location filename="../UI/UserInterface.py" line="3242" />
       <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="3257" />
-      <location filename="../UI/UserInterface.py" line="3249" />
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <location filename="../UI/UserInterface.py" line="3248" />
       <source>Show external tools</source>
       <translation>Harici araçları göster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
+      <location filename="../UI/UserInterface.py" line="3250" />
       <source>Show external &amp;tools</source>
       <translation>Karak&amp;ter tablosunu göster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3258" />
       <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="3269" />
+      <location filename="../UI/UserInterface.py" line="3268" />
       <source>View Profiles</source>
       <translation>Görünüm Kesiti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
+      <location filename="../UI/UserInterface.py" line="3270" />
       <source>&amp;View Profiles...</source>
       <translation>&amp;Görünüm Kesiti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3277" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Configure view profiles</source>
       <translation>Görünüm kesitlerini ayarla</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
+      <location filename="../UI/UserInterface.py" line="3278" />
       <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="3290" />
+      <location filename="../UI/UserInterface.py" line="3289" />
       <source>Toolbars</source>
       <translation>Araççubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3292" />
+      <location filename="../UI/UserInterface.py" line="3291" />
       <source>Tool&amp;bars...</source>
       <translation>Araççu&amp;buğu...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
+      <location filename="../UI/UserInterface.py" line="3297" />
       <source>Configure toolbars</source>
       <translation>Araççubuğunu ayarla</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3299" />
       <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="3311" />
+      <location filename="../UI/UserInterface.py" line="3310" />
       <source>Keyboard Shortcuts</source>
       <translation>Klavye Kısayolları</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3313" />
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Klavye Kı&amp;sayolları...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3319" />
+      <location filename="../UI/UserInterface.py" line="3318" />
       <source>Set the keyboard shortcuts</source>
       <translation>Klavye kısayollarını ayarla</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
+      <location filename="../UI/UserInterface.py" line="3320" />
       <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="7335" />
-      <location filename="../UI/UserInterface.py" line="7316" />
-      <location filename="../UI/UserInterface.py" line="3331" />
+      <location filename="../UI/UserInterface.py" line="7334" />
+      <location filename="../UI/UserInterface.py" line="7315" />
+      <location filename="../UI/UserInterface.py" line="3330" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Kılavye Kısa Yollarını Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3333" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <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="3339" />
+      <location filename="../UI/UserInterface.py" line="3338" />
       <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="3341" />
+      <location filename="../UI/UserInterface.py" line="3340" />
       <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="7354" />
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="7353" />
+      <location filename="../UI/UserInterface.py" line="3349" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Klavye kısayollarını İçe Aktar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3352" />
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>Klavye K&amp;ısayollarını İçe Aktar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="3357" />
       <source>Import the keyboard shortcuts</source>
       <translation>Klavye kısayolları içeri aktarılıyor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3359" />
       <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="3370" />
+      <location filename="../UI/UserInterface.py" line="3369" />
       <source>Manage SSL Certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3372" />
+      <location filename="../UI/UserInterface.py" line="3371" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3378" />
       <source>Manage the saved SSL certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3382" />
+      <location filename="../UI/UserInterface.py" line="3381" />
       <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="3392" />
+      <location filename="../UI/UserInterface.py" line="3391" />
       <source>Edit Message Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3394" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="3400" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3404" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <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="3423" />
-      <location filename="../UI/UserInterface.py" line="3417" />
-      <location filename="../UI/UserInterface.py" line="3415" />
+      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Clear private data</source>
       <translation type="unfinished">Özel verileri temizle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3425" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <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="3435" />
+      <location filename="../UI/UserInterface.py" line="3434" />
+      <source>Activate current editor</source>
+      <translation>Geçerli düzenleyiciyi aktif yap</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3436" />
-      <location filename="../UI/UserInterface.py" line="3435" />
-      <source>Activate current editor</source>
-      <translation>Geçerli düzenleyiciyi aktif yap</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3447" />
+      <location filename="../UI/UserInterface.py" line="3446" />
+      <source>Show next</source>
+      <translation>Sonrakini göster</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3448" />
-      <location filename="../UI/UserInterface.py" line="3447" />
-      <source>Show next</source>
-      <translation>Sonrakini göster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3458" />
+      <source>Show previous</source>
+      <translation>Öncekini göster</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3460" />
-      <location filename="../UI/UserInterface.py" line="3459" />
-      <source>Show previous</source>
-      <translation>Öncekini göster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3461" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Switch between tabs</source>
+      <translation>Sekmeler arasında değiştir</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3472" />
-      <location filename="../UI/UserInterface.py" line="3471" />
-      <source>Switch between tabs</source>
-      <translation>Sekmeler arasında değiştir</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
       <source>Plugin Infos</source>
       <translation>Eklenti Bilgisi</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3485" />
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>&amp;Plugin Infos...</source>
       <translation>Eklenti Bil&amp;gisi...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
+      <location filename="../UI/UserInterface.py" line="3490" />
       <source>Show Plugin Infos</source>
       <translation>Eklenti Bilgisini Göster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
+      <location filename="../UI/UserInterface.py" line="3492" />
       <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="3511" />
-      <location filename="../UI/UserInterface.py" line="3503" />
+      <location filename="../UI/UserInterface.py" line="3510" />
+      <location filename="../UI/UserInterface.py" line="3502" />
       <source>Install Plugins</source>
       <translation>Eklenti Kur</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3504" />
       <source>&amp;Install Plugins...</source>
       <translation>Ekle&amp;nti Kur...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
+      <location filename="../UI/UserInterface.py" line="3512" />
       <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="3530" />
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Uninstall Plugin</source>
       <translation>Eklenti Kaldır</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3524" />
+      <location filename="../UI/UserInterface.py" line="3523" />
       <source>&amp;Uninstall Plugin...</source>
       <translation>Ekle&amp;nti Kaldır...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <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="3543" />
+      <location filename="../UI/UserInterface.py" line="3542" />
       <source>Plugin &amp;Repository...</source>
       <translation>Eklenti Hav&amp;uzu...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <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="3551" />
+      <location filename="../UI/UserInterface.py" line="3550" />
       <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="3578" />
       <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="3576" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3584" />
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Open Qt5 Documentation</source>
       <translation type="unfinished">QT4 Belgelerini Aç {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3599" />
       <location filename="../UI/UserInterface.py" line="3598" />
+      <location filename="../UI/UserInterface.py" line="3597" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3605" />
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">QT4 Belgelerini Aç {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3606" />
       <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="3620" />
       <location filename="../UI/UserInterface.py" line="3619" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3626" />
+      <location filename="../UI/UserInterface.py" line="3625" />
       <source>Open PyQt5 Documentation</source>
       <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3627" />
       <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="3641" />
       <location filename="../UI/UserInterface.py" line="3640" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">PyQt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3647" />
+      <location filename="../UI/UserInterface.py" line="3646" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">PyQt4 Begelerini aç {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3648" />
       <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="3667" />
       <location filename="../UI/UserInterface.py" line="3666" />
+      <location filename="../UI/UserInterface.py" line="3665" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3673" />
+      <location filename="../UI/UserInterface.py" line="3672" />
       <source>Open Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <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="3694" />
       <location filename="../UI/UserInterface.py" line="3693" />
+      <location filename="../UI/UserInterface.py" line="3692" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3700" />
+      <location filename="../UI/UserInterface.py" line="3699" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
       <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="3720" />
       <location filename="../UI/UserInterface.py" line="3719" />
+      <location filename="../UI/UserInterface.py" line="3718" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3726" />
+      <location filename="../UI/UserInterface.py" line="3725" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
       <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="3746" />
       <location filename="../UI/UserInterface.py" line="3745" />
+      <location filename="../UI/UserInterface.py" line="3744" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3752" />
+      <location filename="../UI/UserInterface.py" line="3751" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <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="3854" />
+      <location filename="../UI/UserInterface.py" line="3853" />
       <source>E&amp;xtras</source>
       <translation>İla&amp;veler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
+      <location filename="../UI/UserInterface.py" line="3863" />
       <source>Wi&amp;zards</source>
       <translation>Sihirba&amp;z</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3882" />
+      <location filename="../UI/UserInterface.py" line="3881" />
       <source>P&amp;lugins</source>
       <translation>Ek&amp;lentiler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3891" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>Configure...</source>
       <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3900" />
+      <location filename="../UI/UserInterface.py" line="3899" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3917" />
+      <location filename="../UI/UserInterface.py" line="3916" />
       <source>Select Tool Group</source>
       <translation>Araç Grubunu Seç</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Se&amp;ttings</source>
       <translation>Ayar&amp;lar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3961" />
+      <location filename="../UI/UserInterface.py" line="3960" />
       <source>&amp;Window</source>
       <translation>&amp;Pencere</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3970" />
+      <location filename="../UI/UserInterface.py" line="3969" />
       <source>&amp;Windows</source>
       <translation type="unfinished">&amp;Pencereler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3974" />
+      <location filename="../UI/UserInterface.py" line="3973" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3978" />
+      <location filename="../UI/UserInterface.py" line="3977" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3997" />
+      <location filename="../UI/UserInterface.py" line="3996" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4016" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4024" />
+      <location filename="../UI/UserInterface.py" line="4023" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4030" />
+      <location filename="../UI/UserInterface.py" line="4029" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Araççubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4043" />
+      <location filename="../UI/UserInterface.py" line="4042" />
       <source>&amp;Help</source>
       <translation>&amp;Yardım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="4112" />
+      <location filename="../UI/UserInterface.py" line="4089" />
       <source>Tools</source>
       <translation>Araçlar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4115" />
-      <location filename="../UI/UserInterface.py" line="4094" />
+      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4093" />
       <source>Settings</source>
       <translation>Ayarlar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6148" />
+      <location filename="../UI/UserInterface.py" line="6147" />
+      <location filename="../UI/UserInterface.py" line="4115" />
+      <location filename="../UI/UserInterface.py" line="4094" />
+      <source>Help</source>
+      <translation>Yardım</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4116" />
       <location filename="../UI/UserInterface.py" line="4095" />
-      <source>Help</source>
-      <translation>Yardım</translation>
+      <source>Profiles</source>
+      <translation>Kesitler</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="4117" />
       <location filename="../UI/UserInterface.py" line="4096" />
-      <source>Profiles</source>
-      <translation>Kesitler</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4118" />
-      <location filename="../UI/UserInterface.py" line="4097" />
       <source>Plugins</source>
       <translation>Eklentiler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4113" />
       <source>Unittest</source>
       <translation>Birimtest</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4286" />
+      <location filename="../UI/UserInterface.py" line="4285" />
       <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="4295" />
+      <location filename="../UI/UserInterface.py" line="4294" />
       <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="4304" />
+      <location filename="../UI/UserInterface.py" line="4303" />
       <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="4313" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4322" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4331" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4345" />
+      <location filename="../UI/UserInterface.py" line="4344" />
       <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="4416" />
-      <location filename="../UI/UserInterface.py" line="4375" />
+      <location filename="../UI/UserInterface.py" line="4415" />
+      <location filename="../UI/UserInterface.py" line="4374" />
       <source>External Tools/{0}</source>
       <translation>Harici Araçlar/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4524" />
+      <location filename="../UI/UserInterface.py" line="4523" />
       <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="4573" />
+      <location filename="../UI/UserInterface.py" line="4572" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4590" />
+      <location filename="../UI/UserInterface.py" line="4589" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4593" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4597" />
+      <location filename="../UI/UserInterface.py" line="4596" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4633" />
       <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="4948" />
+      <source>Restart application</source>
+      <translation>Uygulmayı yeniden başlat</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4949" />
-      <source>Restart application</source>
-      <translation>Uygulmayı yeniden başlat</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4950" />
       <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="4973" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4974" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4975" />
       <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="5024" />
+      <location filename="../UI/UserInterface.py" line="4998" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="4999" />
+      <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="5025" />
-      <location filename="../UI/UserInterface.py" line="4999" />
-      <source>Upgrade Eric</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5000" />
-      <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="5026" />
       <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="5084" />
+      <location filename="../UI/UserInterface.py" line="5083" />
       <source>&amp;Builtin Tools</source>
       <translation>Ya&amp;pılandırma Araçları</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5101" />
+      <location filename="../UI/UserInterface.py" line="5100" />
       <source>&amp;Plugin Tools</source>
       <translation>Eklen&amp;ti Araçları</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5103" />
       <source>&amp;User Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5130" />
+      <location filename="../UI/UserInterface.py" line="5129" />
       <source>Configure Tool Groups ...</source>
       <translation>Alet Grupları Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5134" />
+      <location filename="../UI/UserInterface.py" line="5133" />
       <source>Configure current Tool Group ...</source>
       <translation>Geçerli alet grubunu ayarla...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5173" />
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5172" />
+      <location filename="../UI/UserInterface.py" line="5152" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5247" />
+      <location filename="../UI/UserInterface.py" line="5246" />
       <source>&amp;Show all</source>
       <translation>Hepsini Gö&amp;ster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5249" />
+      <location filename="../UI/UserInterface.py" line="5248" />
       <source>&amp;Hide all</source>
       <translation>&amp;Hepsini gizle</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6282" />
+      <location filename="../UI/UserInterface.py" line="6271" />
+      <location filename="../UI/UserInterface.py" line="6223" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6049" />
+      <location filename="../UI/UserInterface.py" line="6039" />
+      <location filename="../UI/UserInterface.py" line="5982" />
+      <location filename="../UI/UserInterface.py" line="5972" />
+      <source>Problem</source>
+      <translation>Problem</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6283" />
       <location filename="../UI/UserInterface.py" line="6272" />
       <location filename="../UI/UserInterface.py" line="6224" />
@@ -85259,310 +85292,298 @@
       <location filename="../UI/UserInterface.py" line="6040" />
       <location filename="../UI/UserInterface.py" line="5983" />
       <location filename="../UI/UserInterface.py" line="5973" />
-      <source>Problem</source>
-      <translation>Problem</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6273" />
-      <location filename="../UI/UserInterface.py" line="6225" />
-      <location filename="../UI/UserInterface.py" line="6215" />
-      <location filename="../UI/UserInterface.py" line="6051" />
-      <location filename="../UI/UserInterface.py" line="6041" />
-      <location filename="../UI/UserInterface.py" line="5984" />
-      <location filename="../UI/UserInterface.py" line="5974" />
       <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="6495" />
+      <location filename="../UI/UserInterface.py" line="6408" />
+      <location filename="../UI/UserInterface.py" line="6318" />
+      <location filename="../UI/UserInterface.py" line="6295" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6163" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
+      <location filename="../UI/UserInterface.py" line="6080" />
+      <location filename="../UI/UserInterface.py" line="6071" />
+      <location filename="../UI/UserInterface.py" line="6013" />
+      <location filename="../UI/UserInterface.py" line="6004" />
+      <source>Process Generation Error</source>
+      <translation>İşlem Üretecinde Hata</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6005" />
+      <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="6014" />
+      <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="6072" />
+      <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="6081" />
+      <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="6115" />
+      <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="6124" />
+      <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="6148" />
+      <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="6164" />
+      <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="6185" />
+      <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="6237" />
+      <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="6296" />
+      <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="6319" />
+      <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="6409" />
+      <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="6442" />
+      <location filename="../UI/UserInterface.py" line="6432" />
+      <source>External Tools</source>
+      <translation>Harici Araçlar</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <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="6443" />
+      <source>No toolgroup entry '{0}' found.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6478" />
+      <source>Starting process '{0} {1}'.
+</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6496" />
-      <location filename="../UI/UserInterface.py" line="6409" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6296" />
-      <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6164" />
-      <location filename="../UI/UserInterface.py" line="6124" />
-      <location filename="../UI/UserInterface.py" line="6115" />
-      <location filename="../UI/UserInterface.py" line="6081" />
-      <location filename="../UI/UserInterface.py" line="6072" />
-      <location filename="../UI/UserInterface.py" line="6014" />
-      <location filename="../UI/UserInterface.py" line="6005" />
-      <source>Process Generation Error</source>
-      <translation>İşlem Üretecinde Hata</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6006" />
-      <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="6015" />
-      <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="6073" />
-      <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="6082" />
-      <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="6116" />
-      <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="6125" />
-      <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="6149" />
-      <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="6165" />
-      <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="6186" />
-      <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="6238" />
-      <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="6297" />
-      <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="6320" />
-      <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="6410" />
-      <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="6443" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <source>External Tools</source>
-      <translation>Harici Araçlar</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6434" />
-      <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="6444" />
-      <source>No toolgroup entry '{0}' found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6479" />
-      <source>Starting process '{0} {1}'.
-</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6497" />
       <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="6573" />
+      <location filename="../UI/UserInterface.py" line="6572" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6857" />
+      <location filename="../UI/UserInterface.py" line="6795" />
+      <location filename="../UI/UserInterface.py" line="6751" />
+      <location filename="../UI/UserInterface.py" line="6679" />
+      <location filename="../UI/UserInterface.py" line="6615" />
+      <source>Documentation Missing</source>
+      <translation>Eksik Belgeleme</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6858" />
       <location filename="../UI/UserInterface.py" line="6796" />
       <location filename="../UI/UserInterface.py" line="6752" />
       <location filename="../UI/UserInterface.py" line="6680" />
       <location filename="../UI/UserInterface.py" line="6616" />
-      <source>Documentation Missing</source>
-      <translation>Eksik Belgeleme</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6859" />
-      <location filename="../UI/UserInterface.py" line="6797" />
-      <location filename="../UI/UserInterface.py" line="6753" />
-      <location filename="../UI/UserInterface.py" line="6681" />
-      <location filename="../UI/UserInterface.py" line="6617" />
       <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="6839" />
+      <location filename="../UI/UserInterface.py" line="6723" />
+      <source>Documentation</source>
+      <translation>Belgeleme</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6724" />
+      <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="6840" />
-      <location filename="../UI/UserInterface.py" line="6724" />
-      <source>Documentation</source>
-      <translation>Belgeleme</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6725" />
-      <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="6841" />
       <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="7020" />
+      <location filename="../UI/UserInterface.py" line="6955" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6956" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7021" />
-      <location filename="../UI/UserInterface.py" line="6956" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6957" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7022" />
       <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="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7318" />
+      <location filename="../UI/UserInterface.py" line="7317" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7336" />
+      <location filename="../UI/UserInterface.py" line="7335" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7538" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7539" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7540" />
       <source>&lt;p&gt;The tasks 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="7583" />
+      <location filename="../UI/UserInterface.py" line="7582" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7611" />
-      <location filename="../UI/UserInterface.py" line="7584" />
-      <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="7610" />
+      <location filename="../UI/UserInterface.py" line="7583" />
+      <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="7609" />
       <source>Read session</source>
       <translation>Oturumu oku</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7627" />
+      <location filename="../UI/UserInterface.py" line="7626" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7629" />
+      <location filename="../UI/UserInterface.py" line="7628" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7652" />
+      <location filename="../UI/UserInterface.py" line="7651" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7697" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7698" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7699" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8058" />
+      <source>Drop Error</source>
+      <translation>Düşme hatası</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8059" />
-      <source>Drop Error</source>
-      <translation>Düşme hatası</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8060" />
       <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="8233" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8234" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8235" />
       <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;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8285" />
+      <location filename="../UI/UserInterface.py" line="8272" />
+      <source>First time usage</source>
+      <translation>İlk kullanım</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8273" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8286" />
-      <location filename="../UI/UserInterface.py" line="8273" />
-      <source>First time usage</source>
-      <translation>İlk kullanım</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8274" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8287" />
       <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="8310" />
+      <location filename="../UI/UserInterface.py" line="8309" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8490" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8491" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8492" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -85647,7 +85668,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1616" />
+      <location filename="../Utilities/__init__.py" line="1615" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;%-alanlarda çeşitli kodları kullanabilirsiniz. Tanımlanan kodlar:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin imlecinin sütunu&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin dizini&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin dosya adı&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;geçerli kullancının ana dizini&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin imlecinin satırı&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;geçerli projenin yolu&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;Geçici kullanıcının kullanıcı adı&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;oran işareti&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_zh_CN.ts	Thu Nov 24 19:42:13 2022 +0100
+++ b/src/eric7/i18n/eric7_zh_CN.ts	Fri Nov 25 11:51:51 2022 +0100
@@ -5559,7 +5559,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="206" />
+      <location filename="../Utilities/__init__.py" line="205" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>跟据所给文本,编码 “{0}” 是错误的。</translation>
     </message>
@@ -8901,88 +8901,89 @@
       <translation>状态</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="221" />
+      <location filename="../Debugger/DebugViewer.py" line="149" />
+      <source>Source</source>
+      <translation>源文件</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Don't Show</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="222" />
-      <location filename="../Debugger/DebugViewer.py" line="151" />
+      <location filename="../Debugger/DebugViewer.py" line="237" />
+      <location filename="../Debugger/DebugViewer.py" line="165" />
       <source>Show Only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="233" />
-      <location filename="../Debugger/DebugViewer.py" line="162" />
+      <location filename="../Debugger/DebugViewer.py" line="248" />
+      <location filename="../Debugger/DebugViewer.py" line="176" />
       <source>Enter regular expression patterns separated by ';' to define variable filters. </source>
       <translation>输入正则表达式模块(模块间用“;”分隔)以定义变量过滤器。</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="239" />
-      <location filename="../Debugger/DebugViewer.py" line="168" />
-      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
-      <translation>输入正则表达式模块(模块间用“;”分隔)以定义变量过滤器。所有与表达式中的一个模块匹配的变量和类属性不会显示在以上列表中。</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="246" />
-      <location filename="../Debugger/DebugViewer.py" line="176" />
-      <source>Set</source>
-      <translation>设置</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="184" />
-      <source>Shows the list of global variables and their values.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugViewer.py" line="206" />
-      <source>Source</source>
-      <translation>源文件</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugViewer.py" line="254" />
+      <location filename="../Debugger/DebugViewer.py" line="182" />
+      <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source>
+      <translation>输入正则表达式模块(模块间用“;”分隔)以定义变量过滤器。所有与表达式中的一个模块匹配的变量和类属性不会显示在以上列表中。</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="261" />
+      <location filename="../Debugger/DebugViewer.py" line="190" />
+      <source>Set</source>
+      <translation>设置</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="198" />
+      <source>Shows the list of global variables and their values.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugViewer.py" line="269" />
       <source>Shows the list of local variables and their values.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="271" />
+      <location filename="../Debugger/DebugViewer.py" line="295" />
       <source>Shows the current call stack.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="281" />
+      <location filename="../Debugger/DebugViewer.py" line="305" />
       <source>Shows a trace of the program flow.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="292" />
+      <location filename="../Debugger/DebugViewer.py" line="316" />
       <source>Shows a list of defined breakpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="303" />
+      <location filename="../Debugger/DebugViewer.py" line="327" />
       <source>Shows a list of defined watchpoints.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="312" />
+      <location filename="../Debugger/DebugViewer.py" line="336" />
       <source>Shows a list of raised exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="323" />
+      <location filename="../Debugger/DebugViewer.py" line="347" />
       <source>Shows a code disassembly in case of an exception.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="749" />
+      <location filename="../Debugger/DebugViewer.py" line="790" />
       <source>&lt;p&gt;Debugger with ID &lt;b&gt;{0}&lt;/b&gt; has been connected.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugViewer.py" line="992" />
-      <location filename="../Debugger/DebugViewer.py" line="864" />
+      <location filename="../Debugger/DebugViewer.py" line="1033" />
+      <location filename="../Debugger/DebugViewer.py" line="905" />
       <source>unknown state ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -9465,26 +9466,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
       <source>Add allowed host</source>
       <translation>添加允许的主机</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="343" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="307" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Enter the IP address of an allowed host</source>
       <translation>输入允许主机的 IP 地址</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="357" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="320" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
       <source>Edit allowed host</source>
       <translation>编辑允许的主机</translation>
     </message>
@@ -20850,7 +20851,7 @@
       <translation>添加/改变</translation>
     </message>
     <message>
-      <location filename="../Project/FiletypeAssociationDialog.py" line="56" />
+      <location filename="../Project/FiletypeAssociationDialog.py" line="58" />
       <location filename="../Project/FiletypeAssociationDialog.py" line="45" />
       <source>Ignore</source>
       <translation>忽略</translation>
@@ -46682,7 +46683,7 @@
       <translation>Pygments</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="462" />
+      <location filename="../Preferences/__init__.py" line="461" />
       <location filename="../QScintilla/Lexers/__init__.py" line="386" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished">Python 文件 (*.py *.py3)</translation>
@@ -46935,7 +46936,7 @@
       <translation>所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="465" />
+      <location filename="../Preferences/__init__.py" line="464" />
       <location filename="../QScintilla/Lexers/__init__.py" line="479" />
       <source>Python3 Files (*.py)</source>
       <translation type="unfinished" />
@@ -55489,18 +55490,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1608" />
+      <location filename="../Preferences/__init__.py" line="1653" />
       <source>Export Preferences</source>
       <translation>导出首选项</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1637" />
-      <location filename="../Preferences/__init__.py" line="1610" />
+      <location filename="../Preferences/__init__.py" line="1682" />
+      <location filename="../Preferences/__init__.py" line="1655" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>属性文件 (*.ini);;所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1635" />
+      <location filename="../Preferences/__init__.py" line="1680" />
       <source>Import Preferences</source>
       <translation>导入首选项</translation>
     </message>
@@ -55521,7 +55522,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="472" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -56366,7 +56367,7 @@
       <translation>重命名文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3311" />
+      <location filename="../Project/Project.py" line="3313" />
       <location filename="../Project/Project.py" line="2130" />
       <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>
@@ -56397,1305 +56398,1325 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2517" />
+      <location filename="../Project/Project.py" line="2518" />
       <source>Create project directory</source>
       <translation>创建项目文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2518" />
+      <location filename="../Project/Project.py" line="2519" />
       <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="3115" />
-      <location filename="../Project/Project.py" line="2579" />
-      <source>Create project management directory</source>
-      <translation>创建项目管理目录</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3116" />
       <location filename="../Project/Project.py" line="2580" />
+      <source>Create project management directory</source>
+      <translation>创建项目管理目录</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3117" />
+      <location filename="../Project/Project.py" line="2581" />
       <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="2600" />
-      <source>Create main script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2601" />
+      <source>Create main script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2602" />
       <source>&lt;p&gt;The mainscript &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="2922" />
-      <location filename="../Project/Project.py" line="2625" />
-      <source>Create Makefile</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2923" />
       <location filename="../Project/Project.py" line="2626" />
+      <source>Create Makefile</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2924" />
+      <location filename="../Project/Project.py" line="2627" />
       <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="3144" />
-      <location filename="../Project/Project.py" line="2764" />
-      <location filename="../Project/Project.py" line="2735" />
-      <location filename="../Project/Project.py" line="2691" />
-      <location filename="../Project/Project.py" line="2666" />
-      <location filename="../Project/Project.py" line="2636" />
-      <source>New Project</source>
-      <translation>新建项目</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2637" />
-      <source>Add existing files to the project?</source>
-      <translation>是否将已有文件添加到项目中?</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3145" />
+      <location filename="../Project/Project.py" line="2765" />
+      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2692" />
       <location filename="../Project/Project.py" line="2667" />
+      <location filename="../Project/Project.py" line="2637" />
+      <source>New Project</source>
+      <translation>新建项目</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2638" />
+      <source>Add existing files to the project?</source>
+      <translation>是否将已有文件添加到项目中?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3146" />
+      <location filename="../Project/Project.py" line="2668" />
       <source>Select Version Control System</source>
       <translation>选择版本控制系统</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2765" />
-      <location filename="../Project/Project.py" line="2692" />
+      <location filename="../Project/Project.py" line="2766" />
+      <location filename="../Project/Project.py" line="2693" />
       <source>Would you like to edit the VCS command options?</source>
       <translation>是否编辑版本控制系统命令选项?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4082" />
-      <location filename="../Project/Project.py" line="2707" />
+      <location filename="../Project/Project.py" line="4085" />
+      <location filename="../Project/Project.py" line="2708" />
       <source>New project</source>
       <translation>新建项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2708" />
+      <location filename="../Project/Project.py" line="2709" />
       <source>Shall the project file be added to the repository?</source>
       <translation>是否将项目文件添加到仓库?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2741" />
-      <location filename="../Project/Project.py" line="2729" />
+      <location filename="../Project/Project.py" line="2742" />
+      <location filename="../Project/Project.py" line="2730" />
       <source>None</source>
       <translation>无</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2736" />
+      <location filename="../Project/Project.py" line="2737" />
       <source>Select version control system for the project</source>
       <translation>为项目选择版本控制系统</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2848" />
-      <source>Translation Pattern</source>
-      <translation>翻译样式</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2849" />
+      <source>Translation Pattern</source>
+      <translation>翻译样式</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2850" />
       <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="4102" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="4105" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Open project</source>
       <translation>打开项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3096" />
+      <location filename="../Project/Project.py" line="3097" />
       <source>Project Files (*.epj);;XML Project Files (*.e4p)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/Project.py" line="3298" />
+      <location filename="../Project/Project.py" line="3288" />
+      <source>Project Files (*.epj)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="3296" />
-      <location filename="../Project/Project.py" line="3286" />
-      <source>Project Files (*.epj)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3294" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3310" />
+      <location filename="../Project/Project.py" line="3312" />
       <source>Save File</source>
       <translation>保存文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3349" />
+      <location filename="../Project/Project.py" line="3351" />
       <source>Close Project</source>
       <translation>关闭项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3350" />
+      <location filename="../Project/Project.py" line="3352" />
       <source>The current project has unsaved changes.</source>
       <translation>当前项目的更改未保存。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3538" />
-      <location filename="../Project/Project.py" line="3504" />
+      <location filename="../Project/Project.py" line="3541" />
+      <location filename="../Project/Project.py" line="3507" />
       <source>Syntax errors detected</source>
       <translation>检测到语法错误</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="3539" />
-      <location filename="../Project/Project.py" line="3505" />
+      <location filename="../Project/Project.py" line="3542" />
+      <location filename="../Project/Project.py" line="3508" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>项目包含 %n 文件有语法错误。</numerusform>
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4084" />
+      <location filename="../Project/Project.py" line="4087" />
       <source>&amp;New...</source>
       <translation>新建(&amp;N)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4090" />
+      <location filename="../Project/Project.py" line="4093" />
       <source>Generate a new project</source>
       <translation>生成新项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4092" />
+      <location filename="../Project/Project.py" line="4095" />
       <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="4104" />
+      <location filename="../Project/Project.py" line="4107" />
       <source>&amp;Open...</source>
       <translation>打开(&amp;O)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4110" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>Open an existing project</source>
       <translation>打开一个已有项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4115" />
       <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="4118" />
+      <location filename="../Project/Project.py" line="4121" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4123" />
+      <source>&amp;Reload</source>
+      <translation type="unfinished">重新载入(&amp;R)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4129" />
+      <source>Reload the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4131" />
+      <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="4137" />
       <source>Close project</source>
       <translation>关闭项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4120" />
+      <location filename="../Project/Project.py" line="4139" />
       <source>&amp;Close</source>
       <translation>关闭(&amp;C)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4126" />
+      <location filename="../Project/Project.py" line="4145" />
       <source>Close the current project</source>
       <translation>关闭当前项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4128" />
+      <location filename="../Project/Project.py" line="4147" />
       <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="4134" />
+      <location filename="../Project/Project.py" line="4153" />
       <source>Save project</source>
       <translation>保存项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4410" />
-      <location filename="../Project/Project.py" line="4136" />
+      <location filename="../Project/Project.py" line="4429" />
+      <location filename="../Project/Project.py" line="4155" />
       <source>&amp;Save</source>
       <translation>保存(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4142" />
+      <location filename="../Project/Project.py" line="4161" />
       <source>Save the current project</source>
       <translation>保存当前项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4144" />
+      <location filename="../Project/Project.py" line="4163" />
       <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="4150" />
+      <location filename="../Project/Project.py" line="4169" />
       <source>Save project as</source>
       <translation>项目另存为</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4152" />
+      <location filename="../Project/Project.py" line="4171" />
       <source>Save &amp;as...</source>
       <translation>另存为(&amp;A)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4158" />
-      <source>Save the current project to a new file</source>
-      <translation>将当前项目另存为一个新文件</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4160" />
-      <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="4175" />
-      <source>Add files to project</source>
-      <translation>将文件添加到项目中</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4177" />
-      <source>Add &amp;files...</source>
-      <translation>添加文件(&amp;F)…</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4183" />
-      <source>Add files to the current project</source>
-      <translation>将文件添加到当前项目中</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4185" />
-      <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>
+      <source>Save the current project to a new file</source>
+      <translation>将当前项目另存为一个新文件</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4179" />
+      <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="4194" />
+      <source>Add files to project</source>
+      <translation>将文件添加到项目中</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4196" />
+      <source>Add &amp;files...</source>
+      <translation>添加文件(&amp;F)…</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4202" />
+      <source>Add files to the current project</source>
+      <translation>将文件添加到当前项目中</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4204" />
+      <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="4215" />
       <source>Add directory to project</source>
       <translation>将文件夹添加到项目中</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4198" />
+      <location filename="../Project/Project.py" line="4217" />
       <source>Add directory...</source>
       <translation>添加文件夹…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4205" />
+      <location filename="../Project/Project.py" line="4224" />
       <source>Add a directory to the current project</source>
       <translation>为当前工程添加文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4208" />
-      <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="4218" />
-      <source>Add translation to project</source>
-      <translation>将翻译添加到项目中</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4220" />
-      <source>Add &amp;translation...</source>
-      <translation>添加翻译(&amp;T)…</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4227" />
+      <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="4237" />
+      <source>Add translation to project</source>
+      <translation>将翻译添加到项目中</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4239" />
+      <source>Add &amp;translation...</source>
+      <translation>添加翻译(&amp;T)…</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4246" />
       <source>Add a translation to the current project</source>
       <translation>将翻译添加到当前项目中</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4230" />
-      <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="4240" />
-      <source>Search new files</source>
-      <translation>搜索新文件</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4241" />
-      <source>Searc&amp;h new files...</source>
-      <translation>搜索新文件(&amp;H)…</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4247" />
-      <source>Search new files in the project directory.</source>
-      <translation>在项目文件夹中搜索新文件。</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4249" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
+      <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="4259" />
+      <source>Search new files</source>
+      <translation>搜索新文件</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4260" />
+      <source>Searc&amp;h new files...</source>
+      <translation>搜索新文件(&amp;H)…</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4266" />
+      <source>Search new files in the project directory.</source>
+      <translation>在项目文件夹中搜索新文件。</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4268" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4279" />
       <source>Search Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4261" />
-      <source>Search Project File...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4262" />
-      <source>Alt+Ctrl+P</source>
-      <comment>Project|Search Project File</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4267" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4269" />
-      <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="4278" />
-      <source>Project properties</source>
-      <translation>项目属性</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4280" />
-      <source>&amp;Properties...</source>
-      <translation>属性(&amp;P)…</translation>
+      <source>Search Project File...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4281" />
+      <source>Alt+Ctrl+P</source>
+      <comment>Project|Search Project File</comment>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4286" />
-      <source>Show the project properties</source>
-      <translation>显示项目属性</translation>
+      <source>Search for a file in the project list of files.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4288" />
-      <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>
+      <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="4297" />
-      <source>User project properties</source>
-      <translation>用户项目属性</translation>
+      <source>Project properties</source>
+      <translation>项目属性</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4299" />
+      <source>&amp;Properties...</source>
+      <translation>属性(&amp;P)…</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4305" />
+      <source>Show the project properties</source>
+      <translation>显示项目属性</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4307" />
+      <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="4316" />
+      <source>User project properties</source>
+      <translation>用户项目属性</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4318" />
       <source>&amp;User Properties...</source>
       <translation>用户属性(&amp;U)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4306" />
+      <location filename="../Project/Project.py" line="4325" />
       <source>Show the user specific project properties</source>
       <translation>显示用户指定的项目属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4309" />
+      <location filename="../Project/Project.py" line="4328" />
       <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="4319" />
+      <location filename="../Project/Project.py" line="4338" />
       <source>Filetype Associations</source>
       <translation>文件类型关联</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4320" />
+      <location filename="../Project/Project.py" line="4339" />
       <source>Filetype Associations...</source>
       <translation>文件类型关联…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4327" />
+      <location filename="../Project/Project.py" line="4346" />
       <source>Show the project file type associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4330" />
+      <location filename="../Project/Project.py" line="4349" />
       <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="4343" />
+      <location filename="../Project/Project.py" line="4362" />
       <source>Lexer Associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4344" />
+      <location filename="../Project/Project.py" line="4363" />
       <source>Lexer Associations...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4351" />
+      <location filename="../Project/Project.py" line="4370" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4354" />
-      <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="4372" />
-      <source>Debugger Properties</source>
-      <translation>调试器属性</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4373" />
-      <source>Debugger &amp;Properties...</source>
-      <translation>调试器属性(&amp;P)…</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4379" />
-      <source>Show the debugger properties</source>
-      <translation>显示调试器属性</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4381" />
-      <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>
+      <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="4391" />
-      <source>Load</source>
-      <translation>载入</translation>
+      <source>Debugger Properties</source>
+      <translation>调试器属性</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4392" />
-      <source>&amp;Load</source>
-      <translation>载入(&amp;L)</translation>
+      <source>Debugger &amp;Properties...</source>
+      <translation>调试器属性(&amp;P)…</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4398" />
-      <source>Load the debugger properties</source>
-      <translation>载入调试器属性</translation>
+      <source>Show the debugger properties</source>
+      <translation>显示调试器属性</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4400" />
+      <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="4410" />
+      <source>Load</source>
+      <translation>载入</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4411" />
+      <source>&amp;Load</source>
+      <translation>载入(&amp;L)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4417" />
+      <source>Load the debugger properties</source>
+      <translation>载入调试器属性</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4419" />
       <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="4409" />
-      <source>Save</source>
-      <translation>保存</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4416" />
-      <source>Save the debugger properties</source>
-      <translation>保存调试器属性</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4418" />
-      <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="4427" />
-      <source>Delete</source>
-      <translation>删除</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4428" />
-      <source>&amp;Delete</source>
-      <translation>删除(&amp;D)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4434" />
-      <source>Delete the debugger properties</source>
-      <translation>删除调试器属性</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4436" />
-      <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>
+      <source>Save</source>
+      <translation>保存</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4435" />
+      <source>Save the debugger properties</source>
+      <translation>保存调试器属性</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4437" />
+      <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="4446" />
-      <source>Reset</source>
-      <translation>重置</translation>
+      <source>Delete</source>
+      <translation>删除</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4447" />
-      <source>&amp;Reset</source>
-      <translation>重置(&amp;R)</translation>
+      <source>&amp;Delete</source>
+      <translation>删除(&amp;D)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4453" />
-      <source>Reset the debugger properties</source>
-      <translation>重围调试器属性</translation>
+      <source>Delete the debugger properties</source>
+      <translation>删除调试器属性</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4455" />
+      <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="4465" />
+      <source>Reset</source>
+      <translation>重置</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4466" />
+      <source>&amp;Reset</source>
+      <translation>重置(&amp;R)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4472" />
+      <source>Reset the debugger properties</source>
+      <translation>重围调试器属性</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4474" />
       <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="4471" />
-      <location filename="../Project/Project.py" line="4470" />
+      <location filename="../Project/Project.py" line="4490" />
+      <location filename="../Project/Project.py" line="4489" />
       <source>Load session</source>
       <translation>载入会话</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4477" />
+      <location filename="../Project/Project.py" line="4496" />
       <source>Load the projects session file.</source>
       <translation>载入项目会话文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4479" />
+      <location filename="../Project/Project.py" line="4498" />
       <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="4495" />
-      <location filename="../Project/Project.py" line="4494" />
+      <location filename="../Project/Project.py" line="4514" />
+      <location filename="../Project/Project.py" line="4513" />
       <source>Save session</source>
       <translation>保存会话</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4501" />
+      <location filename="../Project/Project.py" line="4520" />
       <source>Save the projects session file.</source>
       <translation>保存项目会话文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4503" />
+      <location filename="../Project/Project.py" line="4522" />
       <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="4519" />
-      <location filename="../Project/Project.py" line="4518" />
+      <location filename="../Project/Project.py" line="4538" />
+      <location filename="../Project/Project.py" line="4537" />
       <source>Delete session</source>
       <translation>删除会话</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4525" />
+      <location filename="../Project/Project.py" line="4544" />
       <source>Delete the projects session file.</source>
       <translation>删除项目会话文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4527" />
+      <location filename="../Project/Project.py" line="4546" />
       <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="4542" />
+      <location filename="../Project/Project.py" line="4561" />
       <source>Code Metrics</source>
       <translation>代码度量</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4543" />
+      <location filename="../Project/Project.py" line="4562" />
       <source>&amp;Code Metrics...</source>
       <translation>代码度量(&amp;C)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4550" />
+      <location filename="../Project/Project.py" line="4569" />
       <source>Show some code metrics for the project.</source>
       <translation>显示项目的部分代码度量。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4553" />
+      <location filename="../Project/Project.py" line="4572" />
       <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="4563" />
+      <location filename="../Project/Project.py" line="4582" />
       <source>Python Code Coverage</source>
       <translation>Python 代码覆盖率</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4564" />
+      <location filename="../Project/Project.py" line="4583" />
       <source>Code Co&amp;verage...</source>
       <translation>代码覆盖率(&amp;v)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4571" />
+      <location filename="../Project/Project.py" line="4590" />
       <source>Show code coverage information for the project.</source>
       <translation>显示项目的代码覆盖率信息。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4574" />
+      <location filename="../Project/Project.py" line="4593" />
       <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="5894" />
-      <location filename="../Project/Project.py" line="5881" />
-      <location filename="../Project/Project.py" line="4584" />
+      <location filename="../Project/Project.py" line="5914" />
+      <location filename="../Project/Project.py" line="5901" />
+      <location filename="../Project/Project.py" line="4603" />
       <source>Profile Data</source>
       <translation>剖析数据</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4585" />
+      <location filename="../Project/Project.py" line="4604" />
       <source>&amp;Profile Data...</source>
       <translation>剖析数据(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4592" />
-      <source>Show profiling data for the project.</source>
-      <translation>显示项目的剖析数据。</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4595" />
-      <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="5946" />
-      <location filename="../Project/Project.py" line="4610" />
-      <source>Application Diagram</source>
-      <translation>应用程序图</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4611" />
-      <source>&amp;Application Diagram...</source>
-      <translation>应用程序(&amp;A)图…</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4618" />
-      <source>Show a diagram of the project.</source>
-      <translation>显示项目图表。</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4621" />
-      <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>
+      <source>Show profiling data for the project.</source>
+      <translation>显示项目的剖析数据。</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4614" />
+      <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="5966" />
+      <location filename="../Project/Project.py" line="4629" />
+      <source>Application Diagram</source>
+      <translation>应用程序图</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4630" />
-      <source>Load Diagram</source>
-      <translation type="unfinished">加载图表</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4631" />
-      <source>&amp;Load Diagram...</source>
-      <translation type="unfinished" />
+      <source>&amp;Application Diagram...</source>
+      <translation>应用程序(&amp;A)图…</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4637" />
-      <source>Load a diagram from file.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4639" />
-      <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="6131" />
-      <location filename="../Project/Project.py" line="6080" />
-      <location filename="../Project/Project.py" line="4654" />
-      <source>Create Package List</source>
-      <translation>创建程序包列表</translation>
+      <source>Show a diagram of the project.</source>
+      <translation>显示项目图表。</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4640" />
+      <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="4649" />
+      <source>Load Diagram</source>
+      <translation type="unfinished">加载图表</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4650" />
+      <source>&amp;Load Diagram...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4656" />
+      <source>Load a diagram from file.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4658" />
+      <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="6151" />
+      <location filename="../Project/Project.py" line="6100" />
+      <location filename="../Project/Project.py" line="4673" />
+      <source>Create Package List</source>
+      <translation>创建程序包列表</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4675" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished">创建插件存档(&amp;A)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4663" />
+      <location filename="../Project/Project.py" line="4682" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4666" />
-      <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="6200" />
-      <location filename="../Project/Project.py" line="4677" />
-      <source>Create Plugin Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4679" />
-      <source>Create Plugin &amp;Archives</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4685" />
+      <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="6220" />
+      <location filename="../Project/Project.py" line="4696" />
+      <source>Create Plugin Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4698" />
+      <source>Create Plugin &amp;Archives</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4704" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4687" />
+      <location filename="../Project/Project.py" line="4706" />
       <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="4699" />
+      <location filename="../Project/Project.py" line="4718" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4701" />
+      <location filename="../Project/Project.py" line="4720" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4708" />
+      <location filename="../Project/Project.py" line="4727" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4711" />
+      <location filename="../Project/Project.py" line="4730" />
       <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="6621" />
-      <location filename="../Project/Project.py" line="6592" />
-      <location filename="../Project/Project.py" line="6543" />
-      <location filename="../Project/Project.py" line="4730" />
+      <location filename="../Project/Project.py" line="6641" />
+      <location filename="../Project/Project.py" line="6612" />
+      <location filename="../Project/Project.py" line="6563" />
+      <location filename="../Project/Project.py" line="4749" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4731" />
-      <source>&amp;Execute Make</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4737" />
-      <source>Perform a 'make' run.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4739" />
-      <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="6598" />
-      <location filename="../Project/Project.py" line="4749" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4750" />
+      <source>&amp;Execute Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4756" />
+      <source>Perform a 'make' run.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4758" />
+      <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="6618" />
+      <location filename="../Project/Project.py" line="4768" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4769" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4757" />
+      <location filename="../Project/Project.py" line="4776" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4760" />
-      <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="4778" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4779" />
+      <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="4797" />
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4798" />
       <source>Create &amp;SBOM File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4786" />
+      <location filename="../Project/Project.py" line="4805" />
       <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4789" />
+      <location filename="../Project/Project.py" line="4808" />
       <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="4806" />
+      <location filename="../Project/Project.py" line="4825" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4807" />
+      <location filename="../Project/Project.py" line="4826" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4813" />
+      <location filename="../Project/Project.py" line="4832" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4815" />
+      <location filename="../Project/Project.py" line="4834" />
       <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="4827" />
+      <location filename="../Project/Project.py" line="4846" />
       <source>Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4847" />
       <source>&amp;Format Code</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4835" />
+      <location filename="../Project/Project.py" line="4854" />
       <source>Format the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4838" />
+      <location filename="../Project/Project.py" line="4857" />
       <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="4850" />
+      <location filename="../Project/Project.py" line="4869" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4851" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4858" />
-      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4863" />
-      <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="4876" />
-      <source>Code Formatting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4877" />
+      <source>Check, if the project sources need to be reformatted with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4882" />
+      <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="4895" />
+      <source>Code Formatting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4896" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4884" />
+      <location filename="../Project/Project.py" line="4903" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4890" />
+      <location filename="../Project/Project.py" line="4909" />
       <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="5055" />
-      <location filename="../Project/Project.py" line="5005" />
-      <location filename="../Project/Project.py" line="5004" />
-      <location filename="../Project/Project.py" line="4904" />
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="5074" />
+      <location filename="../Project/Project.py" line="5024" />
+      <location filename="../Project/Project.py" line="5023" />
+      <location filename="../Project/Project.py" line="4923" />
+      <location filename="../Project/Project.py" line="4922" />
       <source>Configure</source>
       <translation type="unfinished">配置</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4930" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4916" />
+      <location filename="../Project/Project.py" line="4935" />
       <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="4932" />
+      <location filename="../Project/Project.py" line="4951" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4933" />
+      <location filename="../Project/Project.py" line="4952" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4939" />
+      <location filename="../Project/Project.py" line="4958" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4941" />
+      <location filename="../Project/Project.py" line="4960" />
       <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="4954" />
-      <location filename="../Project/Project.py" line="4953" />
+      <location filename="../Project/Project.py" line="4973" />
+      <location filename="../Project/Project.py" line="4972" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4961" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4983" />
       <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="4978" />
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4997" />
+      <location filename="../Project/Project.py" line="4996" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4985" />
+      <location filename="../Project/Project.py" line="5004" />
       <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="4991" />
+      <location filename="../Project/Project.py" line="5010" />
       <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="5012" />
+      <location filename="../Project/Project.py" line="5031" />
       <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="5018" />
+      <location filename="../Project/Project.py" line="5037" />
       <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="5034" />
+      <location filename="../Project/Project.py" line="5053" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5035" />
+      <location filename="../Project/Project.py" line="5054" />
       <source>&amp;Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5042" />
+      <location filename="../Project/Project.py" line="5061" />
       <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5045" />
+      <location filename="../Project/Project.py" line="5064" />
       <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="5056" />
+      <location filename="../Project/Project.py" line="5075" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5063" />
+      <location filename="../Project/Project.py" line="5082" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
-      <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="5076" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5077" />
-      <source>&amp;Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5083" />
-      <source>Upgrade the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5085" />
-      <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="5097" />
-      <source>Recreate</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5098" />
-      <source>&amp;Recreate</source>
+      <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="5095" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5096" />
+      <source>&amp;Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5102" />
+      <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5104" />
+      <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="5116" />
+      <source>Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5117" />
+      <source>&amp;Recreate</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5123" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5106" />
+      <location filename="../Project/Project.py" line="5125" />
       <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="5135" />
-      <source>&amp;Project</source>
-      <translation>项目(&amp;P)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5136" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>打开最近的项目</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5137" />
-      <source>Session</source>
-      <translation>会话</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5138" />
-      <source>Debugger</source>
-      <translation>调试器</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5139" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5141" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5142" />
-      <source>&amp;Version Control</source>
-      <translation>版本控制(&amp;V)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5146" />
-      <source>Chec&amp;k</source>
-      <translation>检查(&amp;K)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5148" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5150" />
-      <source>Sho&amp;w</source>
-      <translation>显示(&amp;W)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&amp;Diagrams</source>
-      <translation>图表(&amp;D)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Pac&amp;kagers</source>
-      <translation>打包程序(&amp;K)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5153" />
-      <source>Source &amp;Documentation</source>
-      <translation>源文档(&amp;D)</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5155" />
-      <source>Make</source>
-      <translation type="unfinished" />
+      <source>&amp;Project</source>
+      <translation>项目(&amp;P)</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5156" />
+      <source>Open &amp;Recent Projects</source>
+      <translation>打开最近的项目</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5157" />
+      <source>Session</source>
+      <translation>会话</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5158" />
+      <source>Debugger</source>
+      <translation>调试器</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5159" />
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5161" />
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5162" />
+      <source>&amp;Version Control</source>
+      <translation>版本控制(&amp;V)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5166" />
+      <source>Chec&amp;k</source>
+      <translation>检查(&amp;K)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5168" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5170" />
+      <source>Sho&amp;w</source>
+      <translation>显示(&amp;W)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5171" />
+      <source>&amp;Diagrams</source>
+      <translation>图表(&amp;D)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Pac&amp;kagers</source>
+      <translation>打包程序(&amp;K)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
+      <source>Source &amp;Documentation</source>
+      <translation>源文档(&amp;D)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5175" />
+      <source>Make</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5176" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5317" />
-      <location filename="../Project/Project.py" line="5314" />
+      <location filename="../Project/Project.py" line="5337" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>Project</source>
       <translation>项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5378" />
+      <location filename="../Project/Project.py" line="5398" />
       <source>&amp;Clear</source>
       <translation>清除(&amp;C)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5557" />
       <source>Search New Files</source>
       <translation>搜索新文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5538" />
+      <location filename="../Project/Project.py" line="5558" />
       <source>There were no new files found to be added.</source>
       <translation>没有要添加的新文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5687" />
-      <location filename="../Project/Project.py" line="5674" />
+      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5694" />
       <source>Version Control System</source>
       <translation>版本控制系统</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5695" />
       <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="5688" />
+      <location filename="../Project/Project.py" line="5708" />
       <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="5836" />
+      <location filename="../Project/Project.py" line="5856" />
       <source>Coverage Data</source>
       <translation>覆盖率数据</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5882" />
-      <location filename="../Project/Project.py" line="5837" />
+      <location filename="../Project/Project.py" line="5902" />
+      <location filename="../Project/Project.py" line="5857" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>当前项目未定义主脚本。终止</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5849" />
+      <location filename="../Project/Project.py" line="5869" />
       <source>Code Coverage</source>
       <translation>代码覆盖率</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5850" />
+      <location filename="../Project/Project.py" line="5870" />
       <source>Please select a coverage file</source>
       <translation>请选择一个覆盖率文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5915" />
       <source>Please select a profile file</source>
       <translation>请选择一个剖析文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5947" />
+      <location filename="../Project/Project.py" line="5967" />
       <source>Include module names?</source>
       <translation>包含模块名?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6081" />
+      <location filename="../Project/Project.py" line="6101" />
       <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="6132" />
+      <location filename="../Project/Project.py" line="6152" />
       <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="6421" />
-      <location filename="../Project/Project.py" line="6379" />
-      <location filename="../Project/Project.py" line="6333" />
-      <location filename="../Project/Project.py" line="6322" />
-      <location filename="../Project/Project.py" line="6304" />
-      <location filename="../Project/Project.py" line="6271" />
-      <location filename="../Project/Project.py" line="6241" />
-      <location filename="../Project/Project.py" line="6213" />
-      <location filename="../Project/Project.py" line="6183" />
-      <location filename="../Project/Project.py" line="6169" />
-      <location filename="../Project/Project.py" line="6152" />
+      <location filename="../Project/Project.py" line="6441" />
+      <location filename="../Project/Project.py" line="6399" />
+      <location filename="../Project/Project.py" line="6353" />
+      <location filename="../Project/Project.py" line="6342" />
+      <location filename="../Project/Project.py" line="6324" />
+      <location filename="../Project/Project.py" line="6291" />
+      <location filename="../Project/Project.py" line="6261" />
+      <location filename="../Project/Project.py" line="6233" />
+      <location filename="../Project/Project.py" line="6203" />
+      <location filename="../Project/Project.py" line="6189" />
+      <location filename="../Project/Project.py" line="6172" />
       <source>Create Plugin Archive</source>
       <translation>创建插件存档</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6153" />
+      <location filename="../Project/Project.py" line="6173" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>项目未定义主脚本。终止…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6170" />
+      <location filename="../Project/Project.py" line="6190" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6184" />
+      <location filename="../Project/Project.py" line="6204" />
       <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="6192" />
+      <location filename="../Project/Project.py" line="6212" />
       <source>Creating plugin archives...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6193" />
+      <location filename="../Project/Project.py" line="6213" />
       <source>Abort</source>
       <translation type="unfinished">终止</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6196" />
+      <location filename="../Project/Project.py" line="6216" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6214" />
+      <location filename="../Project/Project.py" line="6234" />
       <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="6242" />
+      <location filename="../Project/Project.py" line="6262" />
       <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="6272" />
+      <location filename="../Project/Project.py" line="6292" />
       <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="6305" />
+      <location filename="../Project/Project.py" line="6325" />
       <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="6323" />
+      <location filename="../Project/Project.py" line="6343" />
       <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="6334" />
+      <location filename="../Project/Project.py" line="6354" />
       <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="6380" />
+      <location filename="../Project/Project.py" line="6400" />
       <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="6422" />
+      <location filename="../Project/Project.py" line="6442" />
       <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="6544" />
+      <location filename="../Project/Project.py" line="6564" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6593" />
+      <location filename="../Project/Project.py" line="6613" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6601" />
+      <location filename="../Project/Project.py" line="6621" />
       <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="6606" />
+      <location filename="../Project/Project.py" line="6626" />
       <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="6622" />
+      <location filename="../Project/Project.py" line="6642" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -57947,22 +57968,22 @@
   <context>
     <name>ProjectFile</name>
     <message>
-      <location filename="../Project/ProjectFile.py" line="109" />
+      <location filename="../Project/ProjectFile.py" line="108" />
       <source>Save Project File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectFile.py" line="110" />
+      <location filename="../Project/ProjectFile.py" line="109" />
       <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Project/ProjectFile.py" line="134" />
+      <source>Read Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Project/ProjectFile.py" line="135" />
-      <source>Read Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/ProjectFile.py" line="136" />
       <source>&lt;p&gt;The project 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>
@@ -59838,265 +59859,265 @@
   <context>
     <name>ProjectTranslationsBrowser</name>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="99" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="76" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="74" />
       <source>Translations</source>
       <translation>翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="79" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="77" />
       <source>&lt;b&gt;Project Translations Browser&lt;/b&gt;&lt;p&gt;This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.&lt;/p&gt;</source>
       <translation>&lt;b&gt;项目翻译浏览器&lt;/b&gt;&lt;p&gt;可以方便地观察在当前项目中包含的所有翻译。通过上下文菜单可以运行多个动作。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="97" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="95" />
       <source>Translation Files ({0})</source>
       <translation type="unfinished">翻译文件 ({0})</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="98" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="96" />
       <source>Translation Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="109" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="107" />
       <source>Translations Browser</source>
       <translation type="unfinished">翻译浏览器</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="239" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="183" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="237" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="181" />
       <source>Generate translation</source>
       <translation>生成翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="249" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="188" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="247" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="186" />
       <source>Generate translation (with obsolete)</source>
       <translation>生成翻译(包括不使用的翻译)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="538" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="509" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="360" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="332" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="258" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="194" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="536" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="507" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="358" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="330" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="256" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="192" />
       <source>Generate all translations</source>
       <translation>生成所有翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="547" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="513" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="369" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="267" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="198" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="545" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="511" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="367" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="265" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="196" />
       <source>Generate all translations (with obsolete)</source>
       <translation>生成所有翻译(包括不使用的翻译)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="419" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="203" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="417" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="201" />
       <source>Open in Qt-Linguist</source>
       <translation>在 Qt 语言家中打开</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="473" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="423" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="279" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="206" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="471" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="421" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="277" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="204" />
       <source>Open in Editor</source>
       <translation>在编辑器中打开</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="286" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="211" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="284" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="209" />
       <source>Release translation</source>
       <translation>发布翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="555" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="518" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="377" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="341" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="295" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="216" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="553" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="516" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="375" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="339" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="293" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="214" />
       <source>Release all translations</source>
       <translation>发布所有翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="220" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="218" />
       <source>Preview translation</source>
       <translation>预览翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="523" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="346" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="223" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="521" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="344" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="221" />
       <source>Preview all translations</source>
       <translation>预览所有翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="529" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="441" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="352" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="230" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="527" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="439" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="350" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="228" />
       <source>Extract messages</source>
       <translation>提取消息</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="469" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="275" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="467" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="273" />
       <source>Open</source>
       <translation>打开</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="488" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="302" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="486" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="300" />
       <source>Remove from project</source>
       <translation>从项目移除</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="561" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="491" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="305" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="559" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="489" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="303" />
       <source>Delete</source>
       <translation>删除</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="565" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="384" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="309" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="563" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="382" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="307" />
       <source>Add translation...</source>
       <translation>添加翻译…</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="568" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="387" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="312" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="566" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="385" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="310" />
       <source>Add translation files...</source>
       <translation>添加翻译文件…</translation>
     </message>
     <message>
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="569" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="313" />
+      <source>Copy Path to Clipboard</source>
+      <translation>将路径复制到剪贴板</translation>
+    </message>
+    <message>
       <location filename="../Project/ProjectTranslationsBrowser.py" line="571" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="492" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="388" />
       <location filename="../Project/ProjectTranslationsBrowser.py" line="315" />
-      <source>Copy Path to Clipboard</source>
-      <translation>将路径复制到剪贴板</translation>
-    </message>
-    <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="573" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="494" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="390" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="317" />
       <source>Configure...</source>
       <translation>配置…</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="450" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="448" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="405" />
       <source>Generate translations</source>
       <translation>生成翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="460" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="412" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="458" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="410" />
       <source>Generate translations (with obsolete)</source>
       <translation>生成翻译(包括过时的)</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="480" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="478" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="426" />
       <source>Release translations</source>
       <translation>发布翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="434" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="432" />
       <source>Preview translations</source>
       <translation>预览翻译</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="835" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="833" />
       <source>Delete translation files</source>
       <translation>删除翻译文件</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="836" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="834" />
       <source>Do you really want to delete these translation files from the project?</source>
       <translation>确定要从项目中删除这些翻译?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1504" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1001" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="961" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1502" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="999" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="959" />
       <source>Write temporary project file</source>
       <translation>写入临时项目文件</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1505" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1241" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="962" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1503" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1239" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="960" />
       <source>No translation files (*.ts) selected.</source>
       <translation>未选择翻译文件 (*.ts)。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1002" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1000" />
       <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="1240" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1123" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1111" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1238" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1121" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1109" />
       <source>Translation file generation</source>
       <translation>翻译文件生成</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1112" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1110" />
       <source>The generation of the translation files (*.ts) was successful.</source>
       <translation>翻译文件 (*.ts) 生成成功。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1118" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1116" />
       <source> The process has crashed.</source>
       <translation> 进程已崩溃。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1124" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1122" />
       <source>The generation of the translation files (*.ts) has failed.{0}</source>
       <translation>翻译文件 (*.ts) 生成失败。{0}</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1534" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1336" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1294" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1532" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1334" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1292" />
       <source>Process Generation Error</source>
       <translation>进程生成错误</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1337" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1295" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1335" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1293" />
       <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="1427" />
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1407" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1425" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1405" />
       <source>Translation file release</source>
       <translation>翻译文件发布</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1408" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1406" />
       <source>The release of the translation files (*.qm) was successful.</source>
       <translation>翻译文件 (*.qm) 发布成功。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1428" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1426" />
       <source>The release of the translation files (*.qm) has failed.</source>
       <translation>翻译文件 (*.qm) 发布失败。</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectTranslationsBrowser.py" line="1535" />
+      <location filename="../Project/ProjectTranslationsBrowser.py" line="1533" />
       <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>
@@ -83225,2216 +83246,2228 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="574" />
+      <location filename="../UI/UserInterface.py" line="573" />
       <source>Initializing Tools...</source>
       <translation>初始化工具…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="585" />
+      <location filename="../UI/UserInterface.py" line="584" />
       <source>Registering Objects...</source>
       <translation>注册对象…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="619" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Initializing Actions...</source>
       <translation>初始化动作…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="621" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Initializing Menus...</source>
       <translation>初始化菜单…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="623" />
+      <location filename="../UI/UserInterface.py" line="622" />
       <source>Initializing Toolbars...</source>
       <translation>初始化工具栏…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="625" />
+      <location filename="../UI/UserInterface.py" line="624" />
       <source>Initializing Statusbar...</source>
       <translation>初始化状态栏…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="651" />
       <source>Initializing Single Application Server...</source>
       <translation>初始化单应用程序服务器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="658" />
+      <location filename="../UI/UserInterface.py" line="657" />
       <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="661" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Activating Plugins...</source>
       <translation>激活插件…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="663" />
+      <location filename="../UI/UserInterface.py" line="662" />
       <source>Generating Plugins Toolbars...</source>
       <translation>生成插件工具栏…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="666" />
+      <location filename="../UI/UserInterface.py" line="665" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="673" />
+      <location filename="../UI/UserInterface.py" line="672" />
       <source>Restoring Toolbarmanager...</source>
       <translation>恢复工具拦管理器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="681" />
+      <location filename="../UI/UserInterface.py" line="680" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="693" />
       <source>Reading Tasks...</source>
       <translation>读取任务…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="699" />
+      <location filename="../UI/UserInterface.py" line="698" />
       <source>Reading Templates...</source>
       <translation>读取模板…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="703" />
       <source>Starting Debugger...</source>
       <translation>启动调试器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
-      <location filename="../UI/UserInterface.py" line="1066" />
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1065" />
       <source>Left Toolbox</source>
       <translation>左工具箱</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2224" />
-      <location filename="../UI/UserInterface.py" line="1076" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1075" />
       <source>Horizontal Toolbox</source>
       <translation>横向工具箱</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2201" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1085" />
       <source>Right Toolbox</source>
       <translation>右工具箱</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2020" />
-      <location filename="../UI/UserInterface.py" line="1279" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2019" />
+      <location filename="../UI/UserInterface.py" line="1278" />
+      <location filename="../UI/UserInterface.py" line="1095" />
       <source>Multiproject-Viewer</source>
       <translation>多重项目浏览器</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="1997" />
+      <location filename="../UI/UserInterface.py" line="1284" />
+      <location filename="../UI/UserInterface.py" line="1101" />
+      <source>Project-Viewer</source>
+      <translation>项目浏览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2559" />
+      <location filename="../UI/UserInterface.py" line="2558" />
+      <location filename="../UI/UserInterface.py" line="1291" />
+      <location filename="../UI/UserInterface.py" line="1108" />
+      <source>Find/Replace In Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1298" />
+      <location filename="../UI/UserInterface.py" line="1115" />
+      <source>Find File</source>
+      <translation type="unfinished">查找文件</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1304" />
+      <location filename="../UI/UserInterface.py" line="1121" />
+      <source>VCS Status</source>
+      <translation type="unfinished">版本控制系统状态</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1311" />
+      <location filename="../UI/UserInterface.py" line="1128" />
+      <source>Template-Viewer</source>
+      <translation>模板浏览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2085" />
+      <location filename="../UI/UserInterface.py" line="1318" />
+      <location filename="../UI/UserInterface.py" line="1135" />
+      <source>File-Browser</source>
+      <translation>文件浏览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1325" />
+      <location filename="../UI/UserInterface.py" line="1142" />
+      <source>Symbols</source>
+      <translation>符号</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2041" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1152" />
+      <source>Debug-Viewer</source>
+      <translation>调试浏览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2412" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1159" />
+      <source>Code Documentation Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2628" />
+      <location filename="../UI/UserInterface.py" line="2627" />
+      <location filename="../UI/UserInterface.py" line="1361" />
+      <location filename="../UI/UserInterface.py" line="1166" />
+      <source>Help Viewer</source>
+      <translation type="unfinished">帮助浏览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1367" />
+      <location filename="../UI/UserInterface.py" line="1172" />
+      <source>Plugin Repository</source>
+      <translation>插件储存库</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1373" />
+      <location filename="../UI/UserInterface.py" line="1178" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2440" />
+      <location filename="../UI/UserInterface.py" line="2439" />
+      <location filename="../UI/UserInterface.py" line="1378" />
+      <location filename="../UI/UserInterface.py" line="1183" />
+      <source>PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="2461" />
+      <location filename="../UI/UserInterface.py" line="1385" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Conda</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1392" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Cooperation</source>
+      <translation>协作</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2340" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
+      <source>IRC</source>
+      <translation>IRC</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="2483" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>MicroPython</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2063" />
+      <location filename="../UI/UserInterface.py" line="1410" />
+      <location filename="../UI/UserInterface.py" line="1215" />
+      <source>Shell</source>
+      <translation>命令行</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2129" />
+      <location filename="../UI/UserInterface.py" line="1416" />
+      <location filename="../UI/UserInterface.py" line="1219" />
+      <source>Task-Viewer</source>
+      <translation>任务浏览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2107" />
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1223" />
+      <source>Log-Viewer</source>
+      <translation>日志浏览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1429" />
+      <location filename="../UI/UserInterface.py" line="1230" />
+      <source>Numbers</source>
+      <translation>数字</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1815" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} - 被动模式</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1822" />
+      <location filename="../UI/UserInterface.py" line="1818" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} - {1} - 被动模式</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1826" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} - {1} - {2} - 被动模式</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1850" />
+      <source>Quit</source>
+      <translation>退出</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1852" />
+      <source>&amp;Quit</source>
+      <translation>退出(&amp;Q)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1853" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1858" />
+      <source>Quit the IDE</source>
+      <translation>退出程序</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1860" />
+      <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="1874" />
+      <location filename="../UI/UserInterface.py" line="1872" />
+      <source>Restart</source>
+      <translation type="unfinished">重启</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1880" />
+      <source>Restart the IDE</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
+      <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="1900" />
+      <location filename="../UI/UserInterface.py" line="1893" />
+      <source>Save session</source>
+      <translation>保存会话</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1894" />
+      <source>Save session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1902" />
+      <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="7649" />
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <location filename="../UI/UserInterface.py" line="1912" />
+      <source>Load session</source>
+      <translation type="unfinished">载入会话</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1913" />
+      <source>Load session...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1921" />
+      <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="1931" />
+      <source>New Window</source>
+      <translation>新建窗口</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1933" />
+      <source>New &amp;Window</source>
+      <translation>新建窗口(&amp;W)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1934" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1939" />
+      <source>Open a new eric instance</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1941" />
+      <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="1955" />
+      <location filename="../UI/UserInterface.py" line="1953" />
+      <source>Edit Profile</source>
+      <translation>编辑模式</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
+      <source>Activate the edit view profile</source>
+      <translation>激活编辑视图模式</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1964" />
+      <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="1977" />
+      <location filename="../UI/UserInterface.py" line="1975" />
+      <source>Debug Profile</source>
+      <translation>调试模式</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1984" />
+      <source>Activate the debug view profile</source>
+      <translation>激活调试模式</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1986" />
+      <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="1998" />
-      <location filename="../UI/UserInterface.py" line="1285" />
-      <location filename="../UI/UserInterface.py" line="1102" />
-      <source>Project-Viewer</source>
-      <translation>项目浏览器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2560" />
-      <location filename="../UI/UserInterface.py" line="2559" />
-      <location filename="../UI/UserInterface.py" line="1292" />
-      <location filename="../UI/UserInterface.py" line="1109" />
-      <source>Find/Replace In Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
-      <location filename="../UI/UserInterface.py" line="2582" />
-      <location filename="../UI/UserInterface.py" line="1299" />
-      <location filename="../UI/UserInterface.py" line="1116" />
-      <source>Find File</source>
-      <translation type="unfinished">查找文件</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1305" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>VCS Status</source>
-      <translation type="unfinished">版本控制系统状态</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2153" />
-      <location filename="../UI/UserInterface.py" line="1312" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Template-Viewer</source>
-      <translation>模板浏览器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2086" />
-      <location filename="../UI/UserInterface.py" line="1319" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>File-Browser</source>
-      <translation>文件浏览器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1143" />
-      <source>Symbols</source>
-      <translation>符号</translation>
+      <source>&amp;Project-Viewer</source>
+      <translation>项目浏览器(&amp;P)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1999" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2005" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation>将输入焦点切换至项目查看器窗口。</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2008" />
+      <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="2020" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>多重项目浏览器(&amp;M)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2027" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation>将输入焦点切换至多项目查看器窗口。</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2030" />
+      <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="2042" />
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1342" />
-      <location filename="../UI/UserInterface.py" line="1153" />
-      <source>Debug-Viewer</source>
-      <translation>调试浏览器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2414" />
-      <location filename="../UI/UserInterface.py" line="2413" />
-      <location filename="../UI/UserInterface.py" line="1355" />
-      <location filename="../UI/UserInterface.py" line="1160" />
-      <source>Code Documentation Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2629" />
-      <location filename="../UI/UserInterface.py" line="2628" />
-      <location filename="../UI/UserInterface.py" line="1362" />
-      <location filename="../UI/UserInterface.py" line="1167" />
-      <source>Help Viewer</source>
-      <translation type="unfinished">帮助浏览器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <location filename="../UI/UserInterface.py" line="2509" />
-      <location filename="../UI/UserInterface.py" line="2508" />
-      <location filename="../UI/UserInterface.py" line="1368" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Plugin Repository</source>
-      <translation>插件储存库</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
-      <location filename="../UI/UserInterface.py" line="2532" />
-      <location filename="../UI/UserInterface.py" line="1374" />
-      <location filename="../UI/UserInterface.py" line="1179" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2441" />
-      <location filename="../UI/UserInterface.py" line="2440" />
-      <location filename="../UI/UserInterface.py" line="1379" />
-      <location filename="../UI/UserInterface.py" line="1184" />
-      <source>PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2463" />
-      <location filename="../UI/UserInterface.py" line="2462" />
-      <location filename="../UI/UserInterface.py" line="1386" />
-      <location filename="../UI/UserInterface.py" line="1189" />
-      <source>Conda</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1393" />
-      <location filename="../UI/UserInterface.py" line="1196" />
-      <source>Cooperation</source>
-      <translation>协作</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
-      <location filename="../UI/UserInterface.py" line="1397" />
-      <location filename="../UI/UserInterface.py" line="1201" />
-      <source>IRC</source>
-      <translation>IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2485" />
-      <location filename="../UI/UserInterface.py" line="2484" />
-      <location filename="../UI/UserInterface.py" line="1403" />
-      <location filename="../UI/UserInterface.py" line="1208" />
-      <source>MicroPython</source>
+      <source>&amp;Debug-Viewer</source>
+      <translation>调试浏览器(&amp;D)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2049" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation>将输入焦点切换至调试查看器窗口。</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2052" />
+      <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="2064" />
-      <location filename="../UI/UserInterface.py" line="1411" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Shell</source>
-      <translation>命令行</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2130" />
-      <location filename="../UI/UserInterface.py" line="1417" />
-      <location filename="../UI/UserInterface.py" line="1220" />
-      <source>Task-Viewer</source>
-      <translation>任务浏览器</translation>
+      <source>&amp;Shell</source>
+      <translation>命令行(&amp;S)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2065" />
+      <source>Alt+Shift+S</source>
+      <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2071" />
+      <source>Switch the input focus to the Shell window.</source>
+      <translation>将输入焦点切换至 Shell 窗口。</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2074" />
+      <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="2086" />
+      <source>&amp;File-Browser</source>
+      <translation>文件浏览器(&amp;F)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2087" />
+      <source>Alt+Shift+F</source>
+      <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2093" />
+      <source>Switch the input focus to the File-Browser window.</source>
+      <translation>将输入焦点切换至文件浏览器窗口。</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2096" />
+      <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="2108" />
-      <location filename="../UI/UserInterface.py" line="1423" />
-      <location filename="../UI/UserInterface.py" line="1224" />
-      <source>Log-Viewer</source>
-      <translation>日志浏览器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1430" />
-      <location filename="../UI/UserInterface.py" line="1231" />
-      <source>Numbers</source>
-      <translation>数字</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1816" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} - 被动模式</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1823" />
-      <location filename="../UI/UserInterface.py" line="1819" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} - {1} - 被动模式</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} - {1} - {2} - 被动模式</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1851" />
-      <source>Quit</source>
-      <translation>退出</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1853" />
-      <source>&amp;Quit</source>
-      <translation>退出(&amp;Q)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1854" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1859" />
-      <source>Quit the IDE</source>
-      <translation>退出程序</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1861" />
-      <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="1875" />
-      <location filename="../UI/UserInterface.py" line="1873" />
-      <source>Restart</source>
-      <translation type="unfinished">重启</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1881" />
-      <source>Restart the IDE</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1883" />
-      <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="1901" />
-      <location filename="../UI/UserInterface.py" line="1894" />
-      <source>Save session</source>
-      <translation>保存会话</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1895" />
-      <source>Save session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1903" />
-      <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="7650" />
-      <location filename="../UI/UserInterface.py" line="1920" />
-      <location filename="../UI/UserInterface.py" line="1913" />
-      <source>Load session</source>
-      <translation type="unfinished">载入会话</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1914" />
-      <source>Load session...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1922" />
-      <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="1932" />
-      <source>New Window</source>
-      <translation>新建窗口</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1934" />
-      <source>New &amp;Window</source>
-      <translation>新建窗口(&amp;W)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1935" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1940" />
-      <source>Open a new eric instance</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1942" />
-      <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="1956" />
-      <location filename="../UI/UserInterface.py" line="1954" />
-      <source>Edit Profile</source>
-      <translation>编辑模式</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1963" />
-      <source>Activate the edit view profile</source>
-      <translation>激活编辑视图模式</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1965" />
-      <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="1978" />
-      <location filename="../UI/UserInterface.py" line="1976" />
-      <source>Debug Profile</source>
-      <translation>调试模式</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1985" />
-      <source>Activate the debug view profile</source>
-      <translation>激活调试模式</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1987" />
-      <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="1999" />
-      <source>&amp;Project-Viewer</source>
-      <translation>项目浏览器(&amp;P)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2000" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2006" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation>将输入焦点切换至项目查看器窗口。</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2009" />
-      <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="2021" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>多重项目浏览器(&amp;M)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2028" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation>将输入焦点切换至多项目查看器窗口。</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2031" />
-      <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="2043" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>调试浏览器(&amp;D)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2050" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation>将输入焦点切换至调试查看器窗口。</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2053" />
-      <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="2065" />
-      <source>&amp;Shell</source>
-      <translation>命令行(&amp;S)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
-      <source>Alt+Shift+S</source>
-      <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2072" />
-      <source>Switch the input focus to the Shell window.</source>
-      <translation>将输入焦点切换至 Shell 窗口。</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2075" />
-      <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="2087" />
-      <source>&amp;File-Browser</source>
-      <translation>文件浏览器(&amp;F)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
-      <source>Alt+Shift+F</source>
-      <translation>Alt+Shift+F</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2094" />
-      <source>Switch the input focus to the File-Browser window.</source>
-      <translation>将输入焦点切换至文件浏览器窗口。</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2097" />
-      <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>
+      <source>Lo&amp;g-Viewer</source>
+      <translation>日志浏览器(&amp;G)</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2109" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation>日志浏览器(&amp;G)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2116" />
+      <location filename="../UI/UserInterface.py" line="2115" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation>将输入焦点切换至日志查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2119" />
+      <location filename="../UI/UserInterface.py" line="2118" />
       <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="2130" />
+      <source>&amp;Task-Viewer</source>
+      <translation>任务浏览器(&amp;T)</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2131" />
-      <source>&amp;Task-Viewer</source>
-      <translation>任务浏览器(&amp;T)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2138" />
+      <location filename="../UI/UserInterface.py" line="2137" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation>将输入焦点切换至任务浏览器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2141" />
+      <location filename="../UI/UserInterface.py" line="2140" />
       <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="2153" />
+      <source>Templ&amp;ate-Viewer</source>
+      <translation>模板浏览器(&amp;A)</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2154" />
-      <source>Templ&amp;ate-Viewer</source>
-      <translation>模板浏览器(&amp;A)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2161" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation>将输入焦点切换至模板浏览器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2164" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <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="2179" />
+      <location filename="../UI/UserInterface.py" line="2178" />
       <source>&amp;Left Toolbox</source>
       <translation>左工具箱(&amp;L)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2186" />
+      <location filename="../UI/UserInterface.py" line="2185" />
       <source>Toggle the Left Toolbox window</source>
       <translation>切换左工具箱窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2188" />
+      <location filename="../UI/UserInterface.py" line="2187" />
       <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="2202" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Right Toolbox</source>
       <translation>右工具箱(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2209" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Right Toolbox window</source>
       <translation>切换右工具箱窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2211" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <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="2225" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>横向工具箱(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2232" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation>切换横向工具箱窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2234" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <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="2246" />
+      <source>Left Sidebar</source>
+      <translation>左侧边栏</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2247" />
-      <source>Left Sidebar</source>
-      <translation>左侧边栏</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
       <source>&amp;Left Sidebar</source>
       <translation>左侧边栏(&amp;L)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2255" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the left sidebar window</source>
       <translation>切换左侧边栏窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2257" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2269" />
+      <source>Right Sidebar</source>
+      <translation>右侧边栏</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2270" />
-      <source>Right Sidebar</source>
-      <translation>右侧边栏</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2271" />
       <source>&amp;Right Sidebar</source>
       <translation>右侧边栏(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2278" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the right sidebar window</source>
       <translation>切换右侧边栏窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2280" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2292" />
+      <source>Bottom Sidebar</source>
+      <translation>底栏</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2293" />
-      <source>Bottom Sidebar</source>
-      <translation>底栏</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2294" />
       <source>&amp;Bottom Sidebar</source>
       <translation>底栏(&amp;B)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2301" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the bottom sidebar window</source>
       <translation>切换底栏窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2303" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <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="2315" />
+      <source>Cooperation-Viewer</source>
+      <translation>协作浏览器</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2316" />
-      <source>Cooperation-Viewer</source>
-      <translation>协作浏览器</translation>
+      <source>Co&amp;operation-Viewer</source>
+      <translation>协作浏览器(&amp;O)</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2317" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation>协作浏览器(&amp;O)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2324" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation>将输入焦点切换至协作浏览器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2327" />
+      <location filename="../UI/UserInterface.py" line="2326" />
       <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="2341" />
+      <source>&amp;IRC</source>
+      <translation>&amp;IRC</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2342" />
-      <source>&amp;IRC</source>
-      <translation>&amp;IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2349" />
+      <location filename="../UI/UserInterface.py" line="2348" />
       <source>Switch the input focus to the IRC window.</source>
       <translation>将输入焦点切换至 IRC 窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2352" />
+      <location filename="../UI/UserInterface.py" line="2351" />
       <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="2362" />
+      <source>Symbols-Viewer</source>
+      <translation>符号查看器</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2363" />
-      <source>Symbols-Viewer</source>
-      <translation>符号查看器</translation>
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>符号查看器(&amp;Y)</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2364" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>符号查看器(&amp;Y)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2371" />
+      <location filename="../UI/UserInterface.py" line="2370" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation>将输入焦点切换至符号查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2374" />
+      <location filename="../UI/UserInterface.py" line="2373" />
       <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="2387" />
+      <source>Numbers-Viewer</source>
+      <translation>数字查看器</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2388" />
-      <source>Numbers-Viewer</source>
-      <translation>数字查看器</translation>
+      <source>Num&amp;bers-Viewer</source>
+      <translation>数字查看器(&amp;B)</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2389" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>数字查看器(&amp;B)</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2396" />
+      <location filename="../UI/UserInterface.py" line="2395" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation>将输入焦点切换至数字查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2399" />
+      <location filename="../UI/UserInterface.py" line="2398" />
       <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="2415" />
+      <location filename="../UI/UserInterface.py" line="2414" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2421" />
+      <location filename="../UI/UserInterface.py" line="2420" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2426" />
+      <location filename="../UI/UserInterface.py" line="2425" />
       <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="2442" />
+      <location filename="../UI/UserInterface.py" line="2441" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2448" />
+      <location filename="../UI/UserInterface.py" line="2447" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2451" />
+      <location filename="../UI/UserInterface.py" line="2450" />
       <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="2464" />
+      <location filename="../UI/UserInterface.py" line="2463" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2470" />
+      <location filename="../UI/UserInterface.py" line="2469" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2473" />
+      <location filename="../UI/UserInterface.py" line="2472" />
       <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="2486" />
+      <location filename="../UI/UserInterface.py" line="2485" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2492" />
+      <location filename="../UI/UserInterface.py" line="2491" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2495" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <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="2510" />
+      <location filename="../UI/UserInterface.py" line="2509" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2516" />
+      <location filename="../UI/UserInterface.py" line="2515" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2519" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2534" />
+      <location filename="../UI/UserInterface.py" line="2533" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2540" />
+      <location filename="../UI/UserInterface.py" line="2539" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2545" />
+      <location filename="../UI/UserInterface.py" line="2544" />
       <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="2561" />
+      <location filename="../UI/UserInterface.py" line="2560" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2567" />
+      <location filename="../UI/UserInterface.py" line="2566" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2570" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <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="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2590" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2593" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <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="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <source>VCS Status List</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
-      <location filename="../UI/UserInterface.py" line="2606" />
-      <source>VCS Status List</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2614" />
+      <location filename="../UI/UserInterface.py" line="2613" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2617" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <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="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2636" />
+      <location filename="../UI/UserInterface.py" line="2635" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2639" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <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="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
       <source>What's This?</source>
       <translation>这是什么?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <source>&amp;What's This?</source>
+      <translation>这是什么(&amp;W)?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2654" />
-      <source>&amp;What's This?</source>
-      <translation>这是什么(&amp;W)?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
       <source>Shift+F1</source>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2660" />
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Context sensitive help</source>
       <translation>背景帮助</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2662" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <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="2675" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>Helpviewer</source>
       <translation>帮助浏览器</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="2676" />
+      <source>&amp;Helpviewer...</source>
+      <translation>帮助浏览器(&amp;H)…</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
-      <source>&amp;Helpviewer...</source>
-      <translation>帮助浏览器(&amp;H)…</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2678" />
       <source>F1</source>
       <translation>F1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2683" />
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Open the helpviewer window</source>
       <translation>打开帮助浏览器窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2685" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <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="2704" />
+      <source>Show Versions</source>
+      <translation>显示版本</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2705" />
-      <source>Show Versions</source>
-      <translation>显示版本</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Show &amp;Versions</source>
       <translation>显示版本(&amp;V)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2712" />
+      <location filename="../UI/UserInterface.py" line="2711" />
       <source>Display version information</source>
       <translation>显示版本信息</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2714" />
+      <location filename="../UI/UserInterface.py" line="2713" />
       <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="2729" />
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
+      <location filename="../UI/UserInterface.py" line="2721" />
       <source>Show Error Log</source>
       <translation>显示错误日志</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2722" />
       <source>Show Error &amp;Log...</source>
       <translation>显示错误日志(&amp;L)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2730" />
       <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="2739" />
+      <source>Show Install Info</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2740" />
-      <source>Show Install Info</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2741" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2747" />
+      <location filename="../UI/UserInterface.py" line="2746" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2749" />
+      <location filename="../UI/UserInterface.py" line="2748" />
       <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="4633" />
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="4632" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report Bug</source>
       <translation>报告错误</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2759" />
+      <location filename="../UI/UserInterface.py" line="2758" />
       <source>Report &amp;Bug...</source>
       <translation>报告错误(&amp;B)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
+      <location filename="../UI/UserInterface.py" line="2760" />
       <source>Report a bug</source>
       <translation>报告一个错误</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <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="2770" />
+      <source>Request Feature</source>
+      <translation>请求功能</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2771" />
-      <source>Request Feature</source>
-      <translation>请求功能</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2772" />
       <source>Request &amp;Feature...</source>
       <translation>请求功能(&amp;F)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2777" />
       <source>Send a feature request</source>
       <translation>发送一个功能请求</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2780" />
+      <location filename="../UI/UserInterface.py" line="2779" />
       <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="4091" />
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2792" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2799" />
+      <location filename="../UI/UserInterface.py" line="2798" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2801" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <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="2812" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2813" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2820" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2822" />
+      <location filename="../UI/UserInterface.py" line="2821" />
       <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="2832" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2833" />
       <source>Rerun Failed Tests...</source>
       <translation>重新运行失败的测试…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2841" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <source>Rerun failed tests of the last run</source>
       <translation>重新运行上一次运行中失败的测试</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2844" />
+      <location filename="../UI/UserInterface.py" line="2843" />
       <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="2854" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
+      <location filename="../UI/UserInterface.py" line="2855" />
       <source>Test &amp;Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2862" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>Run tests of the current script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2864" />
+      <location filename="../UI/UserInterface.py" line="2863" />
       <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="2873" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2874" />
       <source>Test &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2881" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <source>Run tests of the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <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="2905" />
+      <location filename="../UI/UserInterface.py" line="2904" />
       <source>Qt-Designer</source>
       <translation>Qt 设计师</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2907" />
+      <location filename="../UI/UserInterface.py" line="2906" />
       <source>Qt-&amp;Designer...</source>
       <translation>Qt 设计师(&amp;D)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2912" />
       <source>Start Qt-Designer</source>
       <translation>启动 Qt 设计师</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2915" />
+      <location filename="../UI/UserInterface.py" line="2914" />
       <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="2935" />
+      <location filename="../UI/UserInterface.py" line="2934" />
       <source>Qt-Linguist</source>
       <translation>Qt 语言家</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2937" />
+      <location filename="../UI/UserInterface.py" line="2936" />
       <source>Qt-&amp;Linguist...</source>
       <translation>Qt 语言家(&amp;L)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2943" />
+      <location filename="../UI/UserInterface.py" line="2942" />
       <source>Start Qt-Linguist</source>
       <translation>启动 Qt 语言家</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2945" />
+      <location filename="../UI/UserInterface.py" line="2944" />
       <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="2953" />
+      <location filename="../UI/UserInterface.py" line="2952" />
       <source>UI Previewer</source>
       <translation>用户界面预览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
+      <location filename="../UI/UserInterface.py" line="2954" />
       <source>&amp;UI Previewer...</source>
       <translation>用户界面预览器(&amp;U)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2961" />
+      <location filename="../UI/UserInterface.py" line="2960" />
       <source>Start the UI Previewer</source>
       <translation>开启用户界面预览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2962" />
       <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="2969" />
+      <location filename="../UI/UserInterface.py" line="2968" />
       <source>Translations Previewer</source>
       <translation>翻译预览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2971" />
+      <location filename="../UI/UserInterface.py" line="2970" />
       <source>&amp;Translations Previewer...</source>
       <translation>翻译预览器(&amp;T)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="2976" />
       <source>Start the Translations Previewer</source>
       <translation>开启翻译预览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2979" />
+      <location filename="../UI/UserInterface.py" line="2978" />
       <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="2988" />
+      <location filename="../UI/UserInterface.py" line="2987" />
       <source>Compare Files</source>
       <translation>比较文件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2990" />
+      <location filename="../UI/UserInterface.py" line="2989" />
       <source>&amp;Compare Files...</source>
       <translation>比较文件(&amp;C)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="2995" />
       <source>Compare two files</source>
       <translation>比较两个文件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2998" />
+      <location filename="../UI/UserInterface.py" line="2997" />
       <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="3007" />
+      <location filename="../UI/UserInterface.py" line="3006" />
       <source>Compare Files side by side</source>
       <translation>并排比较文件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3009" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare &amp;Files side by side...</source>
       <translation>并排比较文件(&amp;F)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3017" />
+      <location filename="../UI/UserInterface.py" line="3016" />
       <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="3027" />
+      <location filename="../UI/UserInterface.py" line="3026" />
       <source>SQL Browser</source>
       <translation>SQL 浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3028" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL 浏览器(&amp;B)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3035" />
+      <location filename="../UI/UserInterface.py" line="3034" />
       <source>Browse a SQL database</source>
       <translation>浏览 SQL 数据库</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3037" />
+      <location filename="../UI/UserInterface.py" line="3036" />
       <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="3051" />
-      <location filename="../UI/UserInterface.py" line="3043" />
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <location filename="../UI/UserInterface.py" line="3042" />
       <source>Mini Editor</source>
       <translation>小型编辑器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3045" />
+      <location filename="../UI/UserInterface.py" line="3044" />
       <source>Mini &amp;Editor...</source>
       <translation>小型编辑器(&amp;E)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3053" />
+      <location filename="../UI/UserInterface.py" line="3052" />
       <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="3062" />
+      <location filename="../UI/UserInterface.py" line="3061" />
       <source>Hex Editor</source>
       <translation>十六进制编辑器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3064" />
+      <location filename="../UI/UserInterface.py" line="3063" />
       <source>&amp;Hex Editor...</source>
       <translation>十六进制编辑器(&amp;H)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
+      <location filename="../UI/UserInterface.py" line="3069" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3072" />
+      <location filename="../UI/UserInterface.py" line="3071" />
       <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="3082" />
+      <location filename="../UI/UserInterface.py" line="3081" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3084" />
+      <location filename="../UI/UserInterface.py" line="3083" />
       <source>eric &amp;Web Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3089" />
       <source>Start the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3092" />
+      <location filename="../UI/UserInterface.py" line="3091" />
       <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="3101" />
+      <location filename="../UI/UserInterface.py" line="3100" />
       <source>Icon Editor</source>
       <translation>图标编辑器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3103" />
+      <location filename="../UI/UserInterface.py" line="3102" />
       <source>&amp;Icon Editor...</source>
       <translation>图标编辑器(&amp;I)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3109" />
+      <location filename="../UI/UserInterface.py" line="3108" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
+      <location filename="../UI/UserInterface.py" line="3110" />
       <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="3120" />
+      <location filename="../UI/UserInterface.py" line="3119" />
       <source>Snapshot</source>
       <translation>快照</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3122" />
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>&amp;Snapshot...</source>
       <translation>快照(&amp;S)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3128" />
+      <location filename="../UI/UserInterface.py" line="3127" />
       <source>Take snapshots of a screen region</source>
       <translation>截取屏幕区域的快照</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3129" />
       <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="3140" />
+      <location filename="../UI/UserInterface.py" line="3139" />
       <source>Preferences</source>
       <translation>首选项</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3142" />
+      <location filename="../UI/UserInterface.py" line="3141" />
       <source>&amp;Preferences...</source>
       <translation>首选项(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3147" />
       <source>Set the prefered configuration</source>
       <translation>设定偏好配置</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3149" />
       <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="3161" />
+      <location filename="../UI/UserInterface.py" line="3160" />
       <source>Export Preferences</source>
       <translation>导出首选项</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3163" />
+      <location filename="../UI/UserInterface.py" line="3162" />
       <source>E&amp;xport Preferences...</source>
       <translation>导出首选项(&amp;X)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3169" />
+      <location filename="../UI/UserInterface.py" line="3168" />
       <source>Export the current configuration</source>
       <translation>导出当前配置</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
+      <location filename="../UI/UserInterface.py" line="3170" />
       <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="3180" />
+      <location filename="../UI/UserInterface.py" line="3179" />
       <source>Import Preferences</source>
       <translation>导入首选项</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3182" />
+      <location filename="../UI/UserInterface.py" line="3181" />
       <source>I&amp;mport Preferences...</source>
       <translation>导入首选项(&amp;M)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3188" />
       <source>Import a previously exported configuration</source>
       <translation>导入以前导出的配置</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3192" />
+      <location filename="../UI/UserInterface.py" line="3191" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3200" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3203" />
+      <location filename="../UI/UserInterface.py" line="3202" />
       <source>Export Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3209" />
+      <location filename="../UI/UserInterface.py" line="3208" />
       <source>Export the current theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
+      <location filename="../UI/UserInterface.py" line="3210" />
       <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="3220" />
+      <location filename="../UI/UserInterface.py" line="3219" />
       <source>Import Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3222" />
+      <location filename="../UI/UserInterface.py" line="3221" />
       <source>Import Theme...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3228" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
+      <location filename="../UI/UserInterface.py" line="3229" />
       <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="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload APIs</source>
       <translation>重新载入 API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Reload &amp;APIs</source>
       <translation>重新载入 &amp;API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3241" />
+      <location filename="../UI/UserInterface.py" line="3240" />
       <source>Reload the API information</source>
       <translation>重新载入 API 信息</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3243" />
+      <location filename="../UI/UserInterface.py" line="3242" />
       <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="3257" />
-      <location filename="../UI/UserInterface.py" line="3249" />
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <location filename="../UI/UserInterface.py" line="3248" />
       <source>Show external tools</source>
       <translation>显示外部工具</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
+      <location filename="../UI/UserInterface.py" line="3250" />
       <source>Show external &amp;tools</source>
       <translation>显示外部工具(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
+      <location filename="../UI/UserInterface.py" line="3258" />
       <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="3269" />
+      <location filename="../UI/UserInterface.py" line="3268" />
       <source>View Profiles</source>
       <translation>视图模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3271" />
+      <location filename="../UI/UserInterface.py" line="3270" />
       <source>&amp;View Profiles...</source>
       <translation>视图模式(&amp;V)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3277" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Configure view profiles</source>
       <translation>配置视图模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3279" />
+      <location filename="../UI/UserInterface.py" line="3278" />
       <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="3290" />
+      <location filename="../UI/UserInterface.py" line="3289" />
       <source>Toolbars</source>
       <translation>工具栏</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3292" />
+      <location filename="../UI/UserInterface.py" line="3291" />
       <source>Tool&amp;bars...</source>
       <translation>工具栏(&amp;B)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3298" />
+      <location filename="../UI/UserInterface.py" line="3297" />
       <source>Configure toolbars</source>
       <translation>配置工具栏</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3299" />
       <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="3311" />
+      <location filename="../UI/UserInterface.py" line="3310" />
       <source>Keyboard Shortcuts</source>
       <translation>键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3313" />
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>键盘快捷键(&amp;S)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3319" />
+      <location filename="../UI/UserInterface.py" line="3318" />
       <source>Set the keyboard shortcuts</source>
       <translation>设置键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
+      <location filename="../UI/UserInterface.py" line="3320" />
       <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="7335" />
-      <location filename="../UI/UserInterface.py" line="7316" />
-      <location filename="../UI/UserInterface.py" line="3331" />
+      <location filename="../UI/UserInterface.py" line="7334" />
+      <location filename="../UI/UserInterface.py" line="7315" />
+      <location filename="../UI/UserInterface.py" line="3330" />
       <source>Export Keyboard Shortcuts</source>
       <translation>导出键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3333" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>&amp;Export Keyboard Shortcuts...</source>
       <translation>导出键盘快捷键(&amp;E)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3339" />
+      <location filename="../UI/UserInterface.py" line="3338" />
       <source>Export the keyboard shortcuts</source>
       <translation>导出键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3341" />
+      <location filename="../UI/UserInterface.py" line="3340" />
       <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="7354" />
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="7353" />
+      <location filename="../UI/UserInterface.py" line="3349" />
       <source>Import Keyboard Shortcuts</source>
       <translation>导入键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3352" />
+      <location filename="../UI/UserInterface.py" line="3351" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>导入键盘快捷键(&amp;I)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="3357" />
       <source>Import the keyboard shortcuts</source>
       <translation>导入键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3359" />
       <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="3370" />
+      <location filename="../UI/UserInterface.py" line="3369" />
       <source>Manage SSL Certificates</source>
       <translation>管理 SSL 证书</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3372" />
+      <location filename="../UI/UserInterface.py" line="3371" />
       <source>Manage SSL Certificates...</source>
       <translation>管理 SSL 证书…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3378" />
       <source>Manage the saved SSL certificates</source>
       <translation>管理保存的 SSL 证书</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3382" />
+      <location filename="../UI/UserInterface.py" line="3381" />
       <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="3392" />
+      <location filename="../UI/UserInterface.py" line="3391" />
       <source>Edit Message Filters</source>
       <translation>编辑消息过滤器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3394" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Edit Message Filters...</source>
       <translation>编辑消息过滤器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
+      <location filename="../UI/UserInterface.py" line="3400" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation>编辑消息过滤器使得不期望的消息不显示</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3404" />
+      <location filename="../UI/UserInterface.py" line="3403" />
       <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="3423" />
-      <location filename="../UI/UserInterface.py" line="3417" />
-      <location filename="../UI/UserInterface.py" line="3415" />
+      <location filename="../UI/UserInterface.py" line="3422" />
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Clear private data</source>
       <translation type="unfinished">清空隐私数据</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3425" />
+      <location filename="../UI/UserInterface.py" line="3424" />
       <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="3435" />
+      <location filename="../UI/UserInterface.py" line="3434" />
+      <source>Activate current editor</source>
+      <translation>激活当前编辑器</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3436" />
-      <location filename="../UI/UserInterface.py" line="3435" />
-      <source>Activate current editor</source>
-      <translation>激活当前编辑器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3447" />
+      <location filename="../UI/UserInterface.py" line="3446" />
+      <source>Show next</source>
+      <translation>显示下一个</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3448" />
-      <location filename="../UI/UserInterface.py" line="3447" />
-      <source>Show next</source>
-      <translation>显示下一个</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3449" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3458" />
+      <source>Show previous</source>
+      <translation>显示上一个</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3460" />
-      <location filename="../UI/UserInterface.py" line="3459" />
-      <source>Show previous</source>
-      <translation>显示上一个</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3461" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Switch between tabs</source>
+      <translation>在选项卡间切换</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3472" />
-      <location filename="../UI/UserInterface.py" line="3471" />
-      <source>Switch between tabs</source>
-      <translation>在选项卡间切换</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
       <source>Plugin Infos</source>
       <translation>插件信息</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3485" />
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>&amp;Plugin Infos...</source>
       <translation>插件信息(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
+      <location filename="../UI/UserInterface.py" line="3490" />
       <source>Show Plugin Infos</source>
       <translation>显示插件信息</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
+      <location filename="../UI/UserInterface.py" line="3492" />
       <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="3511" />
-      <location filename="../UI/UserInterface.py" line="3503" />
+      <location filename="../UI/UserInterface.py" line="3510" />
+      <location filename="../UI/UserInterface.py" line="3502" />
       <source>Install Plugins</source>
       <translation>安装插件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3505" />
+      <location filename="../UI/UserInterface.py" line="3504" />
       <source>&amp;Install Plugins...</source>
       <translation>安装插件(&amp;I)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
+      <location filename="../UI/UserInterface.py" line="3512" />
       <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="3530" />
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <location filename="../UI/UserInterface.py" line="3521" />
       <source>Uninstall Plugin</source>
       <translation>卸载插件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3524" />
+      <location filename="../UI/UserInterface.py" line="3523" />
       <source>&amp;Uninstall Plugin...</source>
       <translation>卸载插件(&amp;U)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3531" />
       <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="3543" />
+      <location filename="../UI/UserInterface.py" line="3542" />
       <source>Plugin &amp;Repository...</source>
       <translation>插件储存库(&amp;R)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <source>Show Plugins available for download</source>
       <translation>显示可以下载的插件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3551" />
+      <location filename="../UI/UserInterface.py" line="3550" />
       <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="3578" />
       <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="3576" />
       <source>Qt5 Documentation</source>
       <translation>Qt5 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3584" />
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Open Qt5 Documentation</source>
       <translation>打开 Qt5 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3599" />
       <location filename="../UI/UserInterface.py" line="3598" />
+      <location filename="../UI/UserInterface.py" line="3597" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Qt5 文档 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3605" />
+      <location filename="../UI/UserInterface.py" line="3604" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">打开 Qt5 文档 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3606" />
       <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="3620" />
       <location filename="../UI/UserInterface.py" line="3619" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>PyQt5 Documentation</source>
       <translation>PyQt5 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3626" />
+      <location filename="../UI/UserInterface.py" line="3625" />
       <source>Open PyQt5 Documentation</source>
       <translation>打开 PyQt5 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3627" />
       <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="3641" />
       <location filename="../UI/UserInterface.py" line="3640" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">PyQt5 文档 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3647" />
+      <location filename="../UI/UserInterface.py" line="3646" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">打开 PyQt5 文档 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3648" />
       <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="3667" />
       <location filename="../UI/UserInterface.py" line="3666" />
+      <location filename="../UI/UserInterface.py" line="3665" />
       <source>Python 3 Documentation</source>
       <translation>Python 3 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3673" />
+      <location filename="../UI/UserInterface.py" line="3672" />
       <source>Open Python 3 Documentation</source>
       <translation>打开 Python 3 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <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="3694" />
       <location filename="../UI/UserInterface.py" line="3693" />
+      <location filename="../UI/UserInterface.py" line="3692" />
       <source>eric API Documentation</source>
       <translation type="unfinished">eric API 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3700" />
+      <location filename="../UI/UserInterface.py" line="3699" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
       <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="3720" />
       <location filename="../UI/UserInterface.py" line="3719" />
+      <location filename="../UI/UserInterface.py" line="3718" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3726" />
+      <location filename="../UI/UserInterface.py" line="3725" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
       <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="3746" />
       <location filename="../UI/UserInterface.py" line="3745" />
+      <location filename="../UI/UserInterface.py" line="3744" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3752" />
+      <location filename="../UI/UserInterface.py" line="3751" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <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="3854" />
+      <location filename="../UI/UserInterface.py" line="3853" />
       <source>E&amp;xtras</source>
       <translation>附加程序(&amp;X)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
+      <location filename="../UI/UserInterface.py" line="3863" />
       <source>Wi&amp;zards</source>
       <translation>向导(&amp;Z)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3882" />
+      <location filename="../UI/UserInterface.py" line="3881" />
       <source>P&amp;lugins</source>
       <translation>插件(&amp;L)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3891" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>Configure...</source>
       <translation>配置…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3900" />
+      <location filename="../UI/UserInterface.py" line="3899" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3917" />
+      <location filename="../UI/UserInterface.py" line="3916" />
       <source>Select Tool Group</source>
       <translation>选择工具组</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Se&amp;ttings</source>
       <translation>设置(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3961" />
+      <location filename="../UI/UserInterface.py" line="3960" />
       <source>&amp;Window</source>
       <translation>窗口(&amp;W)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3970" />
+      <location filename="../UI/UserInterface.py" line="3969" />
       <source>&amp;Windows</source>
       <translation>窗口(&amp;W)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3974" />
+      <location filename="../UI/UserInterface.py" line="3973" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3978" />
+      <location filename="../UI/UserInterface.py" line="3977" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3997" />
+      <location filename="../UI/UserInterface.py" line="3996" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4016" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4024" />
+      <location filename="../UI/UserInterface.py" line="4023" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4030" />
+      <location filename="../UI/UserInterface.py" line="4029" />
       <source>&amp;Toolbars</source>
       <translation>工具栏(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4043" />
+      <location filename="../UI/UserInterface.py" line="4042" />
       <source>&amp;Help</source>
       <translation>帮助(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4090" />
+      <location filename="../UI/UserInterface.py" line="4112" />
+      <location filename="../UI/UserInterface.py" line="4089" />
       <source>Tools</source>
       <translation>工具</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4115" />
-      <location filename="../UI/UserInterface.py" line="4094" />
+      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4093" />
       <source>Settings</source>
       <translation>设置</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6148" />
+      <location filename="../UI/UserInterface.py" line="6147" />
+      <location filename="../UI/UserInterface.py" line="4115" />
+      <location filename="../UI/UserInterface.py" line="4094" />
+      <source>Help</source>
+      <translation>帮助</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4116" />
       <location filename="../UI/UserInterface.py" line="4095" />
-      <source>Help</source>
-      <translation>帮助</translation>
+      <source>Profiles</source>
+      <translation>模式</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="4117" />
       <location filename="../UI/UserInterface.py" line="4096" />
-      <source>Profiles</source>
-      <translation>模式</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4118" />
-      <location filename="../UI/UserInterface.py" line="4097" />
       <source>Plugins</source>
       <translation>插件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
+      <location filename="../UI/UserInterface.py" line="4113" />
       <source>Unittest</source>
       <translation>单元测试</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4286" />
+      <location filename="../UI/UserInterface.py" line="4285" />
       <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="4295" />
+      <location filename="../UI/UserInterface.py" line="4294" />
       <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="4304" />
+      <location filename="../UI/UserInterface.py" line="4303" />
       <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="4313" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4322" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4331" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4345" />
+      <location filename="../UI/UserInterface.py" line="4344" />
       <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="4416" />
-      <location filename="../UI/UserInterface.py" line="4375" />
+      <location filename="../UI/UserInterface.py" line="4415" />
+      <location filename="../UI/UserInterface.py" line="4374" />
       <source>External Tools/{0}</source>
       <translation>外部工具/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4524" />
+      <location filename="../UI/UserInterface.py" line="4523" />
       <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="4573" />
+      <location filename="../UI/UserInterface.py" line="4572" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4590" />
+      <location filename="../UI/UserInterface.py" line="4589" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4593" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4597" />
+      <location filename="../UI/UserInterface.py" line="4596" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4633" />
       <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="4948" />
+      <source>Restart application</source>
+      <translation>重启程序</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4949" />
-      <source>Restart application</source>
-      <translation>重启程序</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4950" />
       <source>The application needs to be restarted. Do it now?</source>
       <translation>程序需要重启。现在重启?</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="4973" />
+      <source>Upgrade PyQt</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="4974" />
-      <source>Upgrade PyQt</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4975" />
       <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="5024" />
+      <location filename="../UI/UserInterface.py" line="4998" />
+      <source>Upgrade Eric</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="4999" />
+      <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="5025" />
-      <location filename="../UI/UserInterface.py" line="4999" />
-      <source>Upgrade Eric</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="5000" />
-      <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="5026" />
       <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="5084" />
+      <location filename="../UI/UserInterface.py" line="5083" />
       <source>&amp;Builtin Tools</source>
       <translation>内建工具(&amp;B)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5101" />
+      <location filename="../UI/UserInterface.py" line="5100" />
       <source>&amp;Plugin Tools</source>
       <translation>插件工具(&amp;P)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5103" />
       <source>&amp;User Tools</source>
       <translation>用户工具(&amp;U)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5130" />
+      <location filename="../UI/UserInterface.py" line="5129" />
       <source>Configure Tool Groups ...</source>
       <translation>配置工具组…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5134" />
+      <location filename="../UI/UserInterface.py" line="5133" />
       <source>Configure current Tool Group ...</source>
       <translation>配置当前工具组…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5173" />
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5172" />
+      <location filename="../UI/UserInterface.py" line="5152" />
       <source>No User Tools Configured</source>
       <translation>没有配置的用户工具</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5247" />
+      <location filename="../UI/UserInterface.py" line="5246" />
       <source>&amp;Show all</source>
       <translation>全部显示(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5249" />
+      <location filename="../UI/UserInterface.py" line="5248" />
       <source>&amp;Hide all</source>
       <translation>全部隐藏(&amp;H)</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6282" />
+      <location filename="../UI/UserInterface.py" line="6271" />
+      <location filename="../UI/UserInterface.py" line="6223" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6049" />
+      <location filename="../UI/UserInterface.py" line="6039" />
+      <location filename="../UI/UserInterface.py" line="5982" />
+      <location filename="../UI/UserInterface.py" line="5972" />
+      <source>Problem</source>
+      <translation>问题</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6283" />
       <location filename="../UI/UserInterface.py" line="6272" />
       <location filename="../UI/UserInterface.py" line="6224" />
@@ -85443,312 +85476,300 @@
       <location filename="../UI/UserInterface.py" line="6040" />
       <location filename="../UI/UserInterface.py" line="5983" />
       <location filename="../UI/UserInterface.py" line="5973" />
-      <source>Problem</source>
-      <translation>问题</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6284" />
-      <location filename="../UI/UserInterface.py" line="6273" />
-      <location filename="../UI/UserInterface.py" line="6225" />
-      <location filename="../UI/UserInterface.py" line="6215" />
-      <location filename="../UI/UserInterface.py" line="6051" />
-      <location filename="../UI/UserInterface.py" line="6041" />
-      <location filename="../UI/UserInterface.py" line="5984" />
-      <location filename="../UI/UserInterface.py" line="5974" />
       <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="6496" />
-      <location filename="../UI/UserInterface.py" line="6409" />
-      <location filename="../UI/UserInterface.py" line="6319" />
-      <location filename="../UI/UserInterface.py" line="6296" />
-      <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6185" />
-      <location filename="../UI/UserInterface.py" line="6164" />
-      <location filename="../UI/UserInterface.py" line="6124" />
-      <location filename="../UI/UserInterface.py" line="6115" />
-      <location filename="../UI/UserInterface.py" line="6081" />
-      <location filename="../UI/UserInterface.py" line="6072" />
-      <location filename="../UI/UserInterface.py" line="6014" />
-      <location filename="../UI/UserInterface.py" line="6005" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6408" />
+      <location filename="../UI/UserInterface.py" line="6318" />
+      <location filename="../UI/UserInterface.py" line="6295" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6163" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
+      <location filename="../UI/UserInterface.py" line="6080" />
+      <location filename="../UI/UserInterface.py" line="6071" />
+      <location filename="../UI/UserInterface.py" line="6013" />
+      <location filename="../UI/UserInterface.py" line="6004" />
       <source>Process Generation Error</source>
       <translation>进程生成错误</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6006" />
+      <location filename="../UI/UserInterface.py" line="6005" />
       <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="6015" />
+      <location filename="../UI/UserInterface.py" line="6014" />
       <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="6073" />
+      <location filename="../UI/UserInterface.py" line="6072" />
       <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="6082" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <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="6116" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <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="6125" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <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="6149" />
+      <location filename="../UI/UserInterface.py" line="6148" />
       <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="6165" />
+      <location filename="../UI/UserInterface.py" line="6164" />
       <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="6186" />
+      <location filename="../UI/UserInterface.py" line="6185" />
       <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="6238" />
+      <location filename="../UI/UserInterface.py" line="6237" />
       <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="6297" />
+      <location filename="../UI/UserInterface.py" line="6296" />
       <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="6320" />
+      <location filename="../UI/UserInterface.py" line="6319" />
       <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="6410" />
+      <location filename="../UI/UserInterface.py" line="6409" />
       <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="6442" />
+      <location filename="../UI/UserInterface.py" line="6432" />
+      <source>External Tools</source>
+      <translation>外部工具</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <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="6443" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <source>External Tools</source>
-      <translation>外部工具</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6434" />
-      <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="6444" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6479" />
+      <location filename="../UI/UserInterface.py" line="6478" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>正在启动进程“{0} {1}”。
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6497" />
+      <location filename="../UI/UserInterface.py" line="6496" />
       <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="6573" />
+      <location filename="../UI/UserInterface.py" line="6572" />
       <source>Process '{0}' has exited.
 </source>
       <translation>进程“{0}”已退出。
 </translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="6857" />
+      <location filename="../UI/UserInterface.py" line="6795" />
+      <location filename="../UI/UserInterface.py" line="6751" />
+      <location filename="../UI/UserInterface.py" line="6679" />
+      <location filename="../UI/UserInterface.py" line="6615" />
+      <source>Documentation Missing</source>
+      <translation>文档缺失</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="6858" />
       <location filename="../UI/UserInterface.py" line="6796" />
       <location filename="../UI/UserInterface.py" line="6752" />
       <location filename="../UI/UserInterface.py" line="6680" />
       <location filename="../UI/UserInterface.py" line="6616" />
-      <source>Documentation Missing</source>
-      <translation>文档缺失</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6859" />
-      <location filename="../UI/UserInterface.py" line="6797" />
-      <location filename="../UI/UserInterface.py" line="6753" />
-      <location filename="../UI/UserInterface.py" line="6681" />
-      <location filename="../UI/UserInterface.py" line="6617" />
       <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="6839" />
+      <location filename="../UI/UserInterface.py" line="6723" />
+      <source>Documentation</source>
+      <translation>文档</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6724" />
+      <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="6840" />
-      <location filename="../UI/UserInterface.py" line="6724" />
-      <source>Documentation</source>
-      <translation>文档</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6725" />
-      <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="6841" />
       <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="7020" />
+      <location filename="../UI/UserInterface.py" line="6955" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6956" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7021" />
-      <location filename="../UI/UserInterface.py" line="6956" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6957" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7022" />
       <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="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Open Browser</source>
       <translation>打开浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7064" />
+      <location filename="../UI/UserInterface.py" line="7063" />
       <source>Could not start a web browser</source>
       <translation>无法启动网络浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7318" />
+      <location filename="../UI/UserInterface.py" line="7317" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7336" />
+      <location filename="../UI/UserInterface.py" line="7335" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7538" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7539" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7540" />
       <source>&lt;p&gt;The tasks 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="7583" />
+      <location filename="../UI/UserInterface.py" line="7582" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7611" />
-      <location filename="../UI/UserInterface.py" line="7584" />
-      <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="7610" />
+      <location filename="../UI/UserInterface.py" line="7583" />
+      <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="7609" />
       <source>Read session</source>
       <translation>读取会话</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7627" />
+      <location filename="../UI/UserInterface.py" line="7626" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7629" />
+      <location filename="../UI/UserInterface.py" line="7628" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7652" />
+      <location filename="../UI/UserInterface.py" line="7651" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7697" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7698" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7699" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8058" />
+      <source>Drop Error</source>
+      <translation>降落误差</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8059" />
-      <source>Drop Error</source>
-      <translation>降落误差</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8060" />
       <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="8233" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8234" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8235" />
       <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;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8285" />
+      <location filename="../UI/UserInterface.py" line="8272" />
+      <source>First time usage</source>
+      <translation>第一次使用</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8273" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8286" />
-      <location filename="../UI/UserInterface.py" line="8273" />
-      <source>First time usage</source>
-      <translation>第一次使用</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8274" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8287" />
       <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="8310" />
+      <location filename="../UI/UserInterface.py" line="8309" />
       <source>Select Workspace Directory</source>
       <translation>选择工作区目录</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8490" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8491" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8492" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -85833,7 +85854,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1616" />
+      <location filename="../Utilities/__init__.py" line="1615" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;可以在字符串中使用“%-代码”作为占位符。支持的代码有:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;当前编辑器的光标所在列&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;当前编辑器的文件夹&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;当前编辑器的文件名&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;当前用户的根目录&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;当前编辑器的光标所在行&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;当前项目的路径&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;当前编辑器中选择的文本&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;当前用户的用户名&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;百分比符号&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/icons/breeze-dark/projectReload.svg	Fri Nov 25 11:51:51 2022 +0100
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   version="1.1"
+   viewBox="0 0 22 22"
+   id="svg10"
+   sodipodi:docname="projectReload.svg"
+   inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg">
+  <sodipodi:namedview
+     id="namedview12"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     showgrid="false"
+     inkscape:zoom="29.272727"
+     inkscape:cx="11"
+     inkscape:cy="11"
+     inkscape:window-width="2580"
+     inkscape:window-height="1080"
+     inkscape:window-x="426"
+     inkscape:window-y="146"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="svg10" />
+  <defs
+     id="defs4">
+    <style
+       type="text/css"
+       id="style2">.ColorScheme-Text {
+        color:#eff0f1;
+      }</style>
+  </defs>
+  <path
+     d="m3.5 1v2.5h-2.5v3.75h2.5v7.5h-2.5v3.75h2.5v2.5h7.5v-1.25h-6.25v-13.75h15v5h1.25v-10h-17.5zm1.25 1.25h15v2.5h-15v-2.5z"
+     color="#eff0f1"
+     fill="currentColor"
+     id="path6" />
+  <path
+     class="ColorScheme-Text"
+     d="m 20.76087,15.500026 c 0,0.94805 -0.251811,1.834233 -0.687175,2.600838 l -0.485499,-0.485493 0.0013,-0.0013 -1.826417,-1.827662 0.464951,-0.464945 1.631185,1.632429 c 0.152975,-0.457443 0.243999,-0.943579 0.243999,-1.453928 0,-2.550176 -2.053054,-4.603206 -4.603261,-4.603206 -0.764457,0 -1.482198,0.187958 -2.115395,0.515033 l -0.485485,-0.485496 c 0.766614,-0.435362 1.652807,-0.687166 2.600869,-0.687166 2.914521,0 5.26087,2.34632 5.26087,5.260806 z m -2.660001,4.57364 c -0.766667,0.435363 -1.652808,0.687166 -2.600869,0.687166 -2.914522,0 -5.26087,-2.346319 -5.26087,-5.260806 0,-0.948049 0.251812,-1.834232 0.687175,-2.600837 l 0.449537,0.449531 0.0013,-0.0012 1.859823,1.8598 -0.464946,0.464943 -1.62987,-1.62985 c -0.153859,0.458541 -0.24535,0.945997 -0.24535,1.457768 0,2.550176 2.053054,4.603206 4.60326,4.603206 0.764457,0 1.482197,-0.187964 2.115395,-0.515033 z"
+     color="#eff0f1"
+     fill="#5fd38d"
+     stroke-width="0.687497"
+     id="path6-3"
+     style="color:#eff0f1;stroke:#5fd38d;stroke-width:0.47826;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/icons/breeze-light/projectReload.svg	Fri Nov 25 11:51:51 2022 +0100
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   version="1.1"
+   viewBox="0 0 22 22"
+   id="svg10"
+   sodipodi:docname="projectReload.svg"
+   inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg">
+  <sodipodi:namedview
+     id="namedview12"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     showgrid="false"
+     inkscape:zoom="29.272727"
+     inkscape:cx="11"
+     inkscape:cy="11"
+     inkscape:window-width="2580"
+     inkscape:window-height="1080"
+     inkscape:window-x="426"
+     inkscape:window-y="146"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="svg10" />
+  <defs
+     id="defs4">
+    <style
+       type="text/css"
+       id="style2">.ColorScheme-Text {
+        color:#eff0f1;
+      }</style>
+  </defs>
+  <path
+     d="m3.5 1v2.5h-2.5v3.75h2.5v7.5h-2.5v3.75h2.5v2.5h7.5v-1.25h-6.25v-13.75h15v5h1.25v-10h-17.5zm1.25 1.25h15v2.5h-15v-2.5z"
+     color="#eff0f1"
+     fill="currentColor"
+     id="path6"
+     style="fill:#232629;fill-opacity:1" />
+  <path
+     class="ColorScheme-Text"
+     d="m 20.76087,15.500026 c 0,0.94805 -0.251811,1.834233 -0.687175,2.600838 l -0.485499,-0.485493 0.0013,-0.0013 -1.826417,-1.827662 0.464951,-0.464945 1.631185,1.632429 c 0.152975,-0.457443 0.243999,-0.943579 0.243999,-1.453928 0,-2.550176 -2.053054,-4.603206 -4.603261,-4.603206 -0.764457,0 -1.482198,0.187958 -2.115395,0.515033 l -0.485485,-0.485496 c 0.766614,-0.435362 1.652807,-0.687166 2.600869,-0.687166 2.914521,0 5.26087,2.34632 5.26087,5.260806 z m -2.660001,4.57364 c -0.766667,0.435363 -1.652808,0.687166 -2.600869,0.687166 -2.914522,0 -5.26087,-2.346319 -5.26087,-5.260806 0,-0.948049 0.251812,-1.834232 0.687175,-2.600837 l 0.449537,0.449531 0.0013,-0.0012 1.859823,1.8598 -0.464946,0.464943 -1.62987,-1.62985 c -0.153859,0.458541 -0.24535,0.945997 -0.24535,1.457768 0,2.550176 2.053054,4.603206 4.60326,4.603206 0.764457,0 1.482197,-0.187964 2.115395,-0.515033 z"
+     color="#eff0f1"
+     fill="#5fd38d"
+     stroke-width="0.687497"
+     id="path6-3"
+     style="color:#eff0f1;stroke:#00a800;stroke-width:0.47826;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill:#00a800;fill-opacity:1" />
+</svg>
Binary file src/eric7/icons/oxygen/projectReload.png has changed

eric ide

mercurial